-
Notifications
You must be signed in to change notification settings - Fork 226
/
app.py
203 lines (166 loc) · 6.53 KB
/
app.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
# MIT License
# Copyright (c) 2018 NCC Group
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
from houseGlobal import house_global, app, socketio, random_token
from houseStatic import *
from houseUtil import *
from houseSock import *
from sys import argv
import uuid, flask_login
import logging
log = logging.getLogger('werkzeug')
log.setLevel(logging.ERROR)
@app.route('/')
def hello():
if str(request.remote_addr) == "127.0.0.1":
# no dns rebinding
return refresh()
else:
return ''
@app.route('/messages', methods=['GET'])
def message():
return json.dumps(house_global.messages)
@app.route('/monitor', methods=['GET'])
def monitor():
return json.dumps(house_global.monitor_message)
@app.route('/AutoRefresh', methods=['GET'])
def autoRefresh():
return str(house_global.monitor_refresh)
@app.route('/enum_messages', methods=['GET'])
def enum_message():
return ''.join(str(e) for e in house_global.enum_messages)
@app.route('/hook_conf', methods=['GET'])
def hook_config():
return json.dumps(house_global.hook_conf)
@app.route('/monitor_conf', methods=['GET'])
def monitor_config():
return json.dumps(house_global.monitor_conf)
@app.route('/preload_conf', methods=['GET'])
def preload_config():
return json.dumps(house_global.preload_conf)
# For debugging purpose
@app.route('/script', methods=['GET'])
def getDaScript():
return house_global.script_to_load
@app.route('/hook_script', methods=['GET'])
def getHookScript():
try:
with open("./cache/current/hook_script.js",'r') as f:
house_global.hook_script = f.read()
except Exception as e:
house_global.hook_script = str(e)
if checkok():
return house_global.hook_script
else:
return "Please double check you have input the packagename and hooks info"
@app.route('/hook_script_mini', methods=['GET'])
def getHookScriptMini():
try:
with open("./cache/current/hook_script_mini.js",'r') as f:
house_global.hook_script_mini = f.read()
except Exception as e:
house_global.hook_script_mini = str(e)
if checkok():
return house_global.hook_script_mini
else:
return "Please double check you have input the packagename and hooks info"
@app.route('/enum_script', methods=['GET'])
def getEnumScript():
option = house_global.enum_option
build_enum_script(option, house_global.enum_class, house_global.enum_class_pattern)
return house_global.enum_script_to_load
@app.route('/package', methods=['GET'])
def getpkg():
return house_global.packagename
@app.route('/hook_clear', methods=['GET'])
def hook_clear():
house_global.hooks_list = []
update_conf()
return refresh()
@app.route('/hook', methods=['POST'])
def hook():
house_global.device = frida.get_usb_device()
class_name = str(request.form.get('classname'))
method_name = str(request.form.get('methodname'))
if (method_name != 'None') & (class_name != 'None'):
hook_dict = {"classname": class_name, "methodname": method_name}
house_global.hooks_list.append(hook_dict)
update_conf()
house_global.script_to_load = ''
return refresh()
@app.route('/load_script', methods=['POST'])
def loadscript():
house_global.device = frida.get_usb_device()
house_global.script_to_load = str(request.form.get('script'))
load_script()
return refresh()
def main():
print ("""
___ ___
/ | \ ____ __ __ ______ ____
/ ~ \/ _ \| | \/ ___// __ \
\ Y ( <_> ) | /\___ \\ ___/
\___|_ / \____/|____//____ >\___ >
\/ House \/ \/
Dynamic Mobile Analysis Tool
Contact: [email protected]
Communications will happen over USB, make sure have your android device plugged in.
""")
init_conf()
init_cache()
if house_global.packagename == "":
with open('./config/hook_conf.json','r') as f:
hook_conf_rd = f.read()
if hook_conf_rd != "":
try:
house_global.hook_conf = json.loads(hook_conf_rd)
except Exception as e:
print (stylize("[!]hook_conf invalid format",Error))
with open('./config/enum_conf.json','r') as f:
enum_conf_rd = f.read()
if enum_conf_rd != "":
try:
house_global.enum_conf = json.loads(enum_conf_rd)
except Exception as e:
print (stylize("[!]enum_conf invalid format",Error))
with open('./config/intercept_conf.json','r') as f:
intercept_conf_rd = f.read()
if intercept_conf_rd != "":
try:
house_global.inspect_conf = json.loads(intercept_conf_rd)
except Exception as e:
print (stylize("[!]intercept_conf invalid format",Error))
with open('./config/monitor_conf.json','r') as f:
monitor_conf_rd = f.read()
if monitor_conf_rd != "":
try:
house_global.monitor_conf = json.loads(monitor_conf_rd)
except Exception as e:
print (stylize("[!]monitor_conf invalid format",Error))
init_settings()
host = "127.0.0.1"
if len(argv) > 1:
port = int(argv[1])
else:
port = 8000
print (stylize("[+] House running at http://127.0.0.1:{}".format(port), Info))
app.jinja_env.auto_reload = True
app.config['TEMPLATES_AUTO_RELOAD'] = True
socketio.run(app, host = host, port = port, debug=False)
if __name__ == '__main__':
# build_monitor_script()
main()