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 1d81172 commit 44f457aCopy full SHA for 44f457a
directory_bruteforcing/dirbrute.py
@@ -6,19 +6,19 @@
6
7
for i in range(len(file)):
8
wls = file.readline()
9
- r = requests.get(url+wls)
+ r = requests.get(url + wls)
10
stats = r.status_code
11
12
if stats == 200:
13
- print("_"*50)
14
- print("Path :"+url+wls, (stats))
15
+ print("_" * 50)
+ print("Path :"+url + wls, (stats))
16
elif stats == 404:
17
18
19
+ print("Path :" + url + wls, (stats))
20
else:
21
22
23
24
file.close()
0 commit comments