Posts Tagged ‘Security’
Nice Cacti Install How To
RedHat / CentOS Install and Configure Cacti Network Graphing Tool
Reset file permissions of RPM packages
A disastrous mistake anyone can make on their Linux server is to chown or chmod their entire filesystem.
You can reset the permissions of packages installed with rpm.
To reset file permissions:
To reset ownership permissions:
Security Articles
Hacking-Gurus: Network and Server Security Blog really has some useful information documented. Check out these articles.
Basic Linux Server Security
Linux Security Tools
SQL CheatSheet
SQL Injection article
This is an article I found on Twitter from Hacking-Gurus on SQL injection. Check it out.
MySQL: Secure Web Apps – SQL Injection techniques
Frequently used Linux one-liners
I just submitted a couple of one-liners that I frequently use to Command-line-Fu.
Linux Security Quick Reference Guide
I just found this quick reference sheet on Linux security topics from Apache and DNS security to crucial system files, tcp wrappers, and configuring syslog. This document from LinuxSecurity.com is available as a pdf download is provided below.
Linux Security Quick Reference Guide (pdf)
Excerpt: “Regularly audit your systems for any unauthorized and unnecessary use of the setuid or setgid permissions.”
Quick tip: Find all setuid and setgid programs
root# find / -type f -perm +6000 -ls
