affaan-m/ECC

security-bounty-hunter

Review security-bounty-hunter's use cases, installation, workflow, and original source instructions.

65Collecting
See source evidenceView GitHub source
npx skills add https://github.com/affaan-m/ECC --skill "docs/zh-CN/skills/security-bounty-hunter"
Source profileDocumentationCatalog only

Source checked Jul 28, 2026·Refresh due Oct 26, 2026

Limited to facts supported by the pinned source

What the pinned source establishes about security-bounty-hunter

当目标是针对负责任披露或赏金提交的实际漏洞发现,而非广泛的实践审查时使用此方法。

npx skills add https://github.com/affaan-m/ECC --skill "docs/zh-CN/skills/security-bounty-hunter"
Check the pinned source

The pinned source contains about 52 English words and 13 usable sections. That evidence supports a source profile, not a complete guide.

52 source words · 13 usable sections

What the source actually contains

3 verifiable source sections for security-bounty-hunter

Sections are extracted automatically from the pinned SKILL.md and link back to the source.

01

使用场景

扫描代码库以发现可利用漏洞 准备 Huntr、HackerOne 或类似赏金平台的提交材料 判断"这个漏洞是否真的能获得赏金"而非"理论上是否不安全"的优先级分类

SKILL.md · 使用场景
扫描代码库以发现可利用漏洞准备 Huntr、HackerOne 或类似赏金平台的提交材料判断"这个漏洞是否真的能获得赏金"而非"理论上是否不安全"的优先级分类
02

工作原理

优先关注远程可达、用户可控的攻击路径,并剔除平台通常判定为信息性或超出范围的模式。

SKILL.md · 工作原理
优先关注远程可达、用户可控的攻击路径,并剔除平台通常判定为信息性或超出范围的模式。
03

有效模式

Review the “有效模式” section in the pinned source before continuing.

SKILL.md · 有效模式
Review and apply the “有效模式” source section.

Choose a different workflow

When another Skill is the better fit

FAQ

How do I install security-bounty-hunter?

The source record exposes this install command: npx skills add https://github.com/affaan-m/ECC --skill "docs/zh-CN/skills/security-bounty-hunter". Inspect the command and pinned source before running it.

Repository stars
234,327
Repository forks
35,711
Quality
65/100
Source repository last pushed

Quality breakdown

Based on traceable docs and repository signals; stars are not treated as quality.

65/100
Documentation17/30
Specificity11/25
Maintenance20/20
Trust signals17/25

Compare before choosing

Related Agent Skills and source variants

These links are selected from shared tasks, functions, stacks, platforms, and same-name variants. Compare the source owner, documentation, permissions, and maintenance signals.

View original Skill.mdThis page is parsed directly from the repository SKILL.md without editorial rewriting. Collected: Jul 28, 2026 · about 1 min

安全赏金猎人

当目标是针对负责任披露或赏金提交的实际漏洞发现,而非广泛的实践审查时使用此方法。

使用场景

  • 扫描代码库以发现可利用漏洞
  • 准备 Huntr、HackerOne 或类似赏金平台的提交材料
  • 判断"这个漏洞是否真的能获得赏金"而非"理论上是否不安全"的优先级分类

工作原理

优先关注远程可达、用户可控的攻击路径,并剔除平台通常判定为信息性或超出范围的模式。

有效模式

以下是持续具有影响力的漏洞类型:

模式CWE典型影响
通过用户可控URL的SSRFCWE-918内网访问、云元数据窃取
中间件或API防护中的认证绕过CWE-287未授权账户或数据访问
远程反序列化或上传至RCE路径CWE-502代码执行
可达端点中的SQL注入CWE-89数据泄露、认证绕过、数据破坏
请求处理程序中的命令注入CWE-78代码执行
文件服务路径中的路径遍历CWE-22任意文件读取或写入
自动触发的XSSCWE-79会话窃取、管理员权限沦陷

跳过这些

除非项目另有说明,以下通常属于低信号或超出赏金范围:

  • 仅限本地的 pickle.loadstorch.load 或等效且无远程路径的漏洞
  • 仅限CLI工具中的 eval()exec()
  • 完全硬编码命令上的 shell=True
  • 单独缺失安全标头
  • 无利用影响的通用速率限制投诉
  • 需要受害者手动粘贴代码的自XSS
  • 不属于目标项目范围的CI/CD注入
  • 演示、示例或仅测试代码

工作流程

  1. 首先检查范围:项目规则、SECURITY.md、披露渠道和排除项。
  2. 寻找真实入口点:HTTP处理器、上传功能、后台任务、Webhook、解析器和集成端点。
  3. 在适用时运行静态工具,但仅将其作为分类输入。
  4. 从头到尾阅读实际代码路径。
  5. 证明用户控制能到达有意义的接收点。
  6. 使用最小安全PoC确认可利用性和影响。
  7. 在起草报告前检查重复项。

分类循环示例

semgrep --config=auto --severity=ERROR --severity=WARNING --json

然后手动过滤:

  • 删除测试、演示、固定代码、供应商代码
  • 删除仅限本地或不可达路径
  • 仅保留具有明确网络或用户控制路由的发现

报告结构

## 描述
[漏洞是什么及其重要性]

## 漏洞代码
[文件路径、行号范围及代码片段]

## 概念验证
[最小化可运行的请求或脚本]

## 影响
[攻击者能够实现的目标]

## 受影响版本
[已测试的版本、提交或部署目标]

质量关卡

提交前需确认:

  • 代码路径可从真实用户或网络边界到达
  • 输入确实由用户控制
  • 接收点有意义且可利用
  • PoC有效
  • 该问题尚未被公告、CVE或公开工单覆盖
  • 目标确实在赏金计划范围内
Source repo
affaan-m/ECC
Skill path
docs/zh-CN/skills/security-bounty-hunter/SKILL.md
Commit SHA
4e973d3eaf92
Repository license
MIT
Data collected