Search: Advanced search |
Browse by category: |
| Limit the resources for a specific user | |||||||||||||
Pluggable Authentication Modules (PAM) is included with the vast majority of Linux distributions including CentOS, Fedora Core, and RedHat. On Redhat and Mandrake systems you have two directories on your system "/etc/pam.d/" and "/etc/security/". /etc/pam.d/ is where the modules are located /etc/security/ is where some of the configuration files for some of these modules are. I'm only gonna touch on /etc/security/limits.conf in this, to learn further about PAM I suggest you read up on it at http://www.us.kernel .org/pub/linux/libs/pam/ In certain kinds of attacks, the attacker doesn't attempt to gain access, but instead to break a certain part of your OS. Often, this will be used so that the attacker can make his computer impersonate yours, for the purpose of hiding his identity or breaking into machines that trust your computer. When an attack is primarily intended to disrupt operation of the target host , it is known as a Denial of Service, or DoS, attack. You can protect against certain types of denial of service attacks by modifying /etc/security/limits.conf. This file sets limits on system resources for each user. Since several major daemons, including the web, name and ftp servers, may run as a particular user, this has the effect of stopping many attacks against these applications from crippling the entire machine. Further, many local DoS attacks should be defeated by this action. Now lets view /etc/security/limits.conf #Each line describes a limit for a user in the form: # # For example, to limit the number of processes a user may have/run, as well as limit the maxium size of a file a user may have. First we add these lines to restrict user processes to a specified amount given here. # Limit user processes Look above for at the beginning of /etc/security/limits.conf as to what this means. Now we add the last line to restrict users from having a file over 40 megs in size. # limits size of any one of users' files" /etc/security/limits.conf |
|||||||||||||