Poor man's intrusion notification system - Request for Comments
cron: -----------------------------
0 3 * * * /usr/bin/rkhunter --update
0 */2 * * * /usr/local/sbin/collector.pl
20 * * * * /usr/local/sbin/ids.sh
30 3 * * * /usr/local/sbin/backup.sh
[collector.pl] -----------------------------
#!/usr/bin/perl -w
use strict;
my %Cmds;
my $host = qw(XXXXX);
my $user = "root";
my $externalip = "X.X.X.X";
chdir "/data";
my @md5files = qw(/bin/login
/usr/bin/passwd
/bin/ps);
my ($Second, $Minute, $Hour, $Day, $Month, $Year, $WeekDay, $DayOfYear, $IsDST) = localtime(time);
if ($Hour == 8) {
$Cmds{'disk.usage'} = "df -lk";
$Cmds{'packages'} = "yum check-update"; }
$Cmds{'md5sigs'} = "md5sum @md5files";
$Cmds{'suidfiles'} = "find / ! -wholename '/proc*' -type f -perm +6000 |xargs ls -l";
$Cmds{'cron.root'} = "crontab -l -u root";
$Cmds{'nmap'} = "nmap -sS $externalip | egrep -v '^(Nmap|Starting)'";
#$Cmds{'chkroot'} = "/usr/bin/chkrootkit"; $Cmds{'/dev/null'} = "updatedb";
#$Cmds{'/dev/null'} = "/usr/bin/rkhunter --update";
$Cmds{'rootkithunt'} = "/usr/bin/rkhunter -c --no-mail-on-warning --rwo --noappend-log --sk --nocolors";
#$Cmds{'iptables'} = "/sbin/iptables --list";
$Cmds{'listening'} = "netstat -utan | grep -i listen";
#$Cmds{'rootkithunt'} = "cat /var/log/rkhunter/rkhunter.log";
### main loop ###
for my $file (keys %Cmds) {
my $cmd = $Cmds{$file};
### run each command on $host and print the
### output to $file
&run_command($cmd, $file, $host);
}
exit 0;
sub run_command() {
my ($cmd, $file, $host) = @_;
my ($stdout, $stderr, $exit) = system($cmd." > $file");
return;
}
[ids.sh] -----------------------------
#!/bin/bash
## look for discrepanices
/usr/bin/perl /usr/local/sbin/mail-output.pl --subject "XXXXX.domain.net ETC Change" --recip admin@domain.net "diff -b -B -p -r -I \"Updated\" -X /home/backup/backup-excludes -u /home/backup/etc /etc"
/usr/bin/perl /usr/local/sbin/mail-output.pl --subject "XXXXX.domain.net Config Change" --recip admin@domain.net "diff -a -b -B -p -r -u -I \"The system checks took\" -I \"Host is up\" /home/backup/files /data/"
## copy files
echo "Starting IDS data sync at `date`." > /home/backup/backup-ids.log
echo "" >> /home/backup/backup-ids.log
echo "Backing up /etc/..." >> /home/backup/backup-ids.log rsync -a --delete /etc/ /home/backup/etc/ >> /home/backup/backup-ids.log 2>> /home/backup/backup-ids.err
echo "" >> /home/backup/backup-ids.log
echo "Backing up config files..." >> /home/backup/backup-ids.log rsync -a --delete /data/* /home/backup/files >> /home/backup/backup-ids.log 2>> /home/backup/backup-ids.err echo "" >> /home/backup/backup-ids.log
echo "Backing up system files..." >> /home/backup/backup-ids.log rsync -a --delete /usr/local/sbin/* /home/backup/usr/local/sbin/ >> /home/backup/backup-ids.log 2>> /home/backup/backup-ids.err echo "" >> /home/backup/backup-ids.log
echo "Backup finished at `date`." >> /home/backup/backup-ids.log
[backup.sh] ----------------------------- #!/bin/bash
## zip & send
tar -czvf /home/XXXXX.tar.gz /home/backup/*
ls -alR /home/backup > /home/dirlist.txt
mail -s "XXXXX Backup Configs" -r backups@domain.net -a /home/XXXXX.tar.gz admin@domain.net < /home/dirlist.txt
Categories
- All Categories
- 177 LFX Mentorship
- 177 LFX Mentorship: Linux Kernel
- 750 Linux Foundation IT Professional Programs
- 373 Cloud Engineer IT Professional Program
- 169 Advanced Cloud Engineer IT Professional Program
- 74 DevOps IT Professional Program - Discontinued
- 4 DevOps & GitOps IT Professional Program
- 99 Cloud Native Developer IT Professional Program
- 7.6K Training Courses & Learning Paths
- 1 AI & ML Training
- 1 Blockchain & Decentralized Identity Training
- 3 Cloud & Containers Training
- 1 Cybersecurity Training
- 2 DevOps & Site-Reliability Training
- 1 Linux Kernel Development Training
- 1 Networking Training
- 1 Open Source Best Practice Training
- 1 System Administration Training
- 1 System Engineering Training
- 1 Web & Application Development Training
- 792 Hardware
- 202 Drivers
- 68 I/O Devices
- 37 Monitors
- 95 Multimedia
- 173 Networking
- 91 Printers & Scanners
- 87 Storage
- 769 Linux Distributions
- 81 Debian
- 68 Fedora
- 22 Linux Mint
- 13 Mageia
- 24 openSUSE
- 150 Red Hat Enterprise
- 31 Slackware
- 13 SUSE Enterprise
- 356 Ubuntu
- 465 Linux System Administration
- 31 Cloud Computing
- 73 Command Line/Scripting
- Github systems admin projects
- 98 Linux Security
- 78 Network Management
- 101 System Management
- 46 Web Management
- 106 Mobile Computing
- 18 Android
- 73 Development
- 1.2K New to Linux
- 1K Getting Started with Linux
- 392 Off Topic
- 121 Introductions
- 181 Small Talk
- 29 Study Material
- 955 Programming and Development
- 310 Kernel Development
- 627 Software Development
- 983 Software
- 375 Applications
- 182 Command Line
- 5 Compiling/Installing
- 68 Games
- 317 Installation
- Archived
- 2 LFD140 Class Forum
Upcoming Training
-
August 20, 2018
Kubernetes Administration (LFS458)
-
August 20, 2018
Linux System Administration (LFS301)
-
August 27, 2018
Open Source Virtualization (LFS462)
-
August 27, 2018
Linux Kernel Debugging and Security (LFD440)