HackingScripts/gobuster.sh

10 lines
240 B
Bash
Raw Normal View History

2020-01-28 22:15:42 +01:00
#!/usr/bin/bash
if [ $# -lt 1 ]; then
echo "Invalid usage: $0 <host>"
exit
fi
HOST=$1
2021-08-28 13:41:46 +02:00
gobuster dir --url="${HOST}" --wordlist="/usr/share/wordlists/SecLists/Discovery/Web-Content/raft-large-words-lowercase.txt" -b "403,404" "${@:2}"