-
Notifications
You must be signed in to change notification settings - Fork 109
/
ServerSetup.sh
599 lines (484 loc) · 15.4 KB
/
ServerSetup.sh
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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
#!/bin/bash
if [[ $EUID -ne 0 ]]; then
echo "Please run this script as root" 1>&2
exit 1
fi
### Functions ###
debian_initialize() {
echo "Updating and Installing Dependicies"
apt-get -qq update > /dev/null 2>&1
apt-get -qq -y upgrade > /dev/null 2>&1
apt-get install -qq -y nmap > /dev/null 2>&1
apt-get install -qq -y git > /dev/null 2>&1
apt-get remove -qq -y exim4 exim4-base exim4-config exim4-daemon-light > /dev/null 2>&1
rm -r /var/log/exim4/ > /dev/null 2>&1
update-rc.d nfs-common disable > /dev/null 2>&1
update-rc.d rpcbind disable > /dev/null 2>&1
echo "IPv6 Disabled"
cat <<-EOF >> /etc/sysctl.conf
net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1
net.ipv6.conf.lo.disable_ipv6 = 1
net.ipv6.conf.eth0.disable_ipv6 = 1
net.ipv6.conf.eth1.disable_ipv6 = 1
net.ipv6.conf.ppp0.disable_ipv6 = 1
net.ipv6.conf.tun0.disable_ipv6 = 1
EOF
sysctl -p > /dev/null 2>&1
echo "Changing Hostname"
read -p "Enter your hostname: " -r primary_domain
cat <<-EOF > /etc/hosts
127.0.1.1 $primary_domain $primary_domain
127.0.0.1 localhost
EOF
cat <<-EOF > /etc/hostname
$primary_domain
EOF
echo "The System will now reboot!"
reboot
}
ubuntu_initialize() {
echo "Updating and Installing Dependicies"
apt-get -qq update > /dev/null 2>&1
apt-get -qq -y upgrade > /dev/null 2>&1
apt-get install -qq -y nmap > /dev/null 2>&1
apt-get install -qq -y git > /dev/null 2>&1
rm -r /var/log/exim4/ > /dev/null 2>&1
update-rc.d nfs-common disable > /dev/null 2>&1
update-rc.d rpcbind disable > /dev/null 2>&1
echo "IPv6 Disabled"
cat <<-EOF >> /etc/sysctl.conf
net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1
net.ipv6.conf.lo.disable_ipv6 = 1
net.ipv6.conf.eth0.disable_ipv6 = 1
net.ipv6.conf.eth1.disable_ipv6 = 1
net.ipv6.conf.ppp0.disable_ipv6 = 1
net.ipv6.conf.tun0.disable_ipv6 = 1
EOF
sysctl -p > /dev/null 2>&1
echo "Changing Hostname"
read -p "Enter your hostname: " -r primary_domain
cat <<-EOF > /etc/hosts
127.0.1.1 $primary_domain $primary_domain
127.0.0.1 localhost
EOF
cat <<-EOF > /etc/hostname
$primary_domain
EOF
echo "The System will now reboot!"
reboot
}
reset_firewall() {
apt-get install iptables-persistent -q -y > /dev/null 2>&1
iptables -F
echo "Current iptables rules flushed"
cat <<-ENDOFRULES > /etc/iptables/rules.v4
*filter
# Allow all loopback (lo) traffic and reject anything to localhost that does not originate from lo.
-A INPUT -i lo -j ACCEPT
-A INPUT ! -i lo -s 127.0.0.0/8 -j REJECT
-A OUTPUT -o lo -j ACCEPT
# Allow ping and ICMP error returns.
-A INPUT -p icmp -m state --state NEW --icmp-type 8 -j ACCEPT
-A INPUT -p icmp -m state --state ESTABLISHED,RELATED -j ACCEPT
-A OUTPUT -p icmp -j ACCEPT
# Allow SSH.
-A INPUT -i eth0 -p tcp -m state --state NEW,ESTABLISHED --dport 22 -j ACCEPT
-A OUTPUT -o eth0 -p tcp -m state --state NEW,ESTABLISHED --sport 22 -j ACCEPT
# Allow DNS resolution and limited HTTP/S on eth0.
# Necessary for updating the server and keeping time.
-A INPUT -p udp -m state --state NEW,ESTABLISHED --sport 53 -j ACCEPT
-A OUTPUT -p udp -m state --state NEW,ESTABLISHED --dport 53 -j ACCEPT
-A INPUT -p tcp -m state --state ESTABLISHED --sport 80 -j ACCEPT
-A INPUT -p tcp -m state --state ESTABLISHED --sport 443 -j ACCEPT
-A OUTPUT -p tcp -m state --state NEW,ESTABLISHED --dport 80 -j ACCEPT
-A OUTPUT -p tcp -m state --state NEW,ESTABLISHED --dport 443 -j ACCEPT
# Allow Mail Server Traffic outbound
-A OUTPUT -p tcp -m state --state NEW,ESTABLISHED --dport 143 -j ACCEPT
-A OUTPUT -p tcp -m state --state NEW,ESTABLISHED --dport 587 -j ACCEPT
-A OUTPUT -p tcp -m state --state NEW,ESTABLISHED --dport 993 -j ACCEPT
-A OUTPUT -p tcp -m state --state NEW,ESTABLISHED --dport 25 -j ACCEPT
# Allow Mail Server Traffic inbound
-A INPUT -p tcp -m state --state NEW,ESTABLISHED --sport 143 -j ACCEPT
-A INPUT -p tcp -m state --state NEW,ESTABLISHED --sport 587 -j ACCEPT
-A INPUT -p tcp -m state --state NEW,ESTABLISHED --sport 993 -j ACCEPT
-A INPUT -p tcp -m state --state NEW,ESTABLISHED --sport 25 -j ACCEPT
COMMIT
ENDOFRULES
iptables -P INPUT DROP
iptables -P FORWARD DROP
iptables -P OUTPUT DROP
cat <<-ENDOFRULES > /etc/iptables/rules.v6
*filter
-A INPUT -j DROP
-A FORWARD -j DROP
-A OUTPUT -j DROP
COMMIT
ENDOFRULES
echo "Loading new firewall rules"
iptables-restore /etc/iptables/rules.v4
ip6tables-restore /etc/iptables/rules.v6
}
add_firewall_port(){
read -p "Enter the port you would like opened: " -r port
iptables -A INPUT -p tcp --dport ${port} -j ACCEPT
iptables -A OUTPUT -p tcp --sport ${port} -j ACCEPT
iptables-save
}
install_ssl_Cert() {
git clone https://github.com/certbot/certbot.git /opt/letsencrypt > /dev/null 2>&1
cd /opt/letsencrypt
letsencryptdomains=()
end="false"
i=0
while [ "$end" != "true" ]
do
read -p "Enter your server's domain or done to exit: " -r domain
if [ "$domain" != "done" ]
then
letsencryptdomains[$i]=$domain
else
end="true"
fi
((i++))
done
command="./certbot-auto certonly --standalone "
for i in "${letsencryptdomains[@]}";
do
command="$command -d $i"
done
command="$command -n --register-unsafely-without-email --agree-tos"
eval $command
}
install_postfix_dovecot() {
echo "Installing Dependicies"
apt-get install -qq -y dovecot-imapd dovecot-lmtpd
apt-get install -qq -y postfix postgrey postfix-policyd-spf-python
apt-get install -qq -y opendkim opendkim-tools
apt-get install -qq -y opendmarc
apt-get install -qq -y mailutils
read -p "Enter your mail server's domain: " -r primary_domain
read -p "Enter IP's to allow Relay (if none just hit enter): " -r relay_ip
echo "Configuring Postfix"
cat <<-EOF > /etc/postfix/main.cf
smtpd_banner = \$myhostname ESMTP \$mail_name (Debian/GNU)
biff = no
append_dot_mydomain = no
readme_directory = no
smtpd_tls_cert_file=/etc/letsencrypt/live/${primary_domain}/fullchain.pem
smtpd_tls_key_file=/etc/letsencrypt/live/${primary_domain}/privkey.pem
smtpd_tls_security_level = may
smtp_tls_security_level = encrypt
smtpd_tls_session_cache_database = btree:\${data_directory}/smtpd_scache
smtp_tls_session_cache_database = btree:\${data_directory}/smtp_scache
smtpd_relay_restrictions = permit_mynetworks permit_sasl_authenticated defer_unauth_destination
myhostname = ${primary_domain}
alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases
myorigin = /etc/mailname
mydestination = ${primary_domain}, localhost.com, , localhost
relayhost =
mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128 ${relay_ip}
mailbox_command = procmail -a "\$EXTENSION"
mailbox_size_limit = 0
recipient_delimiter = +
inet_interfaces = all
inet_protocols = ipv4
milter_default_action = accept
milter_protocol = 6
smtpd_milters = inet:12301,inet:localhost:54321
non_smtpd_milters = inet:12301,inet:localhost:54321
EOF
cat <<-EOF >> /etc/postfix/master.cf
submission inet n - - - - smtpd
-o syslog_name=postfix/submission
-o smtpd_tls_wrappermode=no
-o smtpd_tls_security_level=encrypt
-o smtpd_sasl_auth_enable=yes
-o smtpd_recipient_restrictions=permit_mynetworks,permit_sasl_authenticated,reject
-o milter_macro_daemon_name=ORIGINATING
-o smtpd_sasl_type=dovecot
-o smtpd_sasl_path=private/auth
EOF
echo "Configuring Opendkim"
mkdir -p "/etc/opendkim/keys/${primary_domain}"
cp /etc/opendkim.conf /etc/opendkim.conf.orig
cat <<-EOF > /etc/opendkim.conf
domain *
AutoRestart Yes
AutoRestartRate 10/1h
Umask 0002
Syslog Yes
SyslogSuccess Yes
LogWhy Yes
Canonicalization relaxed/simple
ExternalIgnoreList refile:/etc/opendkim/TrustedHosts
InternalHosts refile:/etc/opendkim/TrustedHosts
KeyFile /etc/opendkim/keys/${primary_domain}/mail.private
Selector mail
Mode sv
PidFile /var/run/opendkim/opendkim.pid
SignatureAlgorithm rsa-sha256
UserID opendkim:opendkim
Socket inet:12301@localhost
EOF
cat <<-EOF > /etc/opendkim/TrustedHosts
127.0.0.1
localhost
${primary_domain}
${relay_ip}
EOF
cd "/etc/opendkim/keys/${primary_domain}" || exit
opendkim-genkey -s mail -d "${primary_domain}"
echo 'SOCKET="inet:12301"' >> /etc/default/opendkim
chown -R opendkim:opendkim /etc/opendkim
echo "Configuring opendmarc"
cat <<-EOF > /etc/opendmarc.conf
AuthservID ${primary_domain}
PidFile /var/run/opendmarc.pid
RejectFailures false
Syslog true
TrustedAuthservIDs ${primary_domain}
Socket inet:54321@localhost
UMask 0002
UserID opendmarc:opendmarc
IgnoreHosts /etc/opendmarc/ignore.hosts
HistoryFile /var/run/opendmarc/opendmarc.dat
EOF
mkdir "/etc/opendmarc/"
echo "localhost" > /etc/opendmarc/ignore.hosts
chown -R opendmarc:opendmarc /etc/opendmarc
echo 'SOCKET="inet:54321"' >> /etc/default/opendmarc
echo "Configuring Dovecot"
cat <<-EOF > /etc/dovecot/dovecot.conf
disable_plaintext_auth = no
mail_privileged_group = mail
mail_location = mbox:~/mail:INBOX=/var/mail/%u
userdb {
driver = passwd
}
passdb {
args = %s
driver = pam
}
protocols = " imap"
protocol imap {
mail_plugins = " autocreate"
}
plugin {
autocreate = Trash
autocreate2 = Sent
autosubscribe = Trash
autosubscribe2 = Sent
}
service imap-login {
inet_listener imap {
port = 0
}
inet_listener imaps {
port = 993
}
}
service auth {
unix_listener /var/spool/postfix/private/auth {
group = postfix
mode = 0660
user = postfix
}
}
ssl=required
ssl_cert = </etc/letsencrypt/live/${primary_domain}/fullchain.pem
ssl_key = </etc/letsencrypt/live/${primary_domain}/privkey.pem
EOF
read -p "What user would you like to assign to recieve email for Root: " -r user_name
echo "${user_name}: root" >> /etc/aliases
echo "Root email assigned to ${user_name}"
echo "Restarting Services"
service postfix restart
service opendkim restart
service opendmarc restart
service dovecot restart
echo "Checking Service Status"
service postfix status
service opendkim status
service opendmarc status
service dovecot status
}
function add_alias(){
read -p "What email address do you want to assign: " -r email_address
read -p "What user do you want to assign to that email address: " -r user
echo "${email_address}: ${user}" >> /etc/aliases
newaliases
echo "${email_address} assigned to ${user}"
}
function get_dns_entries(){
extip=$(ifconfig|grep 'Link encap\|inet '|awk '!/Loopback|:127./'|tr -s ' '|grep 'inet'|tr ':' ' '|cut -d" " -f4)
domain=$(ls /etc/opendkim/keys/ | head -1)
fields=$(echo "${domain}" | tr '.' '\n' | wc -l)
dkimrecord=$(cut -d '"' -f 2 "/etc/opendkim/keys/${domain}/mail.txt" | tr -d "[:space:]")
if [[ $fields -eq 2 ]]; then
cat <<-EOF > dnsentries.txt
DNS Entries for ${domain}:
====================================================================
Namecheap - Enter under Advanced DNS
Record Type: A
Host: @
Value: ${extip}
TTL: 5 min
Record Type: TXT
Host: @
Value: v=spf1 ip4:${extip} -all
TTL: 5 min
Record Type: TXT
Host: mail._domainkey
Value: ${dkimrecord}
TTL: 5 min
Record Type: TXT
Host: ._dmarc
Value: v=DMARC1; p=reject
TTL: 5 min
Change Mail Settings to Custom MX and Add New Record
Record Type: MX
Host: @
Value: ${domain}
Priority: 10
TTL: 5 min
EOF
cat dnsentries.txt
else
prefix=$(echo "${domain}" | rev | cut -d '.' -f 3- | rev)
cat <<-EOF > dnsentries.txt
DNS Entries for ${domain}:
====================================================================
Namecheap - Enter under Advanced DNS
Record Type: A
Host: ${prefix}
Value: ${extip}
TTL: 5 min
Record Type: TXT
Host: ${prefix}
Value: v=spf1 ip4:${extip} -all
TTL: 5 min
Record Type: TXT
Host: mail._domainkey.${prefix}
Value: ${dkimrecord}
TTL: 5 min
Record Type: TXT
Host: ._dmarc
Value: v=DMARC1; p=reject
TTL: 5 min
Change Mail Settings to Custom MX and Add New Record
Record Type: MX
Host: ${prefix}
Value: ${domain}
Priority: 10
TTL: 5 min
EOF
cat dnsentries.txt
fi
}
setupSSH(){
apt-get -qq -y install sudo > /dev/null 2>&1
apt-get -qq -y install fail2ban > /dev/null 2>&1
echo "Create a User to ssh into this system securely"
read -p "Enter your user name: " -r user_name
adduser $user_name
usermod -aG sudo $user_name
cat <<-EOF > /etc/ssh/sshd_config
Port 22
Protocol 2
HostKey /etc/ssh/ssh_host_rsa_key
HostKey /etc/ssh/ssh_host_dsa_key
HostKey /etc/ssh/ssh_host_ecdsa_key
#Privilege Separation is turned on for security
UsePrivilegeSeparation yes
KeyRegenerationInterval 3600
ServerKeyBits 1024
SyslogFacility AUTH
LogLevel INFO
LoginGraceTime 120
PermitRootLogin no
StrictModes yes
RSAAuthentication yes
PubkeyAuthentication yes
IgnoreRhosts yes
RhostsRSAAuthentication no
HostbasedAuthentication no
PermitEmptyPasswords no
ChallengeResponseAuthentication no
PasswordAuthentication yes
X11Forwarding yes
X11DisplayOffset 10
PrintMotd no
PrintLastLog yes
TCPKeepAlive yes
Banner no
AcceptEnv LANG LC_*
Subsystem sftp /usr/lib/openssh/sftp-server
UsePAM yes
EOF
echo "AllowUsers ${user_name}" > /etc/ssh/sshd_config
cp /etc/fail2ban/jail.conf /etc/fail2ban/jail.local
cd /home/$user_name
runuser -l $user_name -c "mkdir '.ssh'"
runuser -l $user_name -c "chmod 700 ~/.ssh"
service ssh restart
}
function Install_GoPhish {
apt-get install unzip > /dev/null 2>&1
wget https://github.com/gophish/gophish/releases/download/v0.4.0/gophish-v0.4-linux-64bit.zip
unzip gophish-v0.4-linux-64bit.zip
cd gophish-v0.4-linux-64bit
sed -i 's/"listen_url" : "127.0.0.1:3333"/"listen_url" : "0.0.0.0:3333"/g' config.json
read -r -p "Do you want to add an SSL certificate to your GoPhish? [y/N] " response
case "$response" in
[yY][eE][sS]|[yY])
read -p "Enter your web server's domain: " -r primary_domain
if [ -f "/etc/letsencrypt/live/${primary_domain}/fullchain.pem" ];then
ssl_cert="/etc/letsencrypt/live/${primary_domain}/fullchain.pem"
ssl_key="/etc/letsencrypt/live/${primary_domain}/privkey.pem"
cp $ssl_cert ${primary_domain}.crt
cp $ssl_key ${primary_domain}.key
sed -i "s/0.0.0.0:80/0.0.0.0:443/g" config.json
sed -i "s/gophish_admin.crt/${primary_domain}.crt/g" config.json
sed -i "s/gophish_admin.key/${primary_domain}.key/g" config.json
sed -i 's/"use_tls" : false/"use_tls" : true/g' config.json
sed -i "s/example.crt/${primary_domain}.crt/g" config.json
sed -i "s/example.key/${primary_domain}.key/g" config.json
else
echo "Certificate not found, use Install SSL option first"
fi
;;
*)
echo "GoPhish installed"
;;
esac
}
function Install_IRedMail {
echo "Downloading iRedMail"
wget https://bitbucket.org/zhb/iredmail/downloads/iRedMail-0.9.6.tar.bz2
tar -xvf iRedMail-0.9.6.tar.bz2
cd iRedMail-0.9.6/
chmod +x iRedMail.sh
echo "Running iRedMail Installer"
./iRedMail.sh
}
PS3="Server Setup Script - Pick an option: "
options=("Setup SSH" "Debian Prep" "Ubuntu Prep" "Install SSL" "Install Mail Server" "Add Aliases" "Get DNS Entries" "Install GoPhish" "Install IRedMail")
select opt in "${options[@]}" "Quit"; do
case "$REPLY" in
#Prep
1) setupSSH;;
2) debian_initialize;;
3) ubuntu_initialize;;
4) install_ssl_Cert;;
5) install_postfix_dovecot;;
6) add_alias;;
7) get_dns_entries;;
8) Install_GoPhish;;
9) Install_IRedMail;;
$(( ${#options[@]}+1 )) ) echo "Goodbye!"; break;;
*) echo "Invalid option. Try another one.";continue;;
esac
done