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
Posted in General | Comments Off on Security Templates for BGP, BIND, IOS, JunOS
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
Posted in GNU/Linux | Comments Off on Daily Backup of All MySQL Databases !
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/
Posted in Malware | No Comments »
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
Posted in GNU/Linux | No Comments »