grep disclosed HackerOne reports for recon and research
Project description
h1grep
grep for disclosed HackerOne reports. A zero-dependency CLI that searches HackerOne's public Hacktivity feed of disclosed, resolved vulnerability reports — by keyword, severity, CWE, program, top votes, or top bounty — and prints structured results for recon and research.
No API key. No account. Read-only. Standard-library Python only.
$ h1grep --top-voted --limit 3
========================================================================
h1grep — top voted
50 matches from 50 fetched reports
========================================================================
[01] Takeover an account that doesn't have a Shopify ID and more
Severity : CRITICAL | CWE: n/a
Program : shopify | Reporter: imgnotfound
Bounty : no bounty | Votes: 2990
URL : https://hackerone.com/reports/867513
Why
It isn't "another recon script." The value is the reverse-engineered GraphQL
knowledge baked in. HackerOne's public GraphQL endpoint crashes on several
otherwise-natural query shapes (substate filter + sort + report fields;
disclosed_at + substate; named variables + substate + report fields). h1grep
encodes empirically-discovered crash-avoidance rules so that searching disclosed
reports from the terminal just works — something no other packaged CLI does.
Studying disclosed reports is one of the highest-signal ways to learn validated techniques: what got voted up by the community, what paid out, and how impact was framed for a specific program.
Install
pip install h1grep
Or run straight from source (nothing to install — it's stdlib-only):
git clone https://github.com/sonnycroco/h1grep
cd h1grep
python3 h1grep.py --top-voted --limit 25
Requires Python 3.9+.
Usage
# Top-voted reports — best validated techniques, great starting point
h1grep --top-voted --limit 25
# Highest-bounty reports — signal for business-impact framing
h1grep --top-bounty --limit 10
# Keyword search in report titles across multiple pages
h1grep --query "SSRF" --pages 10
h1grep --query "OAuth bypass" --pages 5
# Filter by severity (client-side)
h1grep --top-voted --severity critical high --limit 20
# Filter by CWE label (client-side regex)
h1grep --top-voted --cwe "SSRF" "Request Forgery"
# Program-specific disclosures
h1grep --program shopify --pages 3
# Resolve a program handle to its numeric team ID
h1grep --lookup-program gitlab
# Full combo: top-bounty SSRF reports, critical/high only
h1grep --top-bounty --query "SSRF" --severity critical high --pages 10
# JSON output for piping into jq, etc.
h1grep --top-voted --query "XSS" --pages 5 --json
Options
| Flag | Description |
|---|---|
--query, -q |
Keyword regex matched against report titles (client-side) |
--severity, -s |
Filter by severity: none low medium high critical (client-side) |
--cwe |
Filter by CWE label regex, e.g. "SSRF" "Traversal" (client-side) |
--program, -p |
Filter by program handle (e.g. shopify) |
--lookup-program |
Resolve a program handle to its numeric team ID and exit |
--top-voted |
Sort by community votes (validated techniques) |
--top-bounty |
Sort by bounty amount (impact framing) |
--limit, -n |
Max results to display (default: 20) |
--pages |
Pages to fetch, 50 results/page (default: 1; use 5–20 for keyword searches) |
--json |
Emit raw JSON instead of formatted text |
Keyword, severity, and CWE filtering are applied client-side after fetching,
so widen --pages when you filter aggressively.
How it works
- Query building — inline GraphQL strings are assembled per mode to route around the endpoint's crash triggers. Pure sort (no program) uses server-side sorting; program filtering uses a substate/team filter with no server-side sort, then sorts client-side.
- Pagination — walks pages of 50 using base64 offset cursors, sleeping
0.3s between pages (polite rate limiting), up to
--pages. - Client-side filter & sort — keyword/severity/CWE and the fallback sort are applied locally.
- Output — color-coded text by default, or
--json.
Caveats
- Undocumented endpoint.
h1grepuses the same public GraphQL endpoint the Hacktivity web UI calls. It is not an official API and may change without notice. When the response shape changes,h1grepfails with a clear "HackerOne API shape changed — please open an issue" message rather than a stack trace — please do open an issue if you hit it. - Disclosed reports only. It can only see what HackerOne has publicly disclosed — never private program data.
- Read-only and rate-limited by design. It fetches and prints; it does not write, submit, or scrape aggressively. Please keep it that way and be a good citizen of the endpoint.
License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file h1grep-0.1.0.tar.gz.
File metadata
- Download URL: h1grep-0.1.0.tar.gz
- Upload date:
- Size: 12.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0d93753b0f83d34f588c571d56334cd723892455b75d44a1d011ae4b58040c79
|
|
| MD5 |
4aef80117f28bf07ad9eee4d42463d2e
|
|
| BLAKE2b-256 |
342db0ccab69a58aa5bf4e85909a0b20ee0a563c4d816579f5b4e64de1621279
|
File details
Details for the file h1grep-0.1.0-py3-none-any.whl.
File metadata
- Download URL: h1grep-0.1.0-py3-none-any.whl
- Upload date:
- Size: 12.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
445ebba009842c5550acb5248b33840c33f2738d405d33b4dceedb0c6b3bbf88
|
|
| MD5 |
f1a8c0c22dac0c0faaa3eeba62709a5d
|
|
| BLAKE2b-256 |
cf48d5cbd6d16731c3f20416c91a51667402a45a533ac434f52416ed002fbb5f
|