- Youtube : https://youtu.be/9ag1zxZd39g
- Odysee : https://odysee.com/@noraj:e/fzf-aliases:9
- Playeur : https://playeur.com/v/dbUfQKSnQK_
Last active
November 15, 2023 23:01
-
-
Save noraj/8f0ab2b3fc0967f684b8aa9c7a47f2c5 to your computer and use it in GitHub Desktop.
Accompagnement de la vidéo "Astuces - Alias fzf & wordlists"
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
# 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