Skip to content

Instantly share code, notes, and snippets.

@noraj
Last active November 15, 2023 23:01
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 noraj/8f0ab2b3fc0967f684b8aa9c7a47f2c5 to your computer and use it in GitHub Desktop.
Save noraj/8f0ab2b3fc0967f684b8aa9c7a47f2c5 to your computer and use it in GitHub Desktop.
Accompagnement de la vidéo "Astuces - Alias fzf & wordlists"
# Les alias
alias fzf-wl='find /usr/share/seclists/ /usr/share/wordlists /usr/share/fuzzdb -type f | fzf'
alias fzf-wl-pass='find /usr/share/seclists/Passwords /usr/share/wordlists/passwords -type f | fzf'
alias fzf-wl-web='find /usr/share/seclists/Discovery/Web-Content/ /usr/share/fuzzdb/discovery/predictable-filepaths -type f | fzf'
# exemple de commande utilisant un alias
ffuf -u http://ffuf.me/cd/basic/FUZZ -w $(fzf-wl-web)
# commande pour installer les prérequis sur BlackArch
sudo pacman -Syu fzf seclists fuzzdb wordlistctl
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment