forked from frennkie/viper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
viper-api
executable file
·454 lines (376 loc) · 13.1 KB
/
viper-api
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
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# This file is part of Viper - https://github.com/viper-framework/viper
# See the file 'LICENSE' for copying permission.
import os
import bottle
import time
import argparse
import tempfile
# Added to allow zip file uploads
import shutil
import contextlib
from zipfile import ZipFile
from bottle import route, request, response
from viper.common import network
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__
from viper.core.ui.commands import Commands
db = Database()
app = application = bottle.default_app()
web_port = 8080
@route('/test', method='GET')
def test():
return {'message': 'test'}
@route('/file/add', method='POST')
def add_file():
tags = request.forms.get('tags')
notes_body = request.forms.get('notes_body')
notes_title = request.forms.get('notes_title')
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
# Added to support the ability to provide zip file password
if request.headers.get('compression') == 'zip' or request.headers.get('compression') == 'ZIP':
with upload_temp() as temp_dir:
with ZipFile(tf.name) as zf:
zf.extractall(temp_dir, pwd=request.headers.get('compression_password'))
stored_files = []
for root, dirs, files in os.walk(temp_dir, topdown=False):
for name in files:
if not name == upload.filename:
tf_obj = File(os.path.join(root, name))
new_path = store_sample(tf_obj)
success = False
if new_path:
success = db.add(obj=tf_obj, tags=tags)
if success:
stored_files.append({"filename": name, "sha256": tf_obj.sha256, "message": "added"})
else:
stored_files.append({"filename": name, "sha256": "", "message": "not added"})
if stored_files:
# return jsonize({'message': 'Files added: %s' % ','.join(stored_files)})
return {'files': stored_files}
else:
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, notes_body=notes_body, notes_title=notes_title)
if success:
return {'message': 'added', 'sha256': tf_obj.sha256}
else:
response.status = 500
return {'message': 'Unable to store file'}
@app.route('/file/add_url', method='POST')
def addurl():
url = request.forms.get('url')
tags = request.forms.get('tags') or ""
tags = "url," + tags
if request.forms.get("tor"):
upload = network.download(url, tor=True)
else:
upload = network.download(url, tor=False)
if upload is None:
response.status = 500
return {'message': 'server can\'t download from URL'}
# Set Project
tf = tempfile.NamedTemporaryFile()
tf.write(upload)
if tf is None:
response.status = 500
return {'message': 'server can\'t download from URL'}
tf.flush()
tf_obj = File(tf.name)
tf_obj.name = tf_obj.sha256
new_path = store_sample(tf_obj)
success = False
if new_path:
# Add file to the database.
db = Database()
success = db.add(obj=tf_obj, tags=tags)
if success:
return {'message': 'added', 'sha256': tf_obj.sha256}
else:
response.status = 500
return {'message': 'Unable to store file, alredy exists.', 'sha256': tf_obj.sha256}
@route('/file/get/<file_hash>', method='GET')
def get_file(file_hash):
if len(file_hash) == 32:
key = 'md5'
elif len(file_hash) == 64:
key = 'sha256'
else:
response.code = 400
return {'message': 'Invalid hash format (use md5 or sha256)'}
db = Database()
rows = db.find(key=key, value=file_hash)
if not rows:
response.code = 404
return {'message': 'File not found in the database'}
path = get_sample_path(rows[0].sha256)
if not path:
response.code = 404
return {'message': '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/delete/<file_hash>', method='GET')
def delete_file(file_hash):
success = False
key = ''
if len(file_hash) == 32:
key = 'md5'
elif len(file_hash) == 64:
key = 'sha256'
else:
response.code = 400
return {'message': 'Invalid hash format (use md5 or sha256)'}
db = Database()
rows = db.find(key=key, value=file_hash)
if not rows:
response.code = 404
return {'message': 'File not found in the database'}
if rows:
malware_id = rows[0].id
path = get_sample_path(rows[0].sha256)
if db.delete_file(malware_id):
success = True
else:
response.code = 404
return {'message': 'File not found in repository'}
path = get_sample_path(rows[0].sha256)
if not path:
response.code = 404
return {'message': 'File not found in file system'}
else:
try:
os.remove(path)
success = True
except OSError:
success = False
if success:
return {'message': 'deleted'}
else:
response.code = 500
return {'message': 'Unable to delete file'}
@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', 'note', 'mime', 'all', 'latest']:
value = request.forms.get(entry)
if value:
key = entry
break
if not value:
response.code = 400
return {'message': 'Invalid search term'}
# Get the scope of the search
project_search = request.forms.get('project')
projects = []
results = {}
if project_search and project_search == 'all':
# Get list of project paths
projects_path = os.path.join(os.getcwd(), 'projects')
if os.path.exists(projects_path):
for name in os.listdir(projects_path):
projects.append(name)
projects.append('../')
# Specific Project
elif project_search:
projects.append(project_search)
# Primary
else:
projects.append('../')
# Search each Project in the list
for project in projects:
__project__.open(project)
db = Database()
proj_results = []
rows = db.find(key=key, value=value)
for row in rows:
if project == '../':
project = 'default'
proj_results.append(details(row))
results[project] = proj_results
return {"results": results}
@route('/tags/list', method='GET')
def list_tags():
rows = db.list_tags()
results = []
for row in rows:
results.append(row.tag)
return {"results": results}
@route('/file/tags/add', method='POST')
def add_tags():
tags = request.forms.get('tags')
for entry in ['md5', 'sha256', 'ssdeep', 'tag', 'name', 'all', 'latest']:
value = request.forms.get(entry)
if value:
key = entry
break
db = Database()
rows = db.find(key=key, value=value)
if not rows:
response.code = 404
return {'message': 'File not found in the database'}
for row in rows:
malware_sha256 = row.sha256
db.add_tags(malware_sha256, tags)
return {'message': 'added'}
@route('/modules/run', method='POST')
def run_module():
project = request.forms.get('project')
sha256 = request.forms.get('sha256')
cmd_line = request.forms.get('cmdline')
if project:
__project__.open(project)
else:
__project__.open('../')
if sha256:
file_path = get_sample_path(sha256)
if file_path:
__sessions__.new(file_path)
if not cmd_line:
response.code = 404
return {'message': 'Invalid command line'}
results = module_cmdline(cmd_line, sha256)
__sessions__.close()
return {"results": results}
def module_cmdline(cmd_line, sha256):
# TODO: refactor this function, it has some ugly code.
command_outputs = []
cmd = Commands()
split_commands = cmd_line.split(';')
for split_command in split_commands:
split_command = split_command.strip()
if not split_command:
continue
args = []
# Split words by white space.
words = split_command.split()
# First word is the root command.
root = words[0]
# If there are more words, populate the arguments list.
if len(words) > 1:
args = words[1:]
try:
if root in cmd.commands:
cmd.commands[root]['obj'](*args)
if cmd.output:
command_outputs += cmd.output
del(cmd.output[:])
elif root in __modules__:
# if prev commands did not open a session open one
# on the current file
if sha256:
path = get_sample_path(sha256)
__sessions__.new(path)
module = __modules__[root]['obj']()
module.set_commandline(args)
module.run()
command_outputs += module.output
print(type(module.output))
del(module.output[:])
else:
command_outputs.append({'message': '{0} is not a valid command'.format(cmd_line)})
except Exception:
command_outputs.append({'message': 'Unable to complete the command: {0}'.format(cmd_line)})
__sessions__.close()
return command_outputs
@route('/projects/list', method='GET')
def list_projects():
projects_path = os.path.join(os.getcwd(), 'projects')
if not os.path.exists(projects_path):
response.code = 404
return {'message': 'No projects found'}
rows = []
for project in os.listdir(projects_path):
project_path = os.path.join(projects_path, project)
rows.append([project, time.ctime(os.path.getctime(project_path))])
return {"results": rows}
@route('/file/notes/<action>', method='POST')
def add_notes(action):
note_title = request.forms.get('title')
note_body = request.forms.get('body')
note_sha = request.forms.get('sha256')
note_id = request.forms.get('id')
# Create New
if action == 'add':
if note_title and note_body:
db.add_note(note_sha, note_title, note_body)
return {'message': 'Note added'}
else:
return {'message': 'Missing note_title and / or note_body'}
# Delete
elif action == 'delete':
if note_id:
db.delete_note(note_id)
return {'message': 'deleted'}
else:
return {'message': 'missing note_id'}
# Update
elif action == 'update':
if note_id and note_body:
db.edit_note(note_id, note_body)
return {'message': 'Note updated'}
# List
elif action == 'view':
note_list = {}
malware = db.find(key='sha256', value=note_sha)
if malware:
notes = malware[0].note
if notes:
for note in notes:
note_list[note.id] = {'title': note.title, 'body': note.body}
return {'message': note_list}
else:
return {'message': 'no sample found'}
else:
return {'message': 'no action given'}
return {'message': 'Unable to complete action'}
# Added to support zip file uploads
# context manager for file uploader
@contextlib.contextmanager
def upload_temp():
temp_dir = tempfile.mkdtemp()
yield temp_dir
shutil.rmtree(temp_dir)
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', action='store', required=False)
args = parser.parse_args()
if args.port:
web_port = args.port
app.run(host=args.host, port=web_port)