Created
July 22, 2024 08:45
-
-
Save scumdestroy/09f6e33314c84d713c26888646d24315 to your computer and use it in GitHub Desktop.
This file contains 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
#!/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