-
Notifications
You must be signed in to change notification settings - Fork 19
/
README
38 lines (27 loc) · 1.32 KB
/
README
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
CuckooMX is a project to automate analysis of files transmitted over SMTP (using the Cuckoo sandbox)
Copyright (C) 2012 Xavier Mertens <xavier(at)rootshell(dot)be>
More information is available here: http://blog.rootshell.be/2012/06/20/cuckoomx-autom…ng-with-cuckoo/
History
-------
2012/06/20 First release
2012/08/02 Improved code - fixed support for Cuckoo 0.4, processing URLs
Installation
------------
Requirement:
- A running instance of Postfix
- A running install of Cuckoo
1. Copy cuckoomx.pl in your prefered directory.
2. Edit the configuration file path (line 58).
3. Copy the sample configuration file in the right directory and change it to match your environment.
4. Edit your Postfix master.cf file:
- Change the smtp service:
# ==========================================================================
# service type private unpriv chroot wakeup maxproc command + args
# (yes) (yes) (yes) (never) (100)
# ==========================================================================
smtp inet n - - - - smtpd
-o content_filter=cuckoomx
- Create a new service (bottom of the file)
cuckoomx unix - n n - - pipe
user=cuckoo argv=/data/cuckoo/cuckoomx.pl -f ${sender} ${recipient}
- Restart Postfix