-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathweb_app_mapper.py
More file actions
57 lines (34 loc) · 1.11 KB
/
web_app_mapper.py
File metadata and controls
57 lines (34 loc) · 1.11 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
import Queue
import threading
import os
import urllib2
threads = 10
target = "http://www.schooloftomorrow-edu.com"
directory = "./joomla"
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 = "%s%s"%(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()
url = "%s%s" %(target,path)
request = urllib2.Request(url)
try:
response = urllib2.urlopen(request)
content = response.read()
print "[%d] => %s" %(response.code, path)
response.close()
except urllib2.HTTPError as error:
#print "Error " + str(error)
pass
for i in range(threads):
print "Spawning thread: %d"%i
t = threading.Thread(target=test_remote)
t.start()