Security Templates for BGP, BIND, IOS, JunOS

By Kernel 7 On June 8th, 2009

[+] Secure ISC BIND Template:
http://www.cymru.com/Documents/secure-bind-template.html

[+] Secure BGP Template for Cisco Routers:
http://www.cymru.com/Documents/secure-bgp-template.html

[+] Secure BGP Template for Juniper Routers:
http://www.cymru.com/gillsr/documents/junos-bgp-template.pdf

[+] Secure IOS Template:
http://www.cymru.com/Documents/secure-ios-template.html
http://wiki.nil.com/Router_security_template

[+] Secure JunOS Template:
http://www.cymru.com/gillsr/documents/junos-template.pdf

Daily Backup of All MySQL Databases !

By Kernel 7 On June 2nd, 2009

As you already know, “mysqldump” is nifty command. The following examle script should be scheduled to run daily via “cron” to backup all your MySQL Databases in a SQL file like “MySQL-Dump—v2009-06-02.sql” and compress it to save on space:

mysqldump –host=YOUR_MYSQL_HOST –port=YOUR_MYSQL_PORT –user=root \
–password=YOUR_ROOT_PASSWORD –add-drop-database –add-drop-table –comments –force \
–all-databases > /YOUR_BACKUP_LOCATION/MySQL-Dump—v`date +”%Y-%m-%d”`.sql ; \
gzip /YOUR_BACKUP_LOCATION/MySQL-Dump—v`date +”%Y-%m-%d”`.sql

Does your Site Belong to You ?

By Kernel 7 On June 1st, 2009

If you want to reveal hidden/illicit content (parasites) that hackers insert into benign web pages using various security holes, use the following site, you might just be surprised:

http://www.unmaskparasites.com/

Filesystem Cleanup (Remove Old Directories)

By Kernel 7 On June 1st, 2009

A small nifty script that you can schedule to cleanup and free some disk space by removing log directories created 30 days ago from the script’s run time:

find /LOG_DIR/ -not -ctime -30 -type d -exec rm -vrdf ‘{}’ ‘;’ ; sync