Strix•Katana Usage
SkillWeb & browsingManual for Strix Katana crawler commands, covering depth, JS scraping, and stable concurrency control; trigger name: strix-katana
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Strix•Katana Usage skill
What this skill tells your AI
The instructions your AI receives, as published by asdfgh1445/ctf-super-hub in strix-katana/SKILL.md and read by ahel’s review.
Official docs:
- https://docs.projectdiscovery.io/opensource/katana/usage
- https://docs.projectdiscovery.io/opensource/katana/running
- https://github.com/projectdiscovery/katana
Canonical syntax:
katana [flags]
High-signal flags:
-u, -list <url|file>target URL(s)-d, -depth <n>crawl depth-jc, -js-crawlparse JavaScript-discovered endpoints-jsl, -jsluicedeeper JS parsing (memory intensive)-kf, -known-files <all|robotstxt|sitemapxml>known-file crawling mode-proxy <http|socks5 proxy>explicit proxy setting-c, -concurrency <n>concurrent fetchers-p, -parallelism <n>concurrent input targets-rl, -rate-limit <n>request rate limit-timeout <seconds>request timeout-retry <n>retry count-ef, -extension-filter <list>extension exclusions-tlsi, -tls-impersonateexperimental JA3/TLS impersonation-hl, -headlessenable hybrid headless crawling-sc, -system-chromeuse local Chrome for headless mode-ho, -headless-options <csv>extra Chrome options (for example proxy-server)-nos, -no-sandboxrun Chrome headless with no-sandbox-noi, -no-incognitodisable incognito in headless mode-cdd, -chrome-data-dir <dir>persist browser profile/session-xhr, -xhr-extractioninclude XHR endpoints in JSONL output-silent,-j, -jsonl,-o <file>output controls
Agent-safe baseline for automation:
mkdir -p crawl && katana -u https://target.tld -d 3 -jc -kf robotstxt -c 10 -p 10 -rl 50 -timeout 10 -retry 1 -ef png,jpg,jpeg,gif,svg,css,woff,woff2,ttf,eot,map -silent -j -o crawl/katana.jsonl
Common patterns:
- Fast crawl baseline:
katana -u https://target.tld -d 3 -jc -silent - Deeper JS-aware crawl:
katana -u https://target.tld -d 5 -jc -jsl -kf all -c 10 -p 10 -rl 50 -o katana_urls.txt - Multi-target run with JSONL output:
katana -list urls.txt -d 3 -jc -silent -j -o katana.jsonl - Headless crawl with local Chrome:
katana -u https://target.tld -hl -sc -nos -xhr -j -o crawl/katana_headless.jsonl - Headless crawl through proxy:
katana -u https://target.tld -hl -sc -ho proxy-server=http://127.0.0.1:48080 -j -o crawl/katana_proxy.jsonl
Critical correctness rules:
-kfmust be followed by one ofall,robotstxt, orsitemapxml.- Use documented
-hlfor headless mode. -proxyexpects a single proxy URL string (for examplehttp://127.0.0.1:8080).-hoexpects comma-separated Chrome options (example:-ho --disable-gpu,proxy-server=http://127.0.0.1:8080).- For
-kf, keep depth at least-d 3so known files are fully covered. - If writing to a file, ensure parent directory exists before
-o.
Usage rules:
- Keep
-d,-c,-p, and-rlexplicit for reproducible runs. - Use
-efearly to reduce static-file noise before fuzzing. - Prefer
-proxyover environment proxy variables when proxying only Katana traffic. - Use
-hconly for one-time diagnostics, not routine crawling loops. - Do not use
-h/--helpfor routine runs unless absolutely necessary.
Failure recovery:
- If crawl runs too long, lower
-dand optionally add-ct. - If memory spikes, disable
-jsland lower-c/-p. - If headless fails with Chrome errors, drop
-scor install system Chrome. - If output is noisy, tighten scope and add
-effilters.
If uncertain, query web_search with:
site:docs.projectdiscovery.io katana <flag> usage
Signals
- GitHub stars
- 808
- Forks
- 100
- Last commit
- Apr 2026
Advanced
- Catalog kind
- skill
- Gateway key
strix-katana- Source
- github.com/asdfgh1445/ctf-super-hub