Skip to content

Instantly share code, notes, and snippets.

@andersonbosa
Created May 13, 2022 18:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andersonbosa/469e6dc4c5fbbe320dd48bdc9e5e4935 to your computer and use it in GitHub Desktop.
Save andersonbosa/469e6dc4c5fbbe320dd48bdc9e5e4935 to your computer and use it in GitHub Desktop.
kali wordlist gen in bash
for j in $(seq 100 999); do
foo="%\&*+-/:;<=>?@\\_";
for (( i=0; i<${#foo}; i++ )); do
echo "3LetrasAqui$j${foo:$i:1}";
done;
done > out.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment