Web
# Directories bruteforce
dirsearch -u http://192.168.198.121 -e aspx --full-url -w /directory-list-2.3-medium.txt -t 100 -x 400,404
# DNS Enumeration
gobuster dns -d medtech.com -w subdomains-top1million-110000.txt --wildcard
GIT
# Download the directory
wget -r http://127.0.0.1/.git
# Show commits
git log
git show
git diff-tree -p HEAD
Last updated