Skip to content

Instantly share code, notes, and snippets.

@scumdestroy
Created July 22, 2024 08:45
Show Gist options
  • Save scumdestroy/09f6e33314c84d713c26888646d24315 to your computer and use it in GitHub Desktop.
Save scumdestroy/09f6e33314c84d713c26888646d24315 to your computer and use it in GitHub Desktop.
#!/bin/sh
# Turns `jsluice urls` output into a wordlist you can use for fuzzing
# Usage: cat urls.txt | jsluice urls | jslclean.sh | tee wordlist-for-fuzzing.txt
jq .url | sort -u | sed 's/\"//g' | sed 's/^\///g'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment