hunt-brute-force

Detect login brute force, OTP/2FA brute force, and credential stuffing vulnerabilities.

Updated Jun 24, 2026
One-click install
npx skills add https://github.com/Skobyn/talon --skill hunt-brute-force-skobyn
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: hunt-brute-force
Source: https://github.com/Skobyn/talon/tree/main/skills/hunt-brute-force
Command: npx skills add https://github.com/Skobyn/talon --skill hunt-brute-force-skobyn

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires curl, and includes scripts (resource) components.

What problem does it solve?

This Skill identifies and assesses brute force vulnerabilities and rate limiting issues in web applications, preventing potential attacks and ensuring secure access controls.

Core Features & Use Cases

  • Rate Limiting Evaluation: Identifies rate limiting mechanisms and determines their effectiveness against brute force attacks.
  • Brute Force Vulnerability Detection: Discovers login brute force, OTP/2FA brute force, and other forms of credential stuffing.
  • Use Case: When auditing a web application, this Skill can be used to verify the presence of proper rate limiting to prevent automated attacks and ensure that users have a secure login experience.

Quick Start

Run the 'hunt-brute-force' skill to analyze the login rate limiting of a target web application.

Frequently Asked Questions about hunt-brute-force

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I test for brute force vulnerabilities in a web application login?

To test for brute force vulnerabilities, you analyze login endpoints to detect missing or ineffective rate limiting that allows automated credential stuffing. This process evaluates whether HTTP response codes indicate protection against repeated login attempts.

How does rate limiting prevent credential stuffing attacks?

Rate limiting prevents credential stuffing by restricting the number of allowed login attempts within a specific timeframe. Evaluating its effectiveness involves checking HTTP response codes to see if automated brute force requests are successfully blocked.

Can I detect OTP and 2FA brute force vulnerabilities using curl?

Yes, you can detect OTP and 2FA brute force vulnerabilities using curl to send automated requests and analyze HTTP response codes. This verifies if rate limiting mechanisms are properly applied to multi-factor authentication endpoints.

What HTTP response codes indicate a brute force vulnerability exists?

HTTP response codes indicating a brute force vulnerability typically show continuous successful processing of repeated requests instead of error codes signaling rate limiting. Analyzing these codes during automated login attempts confirms rate limiting absence.

Do I need curl to evaluate web application rate limiting?

Yes, curl is required as a dependency to send HTTP requests and analyze server responses when evaluating rate limiting. Knowledge of HTTP response codes is also necessary to determine brute force vulnerability presence.