Skip to content

Commit 12883ed

Browse files
committed
Skip payloads for all exploits except Specter and IDC
1 parent 9797638 commit 12883ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

start.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ def do_GET(self):
192192

193193
if self.path.rsplit('/', 1)[-1] == 'rop.js':
194194
print('>> Exploit sent')
195-
if self.path.rsplit('/', 2)[-2] == 'xvortex':
195+
if self.path.rsplit('/', 2)[-2] != 'idc' and self.path.rsplit('/', 2)[-2] != 'specter':
196196
print('>> Exploit does not support payload, skipping payload menu')
197197
else:
198198
self.payload_launcher()

0 commit comments

Comments
 (0)