forked from viper-framework/viper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
api.py
executable file
·182 lines (143 loc) · 4.73 KB
/
api.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
#!/usr/bin/env python
# This file is part of Viper - https://github.com/botherder/viper
# See the file 'LICENSE' for copying permission.
import os
import json
import copy
import argparse
import tempfile
from bottle import route, request, response, run
from bottle import HTTPError
from viper.common.objects import File
from viper.core.storage import store_sample, get_sample_path
from viper.core.database import Database
from viper.core.session import __sessions__
from viper.core.plugins import __modules__
from viper.core.project import __project__
db = Database()
def jsonize(data):
return json.dumps(data, sort_keys=False, indent=4)
@route('/test', method='GET')
def test():
return jsonize({'message' : 'test'})
@route('/file/add', method='POST')
def add_file():
tags = request.forms.get('tags')
upload = request.files.get('file')
tf = tempfile.NamedTemporaryFile()
tf.write(upload.file.read())
tf.flush()
tf_obj = File(tf.name)
tf_obj.name = upload.filename
new_path = store_sample(tf_obj)
success = False
if new_path:
# Add file to the database.
success = db.add(obj=tf_obj, tags=tags)
if success:
return jsonize({'message' : 'added'})
else:
return HTTPError(500, 'Unable to store file')
@route('/file/get/<file_hash>', method='GET')
def get_file(file_hash):
key = ''
if len(file_hash) == 32:
key = 'md5'
elif len(file_hash) == 64:
key = 'sha256'
else:
return HTTPError(400, 'Invalid hash format (use md5 or sha256)')
db = Database()
rows = db.find(key=key, value=file_hash)
if not rows:
raise HTTPError(404, 'File not found in the database')
path = get_sample_path(rows[0].sha256)
if not path:
raise HTTPError(404, 'File not found in the repository')
response.content_length = os.path.getsize(path)
response.content_type = 'application/octet-stream; charset=UTF-8'
data = ''
for chunk in File(path).get_chunks():
data += chunk
return data
@route('/file/find', method='POST')
def find_file():
def details(row):
tags = []
for tag in row.tag:
tags.append(tag.tag)
entry = dict(
id=row.id,
name=row.name,
type=row.type,
size=row.size,
md5=row.md5,
sha1=row.sha1,
sha256=row.sha256,
sha512=row.sha512,
crc32=row.crc32,
ssdeep=row.ssdeep,
created_at=row.created_at.__str__(),
tags=tags
)
return entry
for entry in ['md5', 'sha256', 'ssdeep', 'tag', 'name', 'all']:
value = request.forms.get(entry)
if value:
key = entry
break
if not value:
raise HTTPError(400, 'Invalid search term')
rows = db.find(key=key, value=value)
results = []
for row in rows:
entry = details(row)
results.append(entry)
return jsonize(results)
@route('/tags/list', method='GET')
def list_tags():
rows = db.list_tags()
results = []
for row in rows:
results.append(row.tag)
return jsonize(results)
@route('/file/tags/add', method='POST')
def add_tags():
tags = request.forms.get('tags')
for entry in ['md5', 'sha256', 'ssdeep', 'tag', 'name', 'all']:
value = request.forms.get(entry)
if value:
key = entry
break
db = Database()
rows = db.find(key=key, value=value)
if not rows:
raise HTTPError(404, 'File not found in the database')
for row in rows:
malware_sha256=row.sha256
db.add_tags(malware_sha256, tags)
return jsonize({'message' : 'added'})
@route('/modules/run', method='POST')
def run_module():
project = request.forms.get('project')
if project:
__project__.open(project)
sha256 = request.forms.get('sha256')
if sha256:
file_path = get_sample_path(sha256)
if file_path:
__sessions__.new(file_path)
module_name = request.forms.get('module')
if module_name in __modules__:
module = __modules__[module_name]['obj']()
module.run()
module_output = copy.deepcopy(module.output)
del(module.output[:])
if module_output:
return jsonize(dict(project=project, module=module_name, sha256=sha256, output=module_output))
if __name__ == '__main__':
parser = argparse.ArgumentParser()
parser.add_argument('-H', '--host', help='Host to bind the API server on', default='localhost', action='store', required=False)
parser.add_argument('-p', '--port', help='Port to bind the API server on', default=8080, action='store', required=False)
args = parser.parse_args()
run(host=args.host, port=args.port)