-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconf.py
46 lines (38 loc) · 1.91 KB
/
conf.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
py_path = r'/usr/bin/python3'
report_dir = r'/Users/shreyas/Projects/sandbox-api'
dash_lines = "-" * 40
is_elf_file = False
host_analysis_vmpath = r'/Users/shreyas/Virtual Machines.localized/Ubuntu 64-bit 22.04.1.vmwarevm/Ubuntu 64-bit 22.04.1.vmx'
host_vmrunpath = r'/Applications/VMware Fusion.app/Contents/Library/vmrun'
host_vmtype = r'ws'
analysis_username = "shreyas"
analysis_password = "Shreyas123"
analysis_clean_snapname = "cleansnapshot"
analysis_mal_dir = r"/home/shreyas/sandbox/malware_analysis"
analysis_py_path = r'/usr/bin/python3'
analysis_perl_path = r'/usr/bin/perl'
analysis_bash_path = r'/bin/bash'
analysis_sh_path = r'/bin/sh'
analysis_insmod_path = r'/sbin/insmod'
analysis_php_path = r'/usr/bin/php'
analysis_ip = "172.20.10.2"
host_iface_to_sniff = "en0"
host_tcpdumppath = "/usr/sbin/tcpdump"
vol_path = r'/home/shreyas/Downloads/volatility-2.4'
mem_image_profile = '--profile=LinuxUbuntu1204x64'
inetsim_path = r"/usr/share/inetsim/inetsim"
inetsim_log_dir = r"/usr/share/inetsim/log"
inetsim_report_dir = r"/usr/share/inetsim/report"
analysis_sysdig_path = r'/usr/bin/sysdig'
host_sysdig_path = r'/usr/bin/sysdig'
analysis_capture_out_file = r'/home/shreyas/sandbox/logdir/capture.scap'
cap_format = "%proc.name (%thread.tid) %evt.dir %evt.type %evt.args"
cap_filter = r"""evt.type=clone or evt.type=execve or evt.type=chdir or evt.type=open or
evt.type=creat or evt.type=close or evt.type=socket or evt.type=bind or evt.type=connect or
evt.type=accept or evt.is_io=true or evt.type=unlink or evt.type=rename or evt.type=brk or
evt.type=mmap or evt.type=munmap or evt.type=kill or evt.type=pipe"""
analysis_strace_path = r'/usr/bin/strace'
strace_filter = r"-etrace=fork,clone,execve,chdir,open,creat,close,socket,connect,accept,bind,read,write,unlink,rename,kill,pipe,dup,dup2"
analysis_strace_out_file = r'/home/shreyas/sandbox/logdir/trace.txt'
analysis_log_outpath = r'/home/shreyas/sandbox/logdir'
params = []