-
Notifications
You must be signed in to change notification settings - Fork 3
/
spampot-ng.conf
124 lines (99 loc) · 4.79 KB
/
spampot-ng.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
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
###############################################################################
## This file is free software; as a special exception the author gives ##
## unlimited permission to copy and/or distribute it, with or without ##
## modifications, as long as this notice is preserved. ##
## ##
## This program is distributed in the hope that it will be useful, but ##
## WITHOUT ANY WARRANTY, to the extent permitted by law; without even the ##
## implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. ##
## ##
###############################################################################
## Honeynet Project UNAM-Chapter ##
## SSI/UNAM-CERT ##
## honeynet@seguridad.unam.mx ##
## www.seguridad.unam.mx/www.cert.org.mx/www.honeynet.unam.mx ##
## ##
###############################################################################
## Spampot Tool and Spam Processor V1.0 ##
## By [Miguel Bautista] [mbautista <at> seguridad <dot> unam <dot> mx ##
## miguelraulb <at> gmail <dot> com] ##
## Date [2014-02-28] ##
###############################################################################
package CONFIG_VARS;
###############################################################################
# GENERAL Variables #
###############################################################################
#Debugger
#Flags meaning:
#0 - Disabled
#1 - Standard output
#2 - Log file (Watch out, the size of the file could be longer)
#3 - Watch threads activity
our $debug = 1;
###############################################################################
# SPAMPOT Variables #
###############################################################################
#Log Directory
our $log_directory = Cwd::cwd()."/log";
#Log File
our $LOG = $log_directory."/spampot.log";
#Spam output Directory
our $spam_directory = Cwd::cwd()."/spam";
#Attachments and binaries output directory
our $output_directory = Cwd::cwd()."/output";
#Resources Directory
our $resources_directory= Cwd::cwd()."/resources";
###############################################################################
# SMTP Server Variables #
###############################################################################
#Listen Port
our $port = '25';
#Listen Address
our $address = '0.0.0.0';
#Server Banner
our $banner = "SMTP Corp Server";
#Server Hostname
our $hostname = "";
###############################################################################
# SPAM Processing Variables #
###############################################################################
# Enable URLs download
# 0 - Disabled
# 1 - Enabled
our $enable_url_dl = 1;
#Blacklist Pattern File
our $blacklist_pattern = $resources_directory."/blacklist_patterns.txt";
#Blacklist IP File
our $blacklist_ip = $resources_directory."/blacklist_ip.txt";
#Blacklist Domain File
our $blacklist_domain = $resources_directory."/blacklist_domain.txt";
#Binaries Output Directory
our $binaries_output = $output_directory."/binaries";
#Attachments Output Directory
our $attachments_output = $output_directory."/attachments";
###############################################################################
# Database Configuration #
###############################################################################
# Database connector (Supported by DBI):
# · mysql
# · SQLite # Working on it..
our $db_connector = "mysql";
# Database Server
our $db_host = "127.0.0.1";
# Database Port
our $db_port = "3306";
# Database user (only for MySQL)
our $db_user = "";
# Database user password
our $db_passwd = "";
# Database name
######################################################
#The database must be created before running the tool#
######################################################
our $db_name = "spampot";
###############################################################################
# Misc Configuration #
###############################################################################
# Sensor name
our $sensor_name = "";
1;