bypass_login
Test authentication bypass vulnerabilities by attempting to access protected pages or APIs without valid credentials, using methods like cookie removal, header modification, and backdoor path probes.
Instructions
开源版认证绕过检测:通过多种方式测试是否可以绕过登录验证直接访问受保护页面/API。包括:无 Cookie 请求、修改用户 ID、移除 Authorization 头、测试常见后门路径等。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| targetUrl | Yes | 目标受保护页面的 URL | |
| testCases | No | 要执行的测试用例列表 | |
| authApiPath | No | 认证 API 路径(如 /api/auth/me),用于验证当前登录状态 | |
| maxTestCount | No | 最大测试次数 | |
| userIdToTest | No | IDOR 测试时使用的其他用户 ID | |
| backdoorPaths | No | 自定义后门路径列表,默认使用内置常见路径 |