-
Notifications
You must be signed in to change notification settings - Fork 0
/
web_mapper.py
38 lines (33 loc) · 1.03 KB
/
web_mapper.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
import Queue
import threading
import os
import urllib2
threads = 10
target = "http://www.test.com"
directory = "/Users/<USERNAME>/Downloads/joomla3-1.1"
filters = [".jpg", ".gif", "png", ".css"]
os.chdir(directory)
web_paths = Queue.Queue()
for r,d,f in os.walk("."):
for files in f:
remote_path = f"{r}/{files}"
if remote_path.startswith("."):
remote_path = remote_path[1:]
if os.path.splitext(files)[1] not in filters:
web_paths.put(remote_path)
def test_remote():
while not web_paths.empty():
path = web_paths.get()
request = urllib2.Request(f"{target}{path}")
try:
response = urllib2.urlopen(request)
content = response.read()
print(f"[{response.code}] => {path}")
response.close()
except urllib2.HTTPError as error:
print(f"Failed {error.code}")
pass
for i in range(threads):
print(f"Spawning thread: {i}")
t = threading.Thread(target=test_remote)
t.start()