Quote from GizmoreSep 10, 2018 - 18:09:02
I still cant figure out that something might be the cmd to interrupt and transfer my parameters to the kernel
maybe someone can code something up?.
1 2 3 4 56 7 8 9 1011 12 13 14 1516 17 | import re import time import socket sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)sock.connect(('wc3.wechall.net', 61221)) while True: data = raw_input('Cmd?:') data = re.sub('[^A-Za-z0-9]', '', data) data = re.findall('..', data) data = ''.join([chr(int(x, 16)) for x in data]) print('Sending: %r' % (data,)) now = time.time() sock.send(data) print('Received: %r' % (sock.recv(10000), )) print('Execution took: %.2f seconds' % (time.time() - now)) |
1
2
3
4
5 | Cmd?:05 00 FD 00 05 00 FD 03 FD FE FD 02 FD FE FD FE
Sending: '\x05\x00\xfd\x00\x05\x00\xfd\x03\xfd\xfe\xfd\x02\xfd\xfe\xfd\xfe'
Received: ''
Execution took: 18.26 seconds
Cmd?: |
Quote from GizmoreSep 10, 2018 - 18:09:02
I still cant figure out that something might be the cmd to interrupt and transfer my parameters to the kernel
maybe someone can code something up?.