Shell Fu - Oneliners
Simple linux commands to make the work done faster
URI analysis - JavaScript Enumeration
cat file.js | grep -aoP "(?<=(\"|\'|\`))\/[a-zA-Z0-9_?&=\/\-\#\.]*(?=(\"|\'|\`))" | sort -ucURL - NTLM authentication
curl -k --ntlm -u username:password URLcurl -k --ntlm -u DOMAIN\\username:password URLcurl -s -o /dev/null -w \"%{http_code}\" -k --ntlm -u -u username:password URLJoin - User_Pass Wordlist Compilation
join -j 2 -t $':' users.txt pass10k.txtLast updated