-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSecFuzzer.py
More file actions
59 lines (48 loc) · 1.72 KB
/
SecFuzzer.py
File metadata and controls
59 lines (48 loc) · 1.72 KB
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
#Changing the Description of this tool won't made you the coder ^_^ !
#Respect Coderz ^_^
import urllib.request
import requests
import random
import time
import sys
import os
os.system('clear')
print('''
!!!!!! !!!!!!! !!!!!!! !!!!!!!! !!!!!!!! !! !! !!!!!!!! !! !!
!! !! !! !! !! !! !! !! !! !! !! !! !! !! !!
!!!!!! !!!!!!! !!!!!!! !! !! !!!!!!!! !!!!! !!!!!!!! !! !! !!!!!!!!
!! !! !! !! !! !! !! !! !! !! !! !! !!
!!!!!! !! !! !! !! !!!!!!!! !! !! !! !!!!!!!! !!
''')
def slowprint(s):
for c in s + '\n' :
sys.stdout.write(c)
sys.stdout.flush()
time.sleep(5. / 100)
slowprint("[!] Starting : ")
time.sleep(1)
os.system('clear')
print('''
\u001b[1;93m
____ _____
/ ___| ___ ___ | ___| _ _ ____ ____ ___ _ __
\___ \ / _ \ / __| | |_ | | | | |_ / |_ / / _ \ | '__|
___) | | __/ | (__ | _| | |_| | / / / / | __/ | |
|____/ \___| \___| |_| \__,_| /___| /___| \___| |_|
3rr0r-404 | fb: @robin2123.py
''')
url = input("\033[92m [!] Enter URL : ")
wordlist = input("\033[92m[!] Enter wordlists : ")
def write(word):
f1 = open("success-wordlist.txt","a")
f1.write(word +"\n")
fo = open(wordlist,"r+")
for i in range(2000):
word = fo.readline(10).strip()
surl = url+word
#print (surl)
response = requests.get(surl)
#print (response)
if (response.status_code == 200,403,401,402):
print ("\033[91m[!] Found---> ",surl)
write(word)