We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3025794 commit fbc287bCopy full SHA for fbc287b
start.py
@@ -235,7 +235,7 @@ def do_GET(self):
235
except IOError:
236
self.send_error(404)
237
238
- if self.path.rsplit('/', 1)[-1] == 'rop.js':
+ if self.path.rsplit('/', 1)[-1] == 'kernel.js':
239
print('>> Exploit sent...')
240
try:
241
payloads_file = os.path.join(EXPLOIT_LOC, self.path.rsplit('/', 2)[-2], 'nopayloads')
@@ -418,7 +418,7 @@ def patch_payload(content):
418
def send_payload(hostname, port, content):
419
"""Netcat implementation"""
420
soc = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
421
- timeout = time.time() + 15
+ timeout = time.time() + 60
422
while True:
423
result = soc.connect_ex((hostname, port))
424
if result == 0:
0 commit comments