-
Notifications
You must be signed in to change notification settings - Fork 451
/
Copy pathabstracts.py
1648 lines (1405 loc) · 61.8 KB
/
abstracts.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
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
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# encoding: utf-8
# Copyright (C) 2010-2015 Cuckoo Foundation, Optiv, Inc. ([email protected]).
# This file is part of Cuckoo Sandbox - http://www.cuckoosandbox.org
# See the file 'docs/LICENSE' for copying permission.
from __future__ import absolute_import
from __future__ import print_function
import os
import socket
import dns.resolver
import requests
import datetime
import threading
import logging
import time
from urllib.parse import urlparse
try:
import re2 as re
except ImportError:
import re
import xml.etree.ElementTree as ET
from lib.cuckoo.common.config import Config
from lib.cuckoo.common.constants import CUCKOO_ROOT
from lib.cuckoo.common.exceptions import CuckooCriticalError
from lib.cuckoo.common.exceptions import CuckooMachineError
from lib.cuckoo.common.exceptions import CuckooOperationalError
from lib.cuckoo.common.exceptions import CuckooReportError
from lib.cuckoo.common.exceptions import CuckooDependencyError
from lib.cuckoo.common.objects import Dictionary
from lib.cuckoo.common.utils import create_folder
from lib.cuckoo.core.database import Database
from django.core.validators import URLValidator
log = logging.getLogger(__name__)
cfg = Config()
repconf = Config("reporting")
machinery_conf = Config(cfg.cuckoo.machinery)
try:
import libvirt
HAVE_LIBVIRT = True
except ImportError:
HAVE_LIBVIRT = False
try:
import tldextract
HAVE_TLDEXTRACT = True
except ImportError:
HAVE_TLDEXTRACT = False
if repconf.mitre.enabled:
try:
from pyattck import Attck
from pyattck.version import __version_info__ as pyattck_version
if pyattck_version[0] == 2:
attack_file = repconf.mitre.get("local_file", False)
if attack_file:
attack_file = os.path.join(CUCKOO_ROOT, attack_file)
else:
attack_file = False
mitre = Attck(dataset_json=attack_file)
HAVE_MITRE = True
else:
HAVE_MITRE = False
log.error("Missed pyattck dependency: pip3 install pyattck>=2.0.2")
except (ImportError, ModuleNotFoundError):
log.error("Missed pyattck dependency: pip3 install pyattck>=2.0.2")
HAVE_MITRE = False
else:
HAVE_MITRE = False
myresolver = dns.resolver.Resolver()
myresolver.timeout = 5.0
myresolver.lifetime = 5.0
myresolver.domain = dns.name.Name("google-public-dns-a.google.com")
myresolver.nameserver = ["8.8.8.8"]
class Auxiliary(object):
"""Base abstract class for auxiliary modules."""
def __init__(self):
self.task = None
self.machine = None
self.options = None
self.db = Database()
def set_task(self, task):
self.task = task
def set_machine(self, machine):
self.machine = machine
def set_options(self, options):
self.options = options
def start(self):
raise NotImplementedError
def stop(self):
raise NotImplementedError
class Machinery(object):
"""Base abstract class for machinery modules."""
# Default label used in machinery configuration file to supply virtual
# machine name/label/vmx path. Override it if you dubbed it in another
# way.
LABEL = "label"
def __init__(self):
self.module_name = ""
self.options = None
# Database pointer.
self.db = Database()
# Machine table is cleaned to be filled from configuration file
# at each start.
self.db.clean_machines()
def set_options(self, options):
"""Set machine manager options.
@param options: machine manager options dict.
"""
self.options = options
def initialize(self, module_name):
"""Read, load, and verify machines configuration.
@param module_name: module name.
"""
# Load.
self._initialize(module_name)
# Run initialization checks.
self._initialize_check()
def _initialize(self, module_name):
"""Read configuration.
@param module_name: module name.
"""
self.module_name = module_name
mmanager_opts = self.options.get(module_name)
if not isinstance(mmanager_opts["machines"], list):
mmanager_opts["machines"] = mmanager_opts["machines"].strip().split(",")
for machine_id in mmanager_opts["machines"]:
try:
machine_opts = self.options.get(machine_id.strip())
machine = Dictionary()
machine.id = machine_id.strip()
machine.label = machine_opts[self.LABEL]
machine.platform = machine_opts["platform"]
machine.tags = machine_opts.get("tags")
machine.ip = machine_opts["ip"]
# If configured, use specific network interface for this
# machine, else use the default value.
if machine_opts.get("interface"):
machine.interface = machine_opts["interface"]
else:
machine.interface = mmanager_opts.get("interface")
# If configured, use specific snapshot name, else leave it
# empty and use default behaviour.
machine.snapshot = machine_opts.get("snapshot")
if machine.get("resultserver_ip"):
ip = machine["resultserver_ip"]
else:
ip = cfg.resultserver.ip
if machine.get("resultserver_port"):
port = machine["resultserver_port"]
else:
# The ResultServer port might have been dynamically changed,
# get it from the ResultServer singleton. Also avoid import
# recursion issues by importing ResultServer here.
from lib.cuckoo.core.resultserver import ResultServer
port = ResultServer().port
ip = machine_opts.get("resultserver_ip", ip)
port = machine_opts.get("resultserver_port", port)
machine.resultserver_ip = ip
machine.resultserver_port = port
# Strip parameters.
for key, value in machine.items():
if value and isinstance(value, str):
machine[key] = value.strip()
self.db.add_machine(
name=machine.id,
label=machine.label,
ip=machine.ip,
platform=machine.platform,
tags=machine.tags,
interface=machine.interface,
snapshot=machine.snapshot,
resultserver_ip=ip,
resultserver_port=port,
)
except (AttributeError, CuckooOperationalError) as e:
log.warning("Configuration details about machine %s " "are missing: %s", machine_id.strip(), e)
continue
def _initialize_check(self):
"""Runs checks against virtualization software when a machine manager
is initialized.
@note: in machine manager modules you may override or superclass
his method.
@raise CuckooMachineError: if a misconfiguration or a unkown vm state
is found.
"""
try:
configured_vms = self._list()
except NotImplementedError:
return
for machine in self.machines():
# If this machine is already in the "correct" state, then we
# go on to the next machine.
if machine.label in configured_vms and self._status(machine.label) in [self.POWEROFF, self.ABORTED]:
continue
# This machine is currently not in its correct state, we're going
# to try to shut it down. If that works, then the machine is fine.
try:
self.stop(machine.label)
except CuckooMachineError as e:
msg = (
"Please update your configuration. Unable to shut "
"'{0}' down or find the machine in its proper state:"
" {1}".format(machine.label, e)
)
raise CuckooCriticalError(msg)
if not cfg.timeouts.vm_state:
raise CuckooCriticalError("Virtual machine state change timeout " "setting not found, please add it to " "the config file.")
def machines(self):
"""List virtual machines.
@return: virtual machines list
"""
return self.db.list_machines()
def availables(self):
"""How many machines are free.
@return: free machines count.
"""
return self.db.count_machines_available()
def acquire(self, machine_id=None, platform=None, tags=None):
"""Acquire a machine to start analysis.
@param machine_id: machine ID.
@param platform: machine platform.
@param tags: machine tags
@return: machine or None.
"""
if machine_id:
return self.db.lock_machine(label=machine_id)
elif platform:
return self.db.lock_machine(platform=platform, tags=tags)
else:
return self.db.lock_machine(tags=tags)
def release(self, label=None):
"""Release a machine.
@param label: machine name.
"""
self.db.unlock_machine(label)
def running(self):
"""Returns running virtual machines.
@return: running virtual machines list.
"""
return self.db.list_machines(locked=True)
def shutdown(self):
"""Shutdown the machine manager. Kills all alive machines.
@raise CuckooMachineError: if unable to stop machine.
"""
if len(self.running()) > 0:
log.info("Still %s guests alive. Shutting down...", len(self.running()))
for machine in self.running():
try:
self.stop(machine.label)
except CuckooMachineError as e:
log.warning("Unable to shutdown machine %s, please check " "manually. Error: %s", machine.label, e)
def set_status(self, label, status):
"""Set status for a virtual machine.
@param label: virtual machine label
@param status: new virtual machine status
"""
self.db.set_machine_status(label, status)
def start(self, label=None):
"""Start a machine.
@param label: machine name.
@raise NotImplementedError: this method is abstract.
"""
raise NotImplementedError
def stop(self, label=None):
"""Stop a machine.
@param label: machine name.
@raise NotImplementedError: this method is abstract.
"""
raise NotImplementedError
def _list(self):
"""Lists virtual machines configured.
@raise NotImplementedError: this method is abstract.
"""
raise NotImplementedError
def dump_memory(self, label, path):
"""Takes a memory dump of a machine.
@param path: path to where to store the memory dump.
"""
raise NotImplementedError
def _wait_status(self, label, state):
"""Waits for a vm status.
@param label: virtual machine name.
@param state: virtual machine status, accepts multiple states as list.
@raise CuckooMachineError: if default waiting timeout expire.
"""
# This block was originally suggested by Loic Jaquemet.
waitme = 0
try:
current = self._status(label)
except NameError:
return
if isinstance(state, str):
state = [state]
while current not in state:
log.debug("Waiting %i cuckooseconds for machine %s to switch " "to status %s", waitme, label, state)
if waitme > int(cfg.timeouts.vm_state):
raise CuckooMachineError("Timeout hit while for machine {0} " "to change status".format(label))
time.sleep(1)
waitme += 1
current = self._status(label)
class LibVirtMachinery(Machinery):
"""Libvirt based machine manager.
If you want to write a custom module for a virtualization software
supported by libvirt you have just to inherit this machine manager and
change the connection string.
"""
# VM states.
RUNNING = "running"
PAUSED = "paused"
POWEROFF = "poweroff"
ERROR = "machete"
ABORTED = "abort"
def __init__(self):
if not HAVE_LIBVIRT:
raise CuckooDependencyError("Unable to import libvirt")
super(LibVirtMachinery, self).__init__()
def initialize(self, module):
"""Initialize machine manager module. Override default to set proper
connection string.
@param module: machine manager module
"""
super(LibVirtMachinery, self).initialize(module)
def _initialize_check(self):
"""Runs all checks when a machine manager is initialized.
@raise CuckooMachineError: if libvirt version is not supported.
"""
# Version checks.
if not self._version_check():
raise CuckooMachineError("Libvirt version is not supported, " "please get an updated version")
# Preload VMs
self.vms = self._fetch_machines()
# Base checks. Also attempts to shutdown any machines which are
# currently still active.
super(LibVirtMachinery, self)._initialize_check()
def start(self, label):
"""Starts a virtual machine.
@param label: virtual machine name.
@raise CuckooMachineError: if unable to start virtual machine.
"""
log.debug("Starting machine %s", label)
if self._status(label) != self.POWEROFF:
msg = "Trying to start a virtual machine that has not " "been turned off {0}".format(label)
raise CuckooMachineError(msg)
conn = self._connect(label)
vm_info = self.db.view_machine_by_label(label)
snapshot_list = self.vms[label].snapshotListNames(flags=0)
# If a snapshot is configured try to use it.
if vm_info.snapshot and vm_info.snapshot in snapshot_list:
# Revert to desired snapshot, if it exists.
log.debug("Using snapshot {0} for virtual machine " "{1}".format(vm_info.snapshot, label))
try:
vm = self.vms[label]
snapshot = vm.snapshotLookupByName(vm_info.snapshot, flags=0)
self.vms[label].revertToSnapshot(snapshot, flags=0)
except libvirt.libvirtError:
msg = "Unable to restore snapshot {0} on " "virtual machine {1}".format(vm_info.snapshot, label)
raise CuckooMachineError(msg)
finally:
self._disconnect(conn)
elif self._get_snapshot(label):
snapshot = self._get_snapshot(label)
log.debug("Using snapshot {0} for virtual machine " "{1}".format(snapshot.getName(), label))
try:
self.vms[label].revertToSnapshot(snapshot, flags=0)
except libvirt.libvirtError:
raise CuckooMachineError("Unable to restore snapshot on " "virtual machine {0}".format(label))
finally:
self._disconnect(conn)
else:
self._disconnect(conn)
raise CuckooMachineError("No snapshot found for virtual machine " "{0}".format(label))
# Check state.
self._wait_status(label, self.RUNNING)
def stop(self, label):
"""Stops a virtual machine. Kill them all.
@param label: virtual machine name.
@raise CuckooMachineError: if unable to stop virtual machine.
"""
log.debug("Stopping machine %s", label)
if self._status(label) == self.POWEROFF:
raise CuckooMachineError("Trying to stop an already stopped " "machine {0}".format(label))
# Force virtual machine shutdown.
conn = self._connect(label)
try:
if not self.vms[label].isActive():
log.debug("Trying to stop an already stopped machine %s. " "Skip", label)
else:
self.vms[label].destroy() # Machete's way!
except libvirt.libvirtError as e:
raise CuckooMachineError("Error stopping virtual machine " "{0}: {1}".format(label, e))
finally:
self._disconnect(conn)
# Check state.
self._wait_status(label, self.POWEROFF)
def shutdown(self):
"""Override shutdown to free libvirt handlers - they print errors."""
super(LibVirtMachinery, self).shutdown()
# Free handlers.
self.vms = None
def dump_memory(self, label, path):
"""Takes a memory dump.
@param path: path to where to store the memory dump.
"""
log.debug("Dumping memory for machine %s", label)
conn = self._connect(label)
try:
# create the memory dump file ourselves first so it doesn't end up root/root 0600
# it'll still be owned by root, so we can't delete it, but at least we can read it
fd = open(path, "w")
fd.close()
self.vms[label].coreDump(path, flags=libvirt.VIR_DUMP_MEMORY_ONLY)
except libvirt.libvirtError as e:
raise CuckooMachineError("Error dumping memory virtual machine " "{0}: {1}".format(label, e))
finally:
self._disconnect(conn)
def _status(self, label):
"""Gets current status of a vm.
@param label: virtual machine name.
@return: status string.
"""
log.debug("Getting status for %s", label)
# Stetes mapping of python-libvirt.
# virDomainState
# VIR_DOMAIN_NOSTATE = 0
# VIR_DOMAIN_RUNNING = 1
# VIR_DOMAIN_BLOCKED = 2
# VIR_DOMAIN_PAUSED = 3
# VIR_DOMAIN_SHUTDOWN = 4
# VIR_DOMAIN_SHUTOFF = 5
# VIR_DOMAIN_CRASHED = 6
# VIR_DOMAIN_PMSUSPENDED = 7
conn = self._connect(label)
try:
state = self.vms[label].state(flags=0)
except libvirt.libvirtError as e:
raise CuckooMachineError("Error getting status for virtual " "machine {0}: {1}".format(label, e))
finally:
self._disconnect(conn)
if state:
if state[0] == 1:
status = self.RUNNING
elif state[0] == 3:
status = self.PAUSED
elif state[0] == 4 or state[0] == 5:
status = self.POWEROFF
else:
status = self.ERROR
# Report back status.
if status:
self.set_status(label, status)
return status
else:
raise CuckooMachineError("Unable to get status for " "{0}".format(label))
def _connect(self, label=None):
"""Connects to libvirt subsystem.
@raise CuckooMachineError: when unable to connect to libvirt.
"""
# Check if a connection string is available.
if not self.dsn:
raise CuckooMachineError("You must provide a proper " "connection string")
try:
return libvirt.open(self.dsn)
except libvirt.libvirtError:
raise CuckooMachineError("Cannot connect to libvirt")
def _disconnect(self, conn):
"""Disconnects to libvirt subsystem.
@raise CuckooMachineError: if cannot disconnect from libvirt.
"""
try:
conn.close()
except libvirt.libvirtError:
raise CuckooMachineError("Cannot disconnect from libvirt")
def _fetch_machines(self):
"""Fetch machines handlers.
@return: dict with machine label as key and handle as value.
"""
vms = {}
for vm in self.machines():
vms[vm.label] = self._lookup(vm.label)
return vms
def _lookup(self, label):
"""Search for a virtual machine.
@param conn: libvirt connection handle.
@param label: virtual machine name.
@raise CuckooMachineError: if virtual machine is not found.
"""
conn = self._connect(label)
try:
vm = conn.lookupByName(label)
except libvirt.libvirtError:
raise CuckooMachineError("Cannot find machine " "{0}".format(label))
finally:
self._disconnect(conn)
return vm
def _list(self):
"""List available virtual machines.
@raise CuckooMachineError: if unable to list virtual machines.
"""
conn = self._connect()
try:
names = conn.listDefinedDomains()
except libvirt.libvirtError:
raise CuckooMachineError("Cannot list domains")
finally:
self._disconnect(conn)
return names
def _version_check(self):
"""Check if libvirt release supports snapshots.
@return: True or false.
"""
if libvirt.getVersion() >= 8000:
return True
else:
return False
def _get_snapshot(self, label):
"""Get current snapshot for virtual machine
@param label: virtual machine name
@return None or current snapshot
@raise CuckooMachineError: if cannot find current snapshot or
when there are too many snapshots available
"""
def _extract_creation_time(node):
"""Extracts creation time from a KVM vm config file.
@param node: config file node
@return: extracted creation time
"""
xml = ET.fromstring(node.getXMLDesc(flags=0))
return xml.findtext("./creationTime")
snapshot = None
conn = self._connect(label)
try:
vm = self.vms[label]
# Try to get the currrent snapshot, otherwise fallback on the latest
# from config file.
if vm.hasCurrentSnapshot(flags=0):
snapshot = vm.snapshotCurrent(flags=0)
else:
log.debug("No current snapshot, using latest snapshot")
# No current snapshot, try to get the last one from config file.
snapshot = sorted(vm.listAllSnapshots(flags=0), key=_extract_creation_time, reverse=True)[0]
except libvirt.libvirtError:
raise CuckooMachineError("Unable to get snapshot for " "virtual machine {0}".format(label))
finally:
self._disconnect(conn)
return snapshot
class Processing(object):
"""Base abstract class for processing module."""
order = 1
enabled = True
def __init__(self, results=None):
self.analysis_path = ""
self.logs_path = ""
self.task = None
self.options = None
self.results = results
def set_options(self, options):
"""Set report options.
@param options: report options dict.
"""
self.options = options
def set_task(self, task):
"""Add task information.
@param task: task dictionary.
"""
self.task = task
def set_path(self, analysis_path):
"""Set paths.
@param analysis_path: analysis folder path.
"""
self.analysis_path = analysis_path
self.log_path = os.path.join(self.analysis_path, "analysis.log")
self.package_files = os.path.join(self.analysis_path, "package_files")
self.file_path = os.path.realpath(os.path.join(self.analysis_path, "binary"))
self.dropped_path = os.path.join(self.analysis_path, "files")
self.files_metadata = os.path.join(self.analysis_path, "files.json")
self.procdump_path = os.path.join(self.analysis_path, "procdump")
self.CAPE_path = os.path.join(self.analysis_path, "CAPE")
self.logs_path = os.path.join(self.analysis_path, "logs")
self.shots_path = os.path.join(self.analysis_path, "shots")
self.pcap_path = os.path.join(self.analysis_path, "dump.pcap")
self.pmemory_path = os.path.join(self.analysis_path, "memory")
self.memory_path = os.path.join(self.analysis_path, "memory.dmp")
def add_statistic(self, name, field, value):
if name not in self.results["statistics"]["processing"]:
self.results["statistics"]["processing"][name] = {}
self.results["statistics"]["processing"][name][field] = value
def run(self):
"""Start processing.
@raise NotImplementedError: this method is abstract.
"""
raise NotImplementedError
class Signature(object):
"""Base class for Cuckoo signatures."""
name = ""
description = ""
severity = 1
confidence = 100
weight = 1
categories = []
families = []
authors = []
references = []
alert = False
enabled = True
minimum = None
maximum = None
# Higher order will be processed later (only for non-evented signatures)
# this can be used for having meta-signatures that check on other lower-
# order signatures being matched
order = 0
evented = False
filter_processnames = set()
filter_apinames = set()
filter_categories = set()
filter_analysistypes = set()
banned_suricata_sids = ()
def __init__(self, results=None):
self.data = []
self.new_data = []
self.results = results
self._current_call_cache = None
self._current_call_dict = None
self._current_call_raw_cache = None
self._current_call_raw_dict = None
self.hostname2ips = dict()
self.machinery_conf = machinery_conf
def set_path(self, analysis_path):
"""Set analysis folder path.
@param analysis_path: analysis folder path.
"""
self.analysis_path = analysis_path
self.conf_path = os.path.join(self.analysis_path, "analysis.conf")
self.file_path = os.path.realpath(os.path.join(self.analysis_path, "binary"))
self.dropped_path = os.path.join(self.analysis_path, "files")
self.procdump_path = os.path.join(self.analysis_path, "procdump")
self.CAPE_path = os.path.join(self.analysis_path, "CAPE")
self.reports_path = os.path.join(self.analysis_path, "reports")
self.shots_path = os.path.join(self.analysis_path, "shots")
self.pcap_path = os.path.join(self.analysis_path, "dump.pcap")
self.pmemory_path = os.path.join(self.analysis_path, "memory")
self.memory_path = os.path.join(self.analysis_path, "memory.dmp")
try:
create_folder(folder=self.reports_path)
except CuckooOperationalError as e:
CuckooReportError(e)
def yara_detected(self, name):
target = self.results.get("target", {})
if target.get("category") in ("file", "static") and target.get("file"):
for keyword in ("yara", "cape_yara"):
for block in self.results["target"]["file"].get(keyword, list()):
if re.findall(name, block["name"], re.I):
yield "sample", self.results["target"]["file"]["path"], block
for keyword in ("procdump", "procmemory", "extracted", "dropped", "CAPE"):
if keyword in self.results and self.results[keyword] is not None:
for block in self.results.get(keyword, []):
for sub_keyword in ("yara", "cape_yara"):
for sub_block in block.get(sub_keyword, []):
if re.findall(name, sub_block["name"], re.I):
if keyword in ("procdump", "dropped", "extracted", "procmemory"):
if block.get("file", False):
path = block["file"]
elif block.get("path", False):
path = block["path"]
else:
path = ""
elif keyword == "CAPE":
path = block["path"]
else:
path = ""
yield keyword, path, sub_block
if keyword == "procmemory":
for pe in block.get("extracted_pe", []) or []:
for sub_keyword in ("yara", "cape_yara"):
for sub_block in pe.get(sub_keyword, []) or []:
if re.findall(name, sub_block["name"], re.I):
yield "extracted_pe", pe["path"], sub_block
macro_path = os.path.join(CUCKOO_ROOT, "storage", "analyses", str(self.results["info"]["id"]), "macros")
for macroname in self.results.get("static", {}).get("office", {}).get("info", []) or []:
for yara_block in self.results["static"]["office"]["info"].get("macroname", []) or []:
for sub_block in self.results["static"]["office"]["info"]["macroname"].get(yara_block, []) or []:
if re.findall(name, sub_block["name"], re.I):
yield "macro", os.path.join(macro_path, macroname), sub_block
yield False, False, False
def add_statistic(self, name, field, value):
if name not in self.results["statistics"]["signatures"]:
self.results["statistics"]["signatures"][name] = {}
self.results["statistics"]["signatures"][name][field] = value
def get_pids(self):
pids = list()
logs = os.path.join(CUCKOO_ROOT, "storage", "analyses", str(self.results["info"]["id"]), "logs")
processes = self.results.get("behavior", {}).get("processtree", [])
if processes:
for pid in processes:
pids.append(str(pid.get("pid", "")))
pids += [str(cpid["pid"]) for cpid in pid.get("children", []) if "pid" in cpid]
# in case if bsons too big
if os.path.exists(logs):
pids += [pidb.replace(".bson", "") for pidb in os.listdir(logs) if ".bson" in pidb]
# in case if injection not follows
if "procmemory" in self.results and self.results["procmemory"] is not None:
pids += [str(block["pid"]) for block in self.results["procmemory"]]
if "procdump" in self.results and self.results["procdump"] is not None:
pids += [str(block["pid"]) for block in self.results["procdump"]]
log.info(list(set(pids)))
return ",".join(list(set(pids)))
def advanced_url_parse(self, url):
if HAVE_TLDEXTRACT:
EXTRA_SUFFIXES = ("bit",)
parsed = False
try:
parsed = tldextract.TLDExtract(extra_suffixes=EXTRA_SUFFIXES, suffix_list_urls=None)(url)
except Exception as e:
log.error(e)
return parsed
else:
log.info("missed tldextract dependency")
def _get_ip_by_host(self, hostname):
for data in self.results.get("network", {}).get("hosts", []):
if data.get("hostname", "") == hostname:
return [data.get("ip", "")]
return []
def _get_ip_by_host_dns(self, hostname):
ips = list()
try:
answers = myresolver.query(hostname, "A")
for rdata in answers:
n = dns.reversename.from_address(rdata.address)
try:
answers_inv = myresolver.query(n, "PTR")
for rdata_inv in answers_inv:
ips.append(rdata.address)
except dns.resolver.NoAnswer:
ips.append(rdata.address)
except dns.resolver.NXDOMAIN:
ips.append(rdata.address)
except dns.resolver.NoAnswer:
print("IPs: Impossible to get response")
except Exception as e:
log.info(e)
return ips
def _is_ip(self, ip):
# is this string an ip?
try:
socket.inet_aton(ip)
return True
except:
return False
def _check_valid_url(self, url, all_checks=False):
""" Checks if url is correct and can be parsed by tldextract/urlparse
@param url: string
@return: url or None
"""
val = URLValidator(schemes=["http", "https", "udp", "tcp"])
try:
val(url)
return url
except:
pass
if all_checks:
last = url.rfind("://")
if url[:last] in ("http", "https"):
url = url[last + 3 :]
try:
val("http://%s" % url)
return "http://%s" % url
except:
pass
def _check_value(self, pattern, subject, regex=False, all=False, ignorecase=True):
"""Checks a pattern against a given subject.
@param pattern: string or expression to check for.
@param subject: target of the check.
@param regex: boolean representing if the pattern is a regular
expression or not and therefore should be compiled.
@param all: boolean representing if all results should be returned
in a set or not
@param ignorecase: in non-regex instances, should we ignore case for matches?
defaults to true
@return: depending on the value of param 'all', either a set of
matched items or the first matched item
"""
if regex:
if all:
retset = set()
exp = re.compile(pattern, re.IGNORECASE)
if isinstance(subject, list):
for item in subject:
if exp.match(item):
if all:
retset.add(item)
else:
return item
else:
if exp.match(subject):
if all:
retset.add(subject)
else:
return subject
if all and len(retset) > 0:
return retset
elif ignorecase:
lowerpattern = pattern.lower()
if isinstance(subject, list):
for item in subject:
if item.lower() == lowerpattern:
return item
else:
if subject.lower() == lowerpattern:
return subject
else:
if isinstance(subject, list):
for item in subject:
if item == pattern:
return item
else:
if subject == pattern:
return subject
return None
def check_process_name(self, pattern, all=False):
if "behavior" in self.results and "processes" in self.results["behavior"]:
for process in self.results["behavior"]["processes"]:
if re.findall(pattern, process["process_name"], re.I):
if all:
return process
else:
return True
return False
def check_file(self, pattern, regex=False, all=False):
"""Checks for a file being opened.
@param pattern: string or expression to check for.
@param regex: boolean representing if the pattern is a regular
expression or not and therefore should be compiled.
@param all: boolean representing if all results should be returned
in a set or not
@return: depending on the value of param 'all', either a set of
matched items or the first matched item
"""
subject = self.results["behavior"]["summary"]["files"]
return self._check_value(pattern=pattern, subject=subject, regex=regex, all=all)
def check_read_file(self, pattern, regex=False, all=False):
"""Checks for a file being read from.
@param pattern: string or expression to check for.
@param regex: boolean representing if the pattern is a regular
expression or not and therefore should be compiled.
@param all: boolean representing if all results should be returned
in a set or not
@return: depending on the value of param 'all', either a set of
matched items or the first matched item
"""
subject = self.results["behavior"]["summary"]["read_files"]
return self._check_value(pattern=pattern, subject=subject, regex=regex, all=all)
def check_write_file(self, pattern, regex=False, all=False):
"""Checks for a file being written to.
@param pattern: string or expression to check for.
@param regex: boolean representing if the pattern is a regular
expression or not and therefore should be compiled.