Initial Commit

This commit is contained in:
2020-01-28 22:15:42 +01:00
commit a0476d4c17
13 changed files with 6638 additions and 0 deletions

16
gobuster.sh Executable file
View File

@@ -0,0 +1,16 @@
#!/usr/bin/bash
if [ $# -lt 1 ]; then
echo "Invalid usage: $0 <host>"
exit
fi
HOST=$1
EXTENSIONS=""
if [ $# -gt 1 ]; then
EXTENSIONS="-x ${2}"
fi
gobuster dir --url="${HOST}" --wordlist="/usr/share/wordlists/SecLists/Discovery/Web-Content/raft-large-words-lowercase.txt" \
-k "${EXTENSIONS}" -b "403,404"