用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/oyi77/1ai-auto-bounty --skill idor-detection命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Detect Cross-Origin Resource Sharing misconfigurations that allow credential theft
Detect Server-Side Request Forgery vulnerabilities in web applications and APIs
Detect reflected, stored, and DOM-based cross-site scripting vulnerabilities
正在显示 SKILL.md
| name | idor-detection |
| description | Detect Insecure Direct Object Reference vulnerabilities in APIs and web applications |
| domain | web-security |
| subdomain | idor |
| tags | ["web","idor","authorization","access-control"] |
| version | 1.0.0 |
| author | BerkahKarya |
| license | MIT |
Apply this skill when testing applications with user-specific resources accessed via identifiers (user IDs, document IDs, order IDs) in URLs or API endpoints.
/api/users/123, /documents/456, /orders/789)./api/users/124 after /api/users/123)./api/v1/users/{id}/profile — user profile access/api/v1/documents/{id}/download — document access/api/v1/orders/{id} — order details/api/v1/admin/users/{id}/settings — admin functionsDemonstrate the IDOR by showing Account B successfully accessing Account A's private data, with both the request (including Account B's session) and the response (showing Account A's data).