Bug Hunt Method Kit

Public-safe method kit and AI-OS for responsible bug hunting, evidence review, redaction, and report preparation.

View the Project on GitHub PrzemyslaV88/bug-hunt-method-kit

Redaction Standard

Redaction means removing or replacing details that could expose private systems, accounts, people, secrets, or live vulnerabilities.

Approved Placeholders

Do Not Include

Bad Versus Good

Bad:

Tested a real checkout endpoint with a concrete cart ID and a real user email.

Good:

Tested https://example.com/api/cart/{ownedCartId} in an authorized toy scenario.
USER_A owns OBJECT_1.
USER_B performs an allowed-scope boundary check against OBJECT_1.
Authorization header omitted and never stored.

Bad:

The target returns other customers when random order IDs are tried.

Good:

In a toy or authorized environment, create two tester-controlled objects and verify cross-user access is denied. Never guess random IDs or access third-party data.

Review Habit

Before publishing, search for emails, URLs, token words, concrete IDs, and private folder names. Remove unsafe hits or replace them with placeholders.

For AI-specific redaction behavior, see the AI-OS Redaction Rubric.