-
Notifications
You must be signed in to change notification settings - Fork 7
/
configuration.yaml
182 lines (182 loc) · 5.08 KB
/
configuration.yaml
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
yara:
path: "yara-signatures/" # yara rules absolute or relative folder (files have to end wih *.yar)
rulesRC4Key: "" # yara rules can be ciphered with rc4
yarascan:
infinitescan: true # loop scan infinitely
memory: true # scan process memory
registry: true # scan windows registry
startmenu: true # scan users start menu lnk
taskscheduler: true # scan windows task scheduler
userfilesystem: true # scan users %USERPROFILE% folder
systemdrive: true # scan %SYSTEMDRIVE% folder
absolutePaths: [] # list custom directory scan
absolutePathsRecursive: true # recurse inside custom directories
response:
dumpDirectory: "" # dump every processes memory for further analysis
quarantineDirectory: "" # when a file match a rule, dump its memory and executable to the following directory
quarantineRC4Key: "irma" # key used to RC4 cipher memory dump and quarantined files
kill: false # try to kill a process whether it match a yara rule
network:
capture: false # capture network trafic (irma will run infinitely)
bpffilter: ~ # filter capture using Berkley Packet Filter
pcapfile: "capture.pcap" # capture file path
output:
notifications: true # use Windows 10 notification panel when processes memory or files trigger a yara rule match
verbose: true # verbose console output (yara match does not need this option)
sfx:
autoexec: true # auto execute irma after unzipping
silentmode: true # prompt user to let him choose where to extract irma
extractDirectory: "%temp%" # default zip extract directory
logfile: "irma.log" # output irma log to the following filepath
others:
fakeProcesses: false # spawn and execute fake analysis process to mislead malware and make it stop if anti-debug is analysed
advancedparameters:
maxScanFilesize: 1024 # max file size scan (default: 1024Mb)
cleanMemoryIfFileGreaterThanSize: 512 # force irma clean its memory when using lot of memory (default: after >512Mb file size scan)
extensions:
- ".txt"
- ".csv"
- ".htm"
- ".html"
- ".flv"
- ".f4v"
- ".avi"
- ".3gp"
- ".3g2"
- ".3gp2"
- ".3p2"
- ".divx"
- ".mp4"
- ".mkv"
- ".mov"
- ".qt"
- ".asf"
- ".wmv"
- ".rm"
- ".rmvb"
- ".vob"
- ".dat"
- ".mpg"
- ".mpeg"
- ".bik"
- ".fcs"
- ".mp3"
- ".mpeg3"
- ".flac"
- ".ape"
- ".ogg"
- ".aac"
- ".m4a"
- ".wma"
- ".ac3"
- ".wav"
- ".mka"
- ".rm"
- ".ra"
- ".ravb"
- ".mid"
- ".midi"
- ".cda"
- ".jpg"
- ".jpe"
- ".jpeg"
- ".jff"
- ".gif"
- ".png"
- ".bmp"
- ".tif"
- ".tiff"
- ".emf"
- ".wmf"
- ".eps"
- ".psd"
- ".cdr"
- ".swf"
- ".exe"
- ".lnk"
- ".dll"
- ".ps1"
- ".scr"
- ".ocx"
- ".com"
- ".sys"
- ".class"
- ".o"
- ".so"
- ".elf"
- ".prx"
- ".vb"
- ".vbs"
- ".js"
- ".bat"
- ".cmd"
- ".msi"
- ".msp"
- ".deb"
- ".rpm"
- ".sh"
- ".pl"
- ".dylib"
- ".doc"
- ".dot"
- ".docx"
- ".dotx"
- ".docm"
- ".dotm"
- ".xsl"
- ".xls"
- ".xlsx"
- ".xltx"
- ".xlsm"
- ".xltm"
- ".xlam"
- ".xlsb"
- ".ppt"
- ".pot"
- ".pps"
- ".pptx"
- ".potx"
- ".pptm"
- ".potm"
- ".ppsx"
- ".ppsm"
- ".rtf"
- ".pdf"
- ".msg"
- ".eml"
- ".vsd"
- ".vss"
- ".vst"
- ".vdx"
- ".vsx"
- ".vtx"
- ".xps"
- ".oxps"
- ".one"
- ".onepkg"
- ".xsn"
- ".odt"
- ".ods"
- ".odp"
- ".sxw"
- ".pub"
- ".mdb"
- ".accdb"
- ".accde"
- ".accdr"
- ".accdc"
- ".chm"
- ".mht"
- ".zip"
- ".tar"
- ".7z"
- ".7-z"
- ".rar"
- ".iso"
- ".cab"
- ".jar"
- ".arj"
- ".dmg"
- ".smi"
- ".img"
- ".xar"