Skip to content

Instantly share code, notes, and snippets.

@man3kin3ko
Last active October 19, 2023 11:14
Show Gist options
  • Save man3kin3ko/03476ffdf9523504842794d11b28607f to your computer and use it in GitHub Desktop.
Save man3kin3ko/03476ffdf9523504842794d11b28607f to your computer and use it in GitHub Desktop.
jq tips
# filter ffuf output
cat output.json | jq 'results[] | select(.status==200) | .url'
cat output.json | jq -S 'results | =sort_by(.url) | .results[] | select(.status==200) | {url: .url,len: .length}'
# filter bbot output
cat output.json | jq 'select(.type=="DNS_NAME") | .data' | tr -d '"' | sort | uniq > subdomains.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment