Skip to content

Instantly share code, notes, and snippets.

View chaitanyakush's full-sized avatar
🏠
Working from home

Chaitanya Sharma chaitanyakush

🏠
Working from home
View GitHub Profile
@chaitanyakush
chaitanyakush / gobuster_recurse.sh
Created March 8, 2019 14:53 — forked from ryan-wendel/gobuster_recurse.sh
Recursive gobuster script. I'll be looking to feed its output into EyeWitness.
#!/bin/bash
TARGET="$1"
WORDLIST="$2"
LEVELS="$3"
TMP_FILE_PREFIX="/tmp/gobuster_$$"
USER_AGENT='Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)'
BACKUP_WORDLIST="/usr/local/wordlists/custom/rw-common-dirs.txt"
RESPONSE_CODES="200,301,307,401,403"