Repository restructuring
This commit is contained in:
13
tools/scanner/gobuster.sh
Executable file
13
tools/scanner/gobuster.sh
Executable file
@@ -0,0 +1,13 @@
|
||||
#!/usr/bin/bash
|
||||
|
||||
if [ $# -lt 1 ]; then
|
||||
echo "Invalid usage: $0 <host>"
|
||||
exit
|
||||
fi
|
||||
|
||||
HOST=$1
|
||||
(set -x; gobuster dir \
|
||||
--url="${HOST}" \
|
||||
--wordlist="/usr/share/wordlists/SecLists/Discovery/Web-Content/raft-large-words-lowercase.txt" \
|
||||
-b "403,404" -k \
|
||||
"${@:2}")
|
||||
Reference in New Issue
Block a user