kickster
04-08-2004, 04:07 PM
How do you guys protect yourself from DOS attacks? Is there any possible way to detect and block it before it brings down the server?
![]() | View Full Version : How to protect your server from DOS attacks kickster 04-08-2004, 04:07 PM How do you guys protect yourself from DOS attacks? Is there any possible way to detect and block it before it brings down the server? dynamicnet 04-08-2004, 04:53 PM Greetings: DoS protection has limits, and DDoS is near impossible to handle unless you are using hardware... even then it is a battle for resources. You may want to consider the following on a UNIX-box: * Disable telnet. * Limit SSH access to specific IP addresses. * Disable direct root login. * Remove unnecessary packages / software. * Harden the kernel against synflood and basic DOS attacks. * Remove common user access to compilers and fetching software (wget, fetch, lynx, etc.). * Ensure /tmp is in its own partition with noexec, nosuid. * Ensure kernel and software is up to date. * Remove unnecessary users and groups. * Install chkrootkit, logwatch, tripwire. * Install a firewall, and port scan detector. * For Apache servers, install mod_security and configure for use with FrontPage, PHPMyAdmin, Site Studio, and common applications. * Secure DNS Servers * Utilize firewall automation to mitigate brute force FTP, syn floods, mail bombs, and out-of-network trojan’d servers from impacting your servers It is important to note that security is an ongoing venture. Even if you were to take all of the steps listed above, you would still have a regular routine of review, update, research, patch, etc. Thank you. |