Skip to content

Instantly share code, notes, and snippets.

@CallMarl
Created April 14, 2020 16:18
Show Gist options
  • Save CallMarl/9443af3644ad4c9fc06fe68cc692224c to your computer and use it in GitHub Desktop.
Save CallMarl/9443af3644ad4c9fc06fe68cc692224c to your computer and use it in GitHub Desktop.
Hacking tools
# get most common url (attack by dictionnary)
dirb http://127.0.0.1/
# get most common url not recursiv (attack by dictionnary)
dirb http://127.0.0.1/ -r
# Brutforce ftp session (attack by dictionnary)
hydra -l root -P /usr/share/john/password.lst ssh://127.0.0.1:21
# Brutforce ssh session (attack by dictionnary)
hydra -l root -P /usr/share/john/password.lst ssh://127.0.0.1:22
apt-get install john \
hydra \
dirb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment