-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommandparse.py
392 lines (297 loc) · 12.9 KB
/
commandparse.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
import time
import multiprocessing
from multiprocessing import Process
import os
import requests
import sys
from colorama import Fore
import socket
import getpass
import argparse
import re
import multiprocessing
from multiprocessing import Process
# Import files
import ByPassTester.ByPassTester as ByPassTester
import LFI.LFI as LFI
import Reflected_XSS.Reflected_XSS as Reflected_XSS
import Stored_XSS.Stored_XSS as Stored_XSS
import WayBackUrlsSedFilter.WayBackUrlsSedFilter as WayBackUrlsSedFilter
import UniqOnly.UniqOnly as UniqOnly
import SedFilter.SedFilter as SedFilter
import WayBackUrls.WayBackUrls as WayBackUrls
import default as DEFAULT
from main import *
import all_xss as All_XSS
if bool(args.tool):
USER = (args.tool).lower()
# Print title
print(
Fore.LIGHTGREEN_EX+
" __ _ ____________\n"+
" / / ____ _____ __ _| |/ / ___/ ___/\n"+
" / / / __ `/_ / / / / / /\__ \\__ \\\n"+
" / /___/ /_/ / / /_/ /_/ / |___/ /__/ /\n"+
"/_____/\__,_/ /___/\__, /_/|_/____/____/\n"+
" /____/\n"
)
# WayBackUrls
if USER == "waybackurls" or USER == "w":
print(f"{Fore.WHITE}[ OK ] (WayBackUrls) selected")
# Handling errors
if bool(args.payloadsfilename):
print(f"{Fore.RED}[ ! ] put a payload is not an option in WayBackUrls")
quit()
elif bool(args.payload):
print(f"{Fore.RED}[ ! ] put a payload is not an option in WayBackUrls")
quit()
# LIST URL
if bool(args.file) and bool(args.output):
WayBackUrls.FINAL_LIST(FILEPATH, OUTPUT)
# ONE URL
elif bool(args.url) and bool(args.output):
WayBackUrls.FINAL_ONE(URL, OUTPUT)
# Handling errors
elif bool(args.url) or bool(args.file) or bool(args.output):
print(f"{Fore.RED}[ ! ] You have to put input and output together")
quit()
else:
WayBackUrls.START()
# SedFilter
elif USER == "sedfilter" or USER == "s":
print(f"{Fore.WHITE}[ OK ] (SedFilter) selected")
# Handling errors
if bool(args.payloadsfilename):
print(f"{Fore.RED}[ ! ] put a payload is not an option in SedFilter")
quit()
elif bool(args.payload):
print(f"{Fore.RED}[ ! ] put a payload is not an option in SedFilter")
quit()
# LIST URL
if bool(args.file) and bool(args.output):
SedFilter.FINAL_LIST(FILEPATH, OUTPUT)
# ONE URL
elif bool(args.url) and bool(args.output):
print(f"{Fore.RED}[ ! ] One url is not an option")
quit()
# Handling errors
elif bool(args.url) or bool(args.file) or bool(args.output):
print(f"{Fore.RED}[ ! ] You have to put input and output together")
quit()
# Easy Selection
else:
SedFilter.START()
# WayBackUrls&SedFilter
elif USER == "waybackurls&sedfilter" or USER == "ws":
print(f"{Fore.WHITE}[ OK ] (WayBackUrls&SedFilter) selected")
# Handling errors
if bool(args.payloadsfilename):
print(f"{Fore.RED}[ ! ] put a payload is not an option in WayBackUrls&SedFilter")
quit()
elif bool(args.payload):
print(f"{Fore.RED}[ ! ] put a payload is not an option in ByPassTester")
quit()
# LIST URL
if bool(args.file) and bool(args.output):
WayBackUrlsSedFilter.FINAL_LIST(URL, OUTPUT)
# ONE URL
elif bool(args.url) and bool(args.output):
WayBackUrlsSedFilter.FINAL_ONE(URL, OUTPUT)
# Handling errors
elif bool(args.url) or bool(args.file) or bool(args.output):
print(f"{Fore.RED}[ ! ] You have to put input and output together")
quit()
# Easy Selection
else:
WayBackUrlsSedFilter.START()
# UniqOnly
elif USER == "uniqonly" or USER == "u":
print(f"{Fore.WHITE}[ OK ] (UniqOnly) selected")
# Handling errors
if bool(args.payloadsfilename):
print(f"{Fore.RED}[ ! ] put a payload is not an option in UniqOnly")
quit()
elif bool(args.payload):
print(f"{Fore.RED}[ ! ] put a payload is not an option in UniqOnly")
quit()
# LIST URL
if bool(args.file) and bool(args.output):
UniqOnly.FINAL_LIST(FILEPATH, OUTPUT)
# ONE URL
elif bool(args.url) and bool(args.output):
print(f"{Fore.RED}[ ! ] One url is not an option")
quit()
# Handling errors
elif bool(args.url) or bool(args.file) or bool(args.output):
print(f"{Fore.RED}[ ! ] You have to put input and output together")
quit()
# Easy Selection
else:
UniqOnly.START()
# Reflected_XSS
elif USER == "url_reflected_xss" or USER == "r-xss":
print(f"{Fore.WHITE}[ OK ] (URL Reflected XSS) selected")
# LIST URL
if bool(args.file) and bool(args.output):
# LIST URL
if bool(args.payload) or bool(args.payloadsfilename):
Reflected_XSS.FINAL_LIST(URL, OUTPUT, PAYLOAD, DELAY)
# Handling errors
else:
print(f"{Fore.RED}[ ! ] you have to set payloads with (-p or -pf)")
quit()
# ONE URL
elif bool(args.url) and bool(args.output):
# ONE URL
if bool(args.payloadsfilename) or bool(args.payload):
Reflected_XSS.FINAL_ONE(URL,OUTPUT, PAYLOAD, DELAY)
# Handling errors
else:
print(f"{Fore.RED}[ ! ] you have to set payloads with (-p or -pf)")
quit()
# Handling errors
elif bool(args.url) or bool(args.file) or bool(args.output) or bool(args.payload) or bool(args.payloadsfilename) or bool(args.delay):
print(f"{Fore.RED}[ ! ] You have to put input, output and payloads together")
quit()
# Easy Selection
else:
Reflected_XSS.START()
# Stored_XSS
elif USER == "input_reflected_xss" or USER == "s-xss":
print(f"{Fore.WHITE}[ OK ] (Inputs reflected XSS) selected")
# LIST URL
if bool(args.file) and bool(args.output):
# LIST URL
if bool(args.payloadsfilename) or bool(args.payload):
s = requests.Session()
s.headers["User-Agent"] = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36"
Stored_XSS.FINAL(URL, OUTPUT, PAYLOAD, DELAY, s)
# Handling errors
else:
print(f"{Fore.RED}[ ! ] you have to set payloads with (-p or -pf)")
quit()
# ONE URL
elif bool(args.url) and bool(args.output):
if bool(args.payloadsfilename) or bool(args.payload):
s = requests.Session()
s.headers["User-Agent"] = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36"
Stored_XSS.FINAL(URL, OUTPUT, PAYLOAD, DELAY, s)
else:
print(f"{Fore.RED}[ ! ] you have to set payloads with (-p or -pf)")
quit()
# Handling errors
elif bool(args.url) or bool(args.file) or bool(args.output) or bool(args.payload) or bool(args.payloadsfilename) or bool(args.delay):
print(f"{Fore.RED}[ ! ] You have to put input, output and payloads together")
quit()
# Easy Selection
else:
Stored_XSS.START()
# ByPassTester
elif USER == "bypasstester" or USER == "b":
print(f"{Fore.WHITE}[ OK ] (ByPassTester) selected")
# LIST URL
if bool(args.file) and bool(args.output):
# Handling errors
if bool(args.payloadsfilename):
print(f"{Fore.RED}[ ! ] put a payload is not an option in ByPassTester")
quit()
elif bool(args.payload):
print(f"{Fore.RED}[ ! ] put a payload is not an option in ByPassTester")
quit()
# LIST URL
URL = re.split("\n", str(f.read()))
ByPassTester.FINAL(URL, OUTPUT, DELAY)
# ONE URL
elif bool(args.url) and bool(args.output):
if bool(args.payloadsfilename):
print(f"{Fore.RED}[ ! ] put a payload is not an option in ByPassTester")
quit()
elif bool(args.payload):
print(f"{Fore.RED}[ ! ] put a payload is not an option in ByPassTester")
quit()
# ONE URL
ByPassTester.FINAL(URL, OUTPUT, DELAY)
# Handling errors
elif bool(args.url) or bool(args.file) or bool(args.output) or bool(args.payload) or bool(args.payloadsfilename) or bool(args.delay):
print(f"{Fore.RED}[ ! ] You have to put input, output together")
quit()
# Easy Selection
else:
ByPassTester.START()
# LFI
elif USER == "lfi" or USER == "l":
print(f"{Fore.WHITE}[ OK ] (LFI) selected")
# List URL
if bool(args.file) and bool(args.output):
# Handling errors
if bool(args.payloadsfilename):
print(f"{Fore.RED}[ ! ] put a payload is not an option in LFI")
quit()
elif bool(args.payload):
print(f"{Fore.RED}[ ! ] put a payload is not an option in LFI")
quit()
# LIST URL
LFI.FINAL(URL, OUTPUT, DELAY)
# ONE URL
elif bool(args.url) and bool(args.output):
# Handling errors
if bool(args.payloadsfilename):
print(f"{Fore.RED}[ ! ] put a payload is not an option in LFI")
quit()
elif bool(args.payload):
print(f"{Fore.RED}[ ! ] put a payload is not an option in LFI")
quit()
# ONE URL
LFI.FINAL(URL, OUTPUT, DELAY)
# Handling errors
elif bool(args.url) or bool(args.file) or bool(args.output) or bool(args.payload) or bool(args.payloadsfilename) or bool(args.delay):
print(f"{Fore.RED}[ ! ] You have to put input, output together")
quit()
else:
LFI.START()
elif USER == "all_xss" or USER == "a-xss":
if bool(args.file) and bool(args.output):
# LIST URL
if bool(args.payloadsfilename) or bool(args.payload):
s = requests.Session()
s.headers["User-Agent"] = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36"
All_XSS.START_PROGRAM(URL, OUTPUT, PAYLOAD, DELAY, s)
# Handling errors
else:
print(f"{Fore.RED}[ ! ] you have to set payloads with (-p or -pf)")
quit()
# ONE URL
elif bool(args.url) and bool(args.output):
if bool(args.payloadsfilename) or bool(args.payload):
s = requests.Session()
s.headers["User-Agent"] = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36"
All_XSS.START_PROGRAM(URL, OUTPUT, PAYLOAD, DELAY, s)
else:
print(f"{Fore.RED}[ ! ] you have to set payloads with (-p or -pf)")
quit()
# Handling errors
elif bool(args.url) or bool(args.file) or bool(args.output) or bool(args.payload) or bool(args.payloadsfilename) or bool(args.delay):
print(f"{Fore.RED}[ ! ] You have to put input, output and payloads together")
quit()
# Easy Selection
else:
print(f"{Fore.RED}[ ! ] This is not an option in all_xss")
quit()
# wrong tool selection
else:
print(f"{Fore.RED}[ ! ] Invaild option")
else:
if bool(args.payloadsfilename) or bool(args.payload) or bool(args.file) or bool(args.url) or bool(args.output) or bool(args.delay):
# Print title
print(
Fore.LIGHTGREEN_EX+
" __ _ ____________\n"+
" / / ____ _____ __ _| |/ / ___/ ___/\n"+
" / / / __ `/_ / / / / / /\__ \\__ \\\n"+
" / /___/ /_/ / / /_/ /_/ / |___/ /__/ /\n"+
"/_____/\__,_/ /___/\__, /_/|_/____/____/\n"+
" /____/\n"
)
print(f"{Fore.RED}[ ! ] Invaild option")
else:
DEFAULT.DEFAULT()