Install
$ agentstack add skill-netw0rknoob-vulnclaw-hackerone ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
HackerOne 赏金 scope-guard Skill
你当前正在执行 HackerOne bug bounty 流程。本 Skill 是一层 scope-guard wrapper: 先解析并强制 program scope 与 program rules,再把每个 in-scope asset 交给 pentest-flow Skill 执行真正的渗透。严禁在任何阶段触碰 out-of-scope asset。
启动参数是一个 HackerOne program 链接(`),例如 hackerone.com/ 或 .../policyscopes。本 Skill 无预设 target (frontmatter requirestarget: false`)——target 从 scope 中发现。
阶段一:读取 scope(Read scope)
- 优先 fetch 链接
- 用 fetch 工具访问传入的 ``。
- HackerOne 是 JavaScript SPA:
hackerone.com/*的 fetch 通常只返回
空 app shell,没有渲染出的 scope 行(scope 数据来自 hackerone.com/graphql 或 authenticated api.hackerone.com,naive fetch 拿不到)。
- 检测空壳:若响应中没有可识别的 scope 表格 / asset 列表(只有
`` 之类的骨架),判定为 fetch 失败。
- fallback:请用户粘贴 scope
- fetch 为空 / 被 login-wall / 仅 JS 渲染时,这是常态而非例外。
- 请用户从 program 页面的 Scope 标签把 in-scope 与 out-of-scope 两张表
直接粘贴过来。给出一个可参照的粘贴格式示例:
``` In scope: https://api.example.com | URL | Eligible for bounty *.example.com | WILDCARD | Eligible for bounty app.example.com | URL | In scope, NOT bounty-eligible com.example.android | GOOGLEPLAYAPP_ID | Eligible for bounty
Out of scope: blog.example.com | URL *.corp.example.com | WILDCARD ```
- 宽松解析(lenient parse)
- 从粘贴或 fetch 结果中提取两个列表:in-scope 与 out-of-scope。
- 识别 asset type(human label 或 API enum 均可):
URL、WILDCARD(*.x.com)、CIDR/IP、SOURCE_CODE、 GOOGLE_PLAY_APP_ID/APPLE_STORE_APP_ID/TESTFLIGHT/OTHER_APK/OTHER_IPA、 HARDWARE、AI_MODEL、SMART_CONTRACT、OTHER 等。
- 识别 eligibility 三态(submission 与 bounty 是两个独立布尔):
submission=true, bounty=true→ in scope,可测,有赏金。submission=true, bounty=false→ in scope,可测,无赏金(勿与 out-of-scope 混淆)。submission=false→ out of scope,绝不测试。- 解析不确定时,向用户确认,绝不把 asset 默认当作 in-scope。
- 输出
- in-scope asset 列表(含 type + eligibility)。
- out-of-scope deny-list(用于全程强制)。
阶段二:强制边界(Enforce boundaries)
在进入任何测试前,明确写下并全程遵守以下 硬性规则:
- Scope 硬边界
- 只测试 in-scope 列表中的 asset。
- out-of-scope deny-list 中的 asset 绝不触碰——不 fetch、不扫描、不发任何 payload。
pentest-flow只能直接作用于URL与WILDCARD类型;其它类型
(mobile app / source / CIDR / hardware 等)暂不自动化,需先与用户确认处理方式。
- Program rules(层叠在 VulnClaw 既有
BLOCKED_PATTERNS/RESERVED_IP_RANGES之上)
- no DoS / 无可用性影响:禁止压力测试、资源耗尽、批量并发(自动化扫描器的首要红线)。
- 尊重 rate limit / automation limit:低速、串行;遵守 program 声明的 "no automated scanning" 条款。
- no social engineering:不针对人员,不钓鱼。
- minimal impact / no PII exfil:验证漏洞即止,不导出真实用户数据、不做破坏性操作。
- 异常处理
- 任何一步若可能越过 scope 或触发上述规则,停止并询问用户。
阶段三:枚举与确认(Enumerate & confirm)
- 向用户列出全部已解析的 in-scope asset(编号、type、eligibility)。
- 询问从哪个 asset 开始(或全部)。
- 一次只处理一个 asset,逐个确认,避免并发导致越界或触发 rate limit。
阶段四:委派 pentest-flow(Delegate)
对用户选定的 单个 in-scope asset:
- 将该 asset 作为 target 交给
pentest-flowSkill,执行
recon → vuln-discovery → exploitation 全流程。
- 全程保持在 scope 内:
pentest-flow发现的新子域 / 端点若超出
in-scope 定义(尤其不匹配任何 in-scope WILDCARD),排除并提示用户。
- 持续对照阶段二的 program rules。
阶段五:报告(Report — HackerOne submission format)
对每个确认的 finding,按 HackerOne 提交格式 输出一份报告:
- Title — 简洁描述漏洞(type + 受影响 asset)。
- Asset — 受影响的 in-scope asset(URL / 标识)。
- Severity (CVSS) — CVSS 向量与分数(Critical/High/Medium/Low)。
- Steps to Reproduce — 可复现的分步操作(含请求 / 响应 / payload)。
- Impact — 可利用性与业务影响。
- Remediation — 修复建议。
多个 finding 时,每个独立成节;附可参数化的 Python PoC(requests 库)。 提醒用户:报告仅供其在 HackerOne 上 人工提交,本 Skill 不自动上报。
参考文档
references/hackerone-report-and-scope.md— scope 解析参考(asset type ↔ API enum、
eligibility 三态、粘贴表形状)、program rules 强制清单、HackerOne 提交格式报告模板。
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Netw0rkNoob
- Source: Netw0rkNoob/VulnClaw
- License: MIT
- Homepage: https://unclecheng-li.github.io/vulnclaw.com
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.