#ANNEXE 2 - Generation automatisee de rapport systeme #==================================================== #!/bin/sh # # Debian-secinst v0.1.2 : ANNEXE 2 - Generation automatisee de rapport systeme # Simon Castro # ### VARIABLES # Do we also mail the report ? OK_TO_MAIL=1 # Report variables CURRENT_DATE=`/bin/date "+%d%m%y-%H%M%S"` REPORT_NAME=`/bin/hostname` # mail variables MAIL_ADDR="root" # File to store variables REPORT_DIR=/home/system/scripts/reports/ REPORT_FILE=$REPORT_DIR$REPORT_NAME"_"$CURRENT_DATE"_report.log" # Logger variables SYSLOGGED_NAME="System" LOGGER_FILE="/usr/bin/logger -p local7.info -t $SYSLOGGED_NAME -i -- $REPORT_NAME system report : $REPORT_FILE" LOGGER_MAIL="/usr/bin/logger -p local7.info -t $SYSLOGGED_NAME -i -- $REPORT_NAME system report : mailing to $MAIL_ADDR" # Formatage du rapport INDENT_IT='s/\(.*\)/\ \ \ \ \1/g' ### MAIN # Tell syslog we are going to run the system report script $LOGGER_FILE # Get the report values DISK_SPACE=`/bin/df -lh | /bin/sed "$INDENT_IT"` PROCESS_LIST=`/bin/ps aux | /bin/sed "$INDENT_IT"` INTERFACES_LIST=`/sbin/ifconfig | /bin/sed "$INDENT_IT"` INTERFACES2_LIST=`/bin/netstat -in | /bin/sed "$INDENT_IT"` ROUTAGE_LIST=`/bin/netstat -rn | /bin/sed "$INDENT_IT"` CONNECTIONS_LIST=`/bin/netstat -tunap | /bin/sed "$INDENT_IT"` STRANGE_FILES=`/usr/bin/find / \( -nouser -o -nogroup -o \( -type f \( -perm -004000 -o -perm -002000 \) \) \) -exec ls -la {} \; 2> /dev/null | /bin/sed "$INDENT_IT"` LOG_FW_ACCEPT=`/bin/cat /var/log/fw_accept.log | /bin/sed "$INDENT_IT"` LOG_FW_DENY=`/bin/cat /var/log/fw_deny.log | /bin/sed "$INDENT_IT"` LOG_SECURITE=`/bin/cat /var/log/securite.log | /bin/sed "$INDENT_IT"` ### Warning : the next two lines are only one command line QUOTAS_GROUP_LIST=`/usr/sbin/repquota -gva | /bin/sed 's/\*\*\*/\\ \*\*\*/' | /bin/sed "$INDENT_IT"` ### Warning : the next two lines are only one command line QUOTAS_USER_LIST=`/usr/sbin/repquota -uva | /bin/sed 's/\*\*\*/\\ \*\*\*/' | /bin/sed "$INDENT_IT"` # Create the report { /bin/cat < $REPORT_FILE if [ $OK_TO_MAIL ] && [ $OK_TO_MAIL == 1 ] then $LOGGER_MAIL /bin/cat $REPORT_FILE | /usr/bin/mail -s "$REPORT_NAME system report" $MAIL_ADDR fi