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 URLWith an authentication within the domain (double slash for shell as escape sequence)
curl -k --ntlm -u DOMAIN\\username:password URLA silent (-s,--silent) version with HTTP status code reporting
curl -s -o /dev/null -w \"%{http_code}\" -k --ntlm -u -u username:password URLJoin - User_Pass Wordlist Compilation
A replacement of a first ":" character is needed anyway, regex replacement needed "\n:", "\n"
join -j 2 -t $':' users.txt pass10k.txtLast updated
Was this helpful?