Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@g05u
g05u / venom_solver.py
Last active August 29, 2015 14:20
TJCTF 2015 Venom reversing chall
import struct, random
# TJCTF 2015 Venom reversing chall
# www.null-life.com
# @_g05u_
f = open('./venom', 'rb')
data = f.read()
f.close()
s = '1462132F222E292F'.decode('hex')
@g05u
g05u / hackt1_web.py
Created May 3, 2015 15:36
HackT1_xpl.py
#!/usr/bin/env python
import struct, sys, time, re
import requests, urllib
# Volga CTF 2015
# exploit HackT - 1
# www.null-life.com / @_g05u_
pass_addr = 0x606400 #password address in bss
QUERYS = 110
@g05u
g05u / xpl_pwnie.py
Created May 3, 2015 15:39
Exploit Little Pwnie VolgaCTF
#!/usr/bin/env python
import struct, sys, time, re
from nulllife import *
import requests, urllib
# Volga CTF 2015
# exploit my little pwnie
# www.null-life.com / @_g05u_
FD = 4