feat(web2-recon): add source disclosure & extraction section#67
Open
letztek wants to merge 1 commit into
Open
Conversation
Adds a SOURCE DISCLOSURE & EXTRACTION section to web2-recon covering VCS dumping (.git/.svn/.hg/.bzr), .DS_Store recursion, backup/temp fuzzing, php://filter/.phps source reads, env/config leaks, and how to turn recovered source into findings. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Adds a new
## SOURCE DISCLOSURE & EXTRACTIONsection toskills/web2-recon/SKILL.md, placed between the## JS ANALYSISand## DIRECTORY FUZZINGsections.The section covers, with exact copy-paste commands:
exposure,config,git,backuptags)..gitvia git-dumper and GitTools (gitdumper.sh/extractor.sh),.svnviawc.dbSQLite (1.7+) andentries/text-base(≤1.6),.hgand.bzrvia dvcs-ripper, including the commit-history mining that turns a 200 into a real finding..DS_Storerecursive directory mapping via ds_store_exp plus a manualstringsparse..swprecovery, and the SecListsBackupFiles.fuzz.txtlist.php://filter/convert.base64-encode(chained off an LFI sink) and.phps..env,web.config,WEB-INF/web.xml,application.properties,appsettings.json, etc., as a table mapping each file to the secret it leaks and the escalation it unlocks.Why
The existing web2-recon pipeline does subdomain/URL/JS/secret recon but has no dedicated source-disclosure-and-extraction workflow. Source recovery is the single biggest force-multiplier in recon (black-box → white-box), and the pipeline lacked the dump-and-mine commands hunters reach for.
Everything is framed for bug bounty: every technique answers "can I prove impact RIGHT NOW", and the section is anchored by an explicit severity ladder (
200= Info →full source= Low →+ verified secret / confirmed sink= High/Critical) so hunters report at the top of what they can prove and don't pad their N/A ratio with bare-disclosure submissions. Cross-references existing sections by title (SECRET SCANNING IN JS BUNDLES, Error Disclosure / Debug Endpoints, padding-oracle, SSRF/file-include classes), per house style.The section uses standard CLI tooling only (git-dumper, GitTools, dvcs-ripper, ds_store_exp, ffuf, sqlite3, trufflehog, Python) — no new dependency. Techniques were verified against current (June 2026) write-ups for git-dumper, ds_store_exp, ffuf backup fuzzing, and
php://filtersource disclosure. No dollar figures or CVEs were fabricated.Merge order
Self-contained enrichment of one file (
skills/web2-recon/SKILL.md). Does not touchweb2-vuln-classesor any numbered class, so no merge-order coupling.