This repository has been archived by the owner on Jun 7, 2023. It is now read-only.
forked from jesparza/peepdf
-
Notifications
You must be signed in to change notification settings - Fork 2
/
JSAnalysis.py
282 lines (250 loc) · 11 KB
/
JSAnalysis.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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
#
# peepdf is a tool to analyse and modify PDF files
# http://peepdf.eternal-todo.com
# By Jose Miguel Esparza <jesparza AT eternal-todo.com>
#
# Copyright (C) 2011-2017 Jose Miguel Esparza
#
# This file is part of peepdf.
#
# peepdf is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# peepdf is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with peepdf. If not, see <http://www.gnu.org/licenses/>.
#
'''
This module contains some functions to analyse Javascript code inside the PDF file
'''
import jsbeautifier
import os
import re
import sys
import traceback
from .PDFUtils import unescapeHTMLEntities, escapeString
try:
import PyV8
JS_MODULE = True
class Global(PyV8.JSClass):
evalCode = ''
def evalOverride(self, expression):
self.evalCode += '\n\n// New evaluated code\n' + expression
return
except:
JS_MODULE = False
errorsFile = 'errors.txt'
newLine = os.linesep
reJSscript = '<script[^>]*?contentType\s*?=\s*?[\'"]application/x-javascript[\'"][^>]*?>(.*?)</script>'
preDefinedCode = 'var app = this;'
def analyseJS(code, context=None, manualAnalysis=False):
'''
Hooks the eval function and search for obfuscated elements in the Javascript code
@param code: The Javascript code (string)
@return: List with analysis information of the Javascript code: [JSCode,unescapedBytes,urlsFound,errors,context], where
JSCode is a list with the several stages Javascript code,
unescapedBytes is a list with the parameters of unescape functions,
urlsFound is a list with the URLs found in the unescaped bytes,
errors is a list of errors,
context is the context of execution of the Javascript code.
'''
errors = []
jsCode = []
unescapedBytes = []
urlsFound = []
try:
code = unescapeHTMLEntities(code)
scriptElements = re.findall(reJSscript, code, re.DOTALL | re.IGNORECASE)
if scriptElements:
code = ''
for scriptElement in scriptElements:
code += scriptElement + '\n\n'
code = jsbeautifier.beautify(code)
jsCode.append(code)
if code is not None and JS_MODULE and not manualAnalysis:
if context is None:
context = PyV8.JSContext(Global())
context.enter()
# Hooking the eval function
context.eval('eval=evalOverride')
#context.eval(preDefinedCode)
while True:
originalCode = code
try:
context.eval(code)
evalCode = context.eval('evalCode')
evalCode = jsbeautifier.beautify(evalCode)
if evalCode != '' and evalCode != code:
code = evalCode
jsCode.append(code)
else:
break
except:
error = str(sys.exc_info()[1])
open('jserror.log', 'ab').write(error + newLine)
errors.append(error)
break
if code != '':
escapedVars = re.findall('(\w*?)\s*?=\s*?(unescape\((.*?)\))', code, re.DOTALL)
for var in escapedVars:
bytes = var[2]
if bytes.find('+') != -1 or bytes.find('%') == -1:
varContent = getVarContent(code, bytes)
if len(varContent) > 150:
ret = unescape(varContent)
if ret[0] != -1:
bytes = ret[1]
urls = re.findall('https?://.*$', bytes, re.DOTALL)
if bytes not in unescapedBytes:
unescapedBytes.append(bytes)
for url in urls:
if url not in urlsFound:
urlsFound.append(url)
else:
bytes = bytes[1:-1]
if len(bytes) > 150:
ret = unescape(bytes)
if ret[0] != -1:
bytes = ret[1]
urls = re.findall('https?://.*$', bytes, re.DOTALL)
if bytes not in unescapedBytes:
unescapedBytes.append(bytes)
for url in urls:
if url not in urlsFound:
urlsFound.append(url)
except:
traceback.print_exc(file=open(errorsFile, 'a'))
errors.append('Unexpected error in the JSAnalysis module!!')
finally:
for js in jsCode:
if js is None or js == '':
jsCode.remove(js)
return [jsCode, unescapedBytes, urlsFound, errors, context]
def getVarContent(jsCode, varContent):
'''
Given the Javascript code and the content of a variable this method tries to obtain the real value of the variable, cleaning expressions like "a = eval; a(js_code);"
@param jsCode: The Javascript code (string)
@param varContent: The content of the variable (string)
@return: A string with real value of the variable
'''
clearBytes = ''
varContent = varContent.replace('\n', '')
varContent = varContent.replace('\r', '')
varContent = varContent.replace('\t', '')
varContent = varContent.replace(' ', '')
parts = varContent.split('+')
for part in parts:
if re.match('["\'].*?["\']', part, re.DOTALL):
clearBytes += part[1:-1]
else:
part = escapeString(part)
varContent = re.findall(part + '\s*?=\s*?(.*?)[,;]', jsCode, re.DOTALL)
if varContent:
clearBytes += getVarContent(jsCode, varContent[0])
return clearBytes
def isJavascript(content):
'''
Given an string this method looks for typical Javscript strings and try to identify if the string contains Javascrit code or not.
@param content: A string
@return: A boolean, True if it seems to contain Javascript code or False in the other case
'''
jsStrings = ['var ', ';', ')', '(', 'function ', '=', '{', '}', 'if ', 'else', 'return', 'while ', 'for ',
',', 'eval']
keyStrings = [';', '(', ')']
reVarInit = 'var [\w0-9]+\s*?='
reFunctionCall = '[\w0-9]+\s*?\(.*?\)\s*?;'
stringsFound = []
limit = 15
minDistinctStringsFound = 4
minRatio = 10
results = 0
length = len(content)
smallScriptLength = 100
if re.findall(reJSscript, content, re.DOTALL | re.IGNORECASE):
return True
for char in content:
if (ord(char) < 32 and char not in ['\n', '\r', '\t', '\f', '\x00']) or ord(char) >= 127:
return False
for string in jsStrings:
cont = content.count(string)
results += cont
if cont > 0 and string not in stringsFound:
stringsFound.append(string)
elif cont == 0 and string in keyStrings:
return False
numDistinctStringsFound = len(stringsFound)
ratio = (results*100.0)/length
if (results > limit and numDistinctStringsFound >= minDistinctStringsFound) or \
(length < smallScriptLength and ratio > minRatio):
return True
else:
return False
def searchObfuscatedFunctions(jsCode, function):
'''
Search for obfuscated functions in the Javascript code
@param jsCode: The Javascript code (string)
@param function: The function name to look for (string)
@return: List with obfuscated functions information [functionName,functionCall,containsReturns]
'''
obfuscatedFunctionsInfo = []
if jsCode != None:
match = re.findall('\W('+function+'\s{0,5}?\((.*?)\)\s{0,5}?;)', jsCode, re.DOTALL)
if match:
for m in match:
if re.findall('return', m[1], re.IGNORECASE):
obfuscatedFunctionsInfo.append([function, m, True])
else:
obfuscatedFunctionsInfo.append([function, m, False])
obfuscatedFunctions = re.findall('\s*?((\w*?)\s*?=\s*?'+function+')\s*?;', jsCode, re.DOTALL)
for obfuscatedFunction in obfuscatedFunctions:
obfuscatedElement = obfuscatedFunction[1]
obfuscatedFunctionsInfo += searchObfuscatedFunctions(jsCode, obfuscatedElement)
return obfuscatedFunctionsInfo
def unescape(escapedBytes, str = True):
'''
This method unescapes the given string
@param escapedBytes: A string to unescape
@return: A tuple (status,statusContent), where statusContent is an unescaped string in case status = 0 or an error in case status = -1
'''
#TODO: modify to accept a list of escaped strings?
unescapedBytes = ''
if str:
unicodePadding = '\x00'
else:
unicodePadding = ''
try:
if escapedBytes.lower().find('%u') != -1 or escapedBytes.lower().find('\\u') != -1 or escapedBytes.find('%') != -1:
if escapedBytes.lower().find('\\u') != -1:
splitBytes = escapedBytes.split('\\')
else:
splitBytes = escapedBytes.split('%')
for i in range(len(splitBytes)):
splitByte = splitBytes[i]
if splitByte == '':
continue
if len(splitByte) > 4 and re.match('u[0-9a-f]{4}', splitByte[:5], re.IGNORECASE):
unescapedBytes += chr(int(splitByte[3]+splitByte[4], 16))+chr(int(splitByte[1]+splitByte[2],16))
if len(splitByte) > 5:
for j in range(5,len(splitByte)):
unescapedBytes += splitByte[j] + unicodePadding
elif len(splitByte) > 1 and re.match('[0-9a-f]{2}', splitByte[:2], re.IGNORECASE):
unescapedBytes += chr(int(splitByte[0]+splitByte[1], 16)) + unicodePadding
if len(splitByte) > 2:
for j in range(2,len(splitByte)):
unescapedBytes += splitByte[j] + unicodePadding
else:
if i != 0:
unescapedBytes += '%' + unicodePadding
for j in range(len(splitByte)):
unescapedBytes += splitByte[j] + unicodePadding
else:
unescapedBytes = escapedBytes
except:
return (-1, 'Error while unescaping the bytes')
return (0, unescapedBytes)