forked from nahamsec/JSParser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
handler.py
252 lines (199 loc) · 7.72 KB
/
handler.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
from __future__ import print_function
import tornado.ioloop, tornado.web, tornado.autoreload
from tornado.escape import json_encode, json_decode
import safeurl, types, sys, re, mimetypes, glob, jsbeautifier, urlparse, pycurl
import calendar, time, datetime
from netaddr import *
from collections import defaultdict
from bs4 import BeautifulSoup
from cgi import escape
#------------------------------------------------------------
# Base / Status Code Handlers
#------------------------------------------------------------
class BaseHandler(tornado.web.RequestHandler):
def get_current_user(self):
return []
def write_error(self, status_code, **kwargs):
if status_code in [403, 404, 500, 503]:
self.render(
'templates/error.html',
status_code = status_code
)
class ErrorHandler(tornado.web.ErrorHandler, BaseHandler):
# override to prevent errors
def get_current_user(self):
return
pass
#------------------------------------------------------------
# /
#------------------------------------------------------------
class MainHandler(BaseHandler):
def initialize(self):
return
def get(self):
self.render(
'templates/index.html',
)
#------------------------------------------------------------
# /about
#------------------------------------------------------------
class ViewAboutHandler(BaseHandler):
def initialize(self):
return
def get(self):
self.render(
'templates/about.html',
)
#------------------------------------------------------------
# /parse/ajax
#------------------------------------------------------------
class ViewParseAjaxHandler(BaseHandler):
def initialize(self):
return
def find_str(self, s, char):
index = 0
if char in s:
c = char[0]
for ch in s:
if ch == c:
if s[index:index+len(char)] == char:
return index
index += 1
return -1
def findEntireLine(self, contents, str):
lineNum = 0
for item in contents.split("\n"):
if str in item:
linkPos = self.find_str(item, str)
return item,lineNum,linkPos
lineNum = lineNum+1
def parseForLinks(self, contents):
discoveredLinks = []
outputLinks = []
# ugh lol
regex = r"[^/][`'\"]([\/][a-zA-Z0-9_.-]+)+(?!([gimuy]*[,;\s])|\/\2)"
links = re.finditer(regex, contents)
for link in links:
linkStr = link.group(0)
# discoveredLinks list to avoid dupes and complex dupe checks
if linkStr not in discoveredLinks:
# get the entire line, line number, and link position
entireLine,lineNum,linkPos = self.findEntireLine(contents, linkStr)
discoveredLinks.append(linkStr)
outputLinks.append({
"line": entireLine,
"link": linkStr,
"lineNum": lineNum,
"linkPos": linkPos
})
return outputLinks
def getFormattedTimestamp(self):
d = datetime.datetime.now()
formatted = "{}_{}_{}_{}-{}".format(d.month, d.day, d.year, d.hour, d.minute)
return formatted
def formatHTMLOutput(self, html):
output = output + html
return output
def beautifyJS(self, content):
return jsbeautifier.beautify(content)
def isLongLine(self, line):
if len(line)>1000:
return True
return False
def fileRoutine(self, url, content):
html = ""
# beautify the JS for cleaner parsing
# note: this can be slow against large JS files and can lead to failure
prettyContent = self.beautifyJS(content)
# parse all the links out
parsedLinks = self.parseForLinks(prettyContent)
# if we have results, start building HTML
if parsedLinks:
print("Discovered {} links in {}".format(len(parsedLinks), url))
# generate HTML output
# html = html+'<h1>{}</h1><div class="file">'.format(url)
html = html+'<div class="file">'
for link in parsedLinks:
html = html+"<h2>{}</h2>".format(link["link"][1:])
# Get positions for highlighting
startPos = link["linkPos"]
endPos = link["linkPos"]+len(link["link"])
# highlight the link
if self.isLongLine(link["line"]):
highlightedLine = '...{}<span class="highlight">{}</span>{}...'.format(escape(link["line"][startPos-100:startPos]), link["link"], escape(link["line"][endPos:100]))
else:
highlightedLine = '{}<span class="highlight">{}</span>{}'.format(escape(link["line"][:startPos]), link["link"], escape(link["line"][endPos:]))
# generate the link HTML
html = html+'<div class="link">{}: {}</div>'.format(link["lineNum"], highlightedLine)
html = html+'</div>'
return html
def fetchURL(self, url, headers=[]):
sc = safeurl.SafeURL()
if headers:
newHeaders = []
try:
for header in json_decode(headers):
try:
header = header.split(":")
# pop the first item off in case there are multiple :
key = header.pop(0).strip()
val = ":".join(header).strip()
newHeaders.append("{0}: {1}".format(key, val))
# ignore if invalid format (lacks :)
except:
continue
# ignore if not json
except:
print("ignoring custom headers")
if newHeaders:
sc._handle.setopt(pycurl.HTTPHEADER, newHeaders)
res = sc.execute(url)
return res
def parseLinks(self, url, headers=[]):
html = ""
file = self.fetchURL(url, headers)
html = html + self.fileRoutine(url, file)
return html
def post(self):
error = False
errorMsg = ""
url = self.get_argument("url")
headers = self.get_argument("headers", [])
if error == False:
data = self.parseLinks(url, headers)
# set content-type
self.set_header('Content-Type', 'application/json')
# output
self.write(json_encode({
"url": url,
"output": data,
}))
else:
self.write("error")
#------------------------------------------------------------
# Main
#------------------------------------------------------------
portNum = int(sys.argv[sys.argv.index("-p")+1]) if "-p" in sys.argv else 8008
# Application Settings
settings = {
'default_handler_class': ErrorHandler,
'default_handler_args': dict(status_code=404),
}
# Endpoints
urls = [
(r"/", MainHandler),
(r"/images/(.*)", tornado.web.StaticFileHandler, { "path": "images/" }),
(r"/js/(.*)", tornado.web.StaticFileHandler, { "path": "js/" }),
(r"/css/(.*)", tornado.web.StaticFileHandler, { "path": "css/" }),
(r"/fonts/(.*)", tornado.web.StaticFileHandler, { "path": "fonts/" }),
(r"/parse/ajax", ViewParseAjaxHandler),
(r"/about", ViewAboutHandler),
]
application = tornado.web.Application(
urls,
debug = True,
**settings
)
if __name__ == "__main__":
application.listen(portNum)
tornado.ioloop.IOLoop.current().start()