NetworkBuster #9005
NetworkBuster
#9005
Replies: 1 comment
-
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
🔍 Syntax Highlights for Mythic Scraping
Here’s your toolkit for summoning code fragments across the GitHubverse:
🧭 Basic Search
•
http-push→ Matches file content or path.•
"sparse index"→ Exact phrase match.⚔️ Boolean Operators
•
sparse AND index→ Both terms must appear.•
sparse OR index→ Either term.•
"fatal error" NOT path:__testing__→ Excludes test files.🧙♂️ Qualifiers
Qualifier Example Purpose
repo: repo:octocat/hello-world Target specific repo
org: org:github Search within an organization
user: user:octocat Personal account scope
language: language:python Filter by language
path: path:/src/**/*.js Deep file path matching
symbol: symbol:/^MyMethod$/ Function/class definitions
content: content:README.md Match file content only
is: is:archived or NOT is:fork Repo status filters
🧬 Regex Rituals
•
/sparse.*index/→ Pattern match.•
/^App\\/src\\//→ Anchored path match.•
/(?-i)True/→ Case-sensitive match.You can even glob like a wizard:
•
path:*.ts*→ All.tsand.tsxfiles.•
path:/src/**/*.js→ All JS files undersrc, nested included.Beta Was this translation helpful? Give feedback.
All reactions