-
Notifications
You must be signed in to change notification settings - Fork 19
/
cuckoomx.conf
52 lines (48 loc) · 1.39 KB
/
cuckoomx.conf
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
<!--
CuckooMX Configuration File
//-->
<cuckoomx>
<!-- Core settings //-->
<core>
<outputdir>/data/cuckoo/quarantine</outputdir>
<process-zip>yes</process-zip>
<process-rar>yes</process-rar>
<process-url>yes</process-url>
</core>
<!-- Settings for Cuckoo sandbox //-->
<cuckoo>
<basedir>/data/cuckoo</basedir>
<db>/data/cuckoo/db/cuckoo.db</db>
<guest>WinXP-SP3</guest>
</cuckoo>
<!-- Logging settings //-->
<logging>
<syslogfacility>mail</syslogfacility>
<sendmailpath>/usr/sbin/sendmail</sendmailpath>
<notify>xavier@example.com</notify>
</logging>
<!-- MIME-types to ignore (not send to Cuckoo for analize) //-->
<ignore-mime>
<mime-type>text/plain</mime-type>
<mime-type>text/html</mime-type>
<mime-type>image/jpeg</mime-type>
<mime-type>image/x-citrix-jpeg</mime-type>
<mime-type>image/png</mime-type>
<mime-type>image/gif</mime-type>
<mime-type>text/x-patch</mime-type>
<mime-type>application/pkcs7-signature</mime-type>
<mime-type>application/pgp-signature</mime-type>
<mime-type>video/x-ms-wmv</mime-type>
<mime-type>message/delivery-status</mime-type>
<mime-type>text/rfc822-headers</mime-type>
</ignore-mime>
<!-- URLs to not process //-->
<ignore-url>
<url>insecure\.org</url>
<url>secunia\.com</url>
<url>twitter\.com</url>
<url>(google|gmail|youtube)\.com</url>
<url>yahoo\.com</url>
<url>facebook\.com</url>
</ignore-url>
</cuckoomx>