During the release of a new software product specialized to track spam, ACME Software Inc notice that there was not as much traffic as they hoped to receive. During further investigation, they found that they could not view their own website. At that moment, the VP of sales received a call from the company's broker stating that ACME Software Inc stock fell 4 point due to lack of confidence. Several states away, spammers didn't like the idea of lower profit margins do to an easy to install spam blocking software so they thought they would fight back. Earlier that day, they took control of hundreds of compromised computers and used them as DoS zombies to attack ACME Software Inc's Internet servers in a vicious act of cyber assault. During an emergency press conference the next morning, ACME Software Inc's CIO announced his resignation as a result of a several million dollar corporate loss.
Scenarios like the one above happen a more then people think and are more costly then most will admit. Denial of Service (DoS) attacks are designed to deplete the resources of a target computer system in an attempt to take a node off line by crashing or overloading it. Distributed Denial of Service (DDoS) is a DoS attack that is engaged by many different locations. The most common DDoS attacks are instigated through viruses or zombie machines. There are many reasons that DoS attacks are executed, and most of them are out of malicious intent. DoS attacks are almost impossible to prevent if you are singled out as a target. It's difficult to distinguish the difference between a legitimate packet and one used for a DoS attack.
The purpose of this article is to give the reader with basic network knowledge a better understanding of the challenges presented by Denial of Service attacks, how they work, and ways to protect systems and networks from them.
Instigation:
Spoofing - Falsifying an Internet address (know as spoofing) is the method an attacker uses to fake an IP address. This is used to reroute traffic to a target network node or used to deceive a server into identifying the attacker as a legitimate node. When most of us think of this approach of hacking, we think of someone in another city essentially becoming you. The way TCP/IP is designed, the only way a criminal hacker or cracker can take over your Internet identity in this fashion is to blind spoof. This means that the impostor knows exactly what responses to send to a port, but will not get the corresponding response since the traffic is routed to the original system. If the spoofing is designed around a DoS attack, the internal address becomes the victim. Spoofing is used in most of the well-known DoS attacks. Many attackers will start a DoS attack to drop a node from the network so they can take over the IP address of that device. IP Hijacking is the main method used when attacking a secured network or attempting other attacks like the Man in the Middle attack.
SYN Flood - Attackers send a series of SYN requests to a target (victim). The target sends a SYN ACK in response and waits for an ACK to come back to complete the session set up. Instead of responding with an ACK, the attacker responds with another SYN to open up a new connection. This causes the connection queues and memory buffer to fill up, thereby denying service to legitimate TCP users. At this time, the attacker can hijack the system's IP address if that is the end goal. Spoofing the "source" IP address when sending a SYN flood will not only cover the offender's tracks, but is also a method of attack in itself. SYN Floods are the most commonly used DoS in viruses and are easy to write. See http://www.infosecprofessionals.com/code/synflood.c.txt
Smurf Attack- Smurf and Fraggle attacks are the easiest to prevent. A perpetrator sends a large number of ICMP echo (ping) traffic at IP broadcast addresses, using a fake source address. The "source" or spoofed address will be flooded with simultaneous replies (See CERT Advisory: CA-1998-01). This can be prevented by simply blocking broadcast traffic from remote network sources using access control lists.
Fraggle Attack - This types of attack is the same as a Smurf attack except using UDP instead if TCP. By sending an UDP echo (ping) traffic to IP broadcast addresses, the systems on the network will all respond to the spoofed address and affect the target system. This is a simple rewrite of the Smurf code. This can be prevented by simply blocking broadcast traffic from remote IP address.
Ping of Death - An attacker sends illegitimate ICMP (ping) packets larger than 65,536 bytes to a system with the intention of crashing it. These attacks have been outdated since the days of NT4 and Win95.
Teardrop - Otherwise known as an IP fragmentation attack, this DoS attack targets systems that are running Windows NT 4.0, Win95 , Linux up to 2.0.32. Like the Ping of Death, the Teardrop is no longer effective.
Application Attack - Thess are DoS attacks that involve exploiting an application vulnerability causing the target program to crash or restart the system.
Kazaa and Morpheus have a known flaw that will allow an attacker to consume all available bandwidth without being logged. See http://www.infosecprofessionals.com/code/kazaa.pl.txt
Microsoft's IIS 5 SSL also has an easy way to exploit vulnerability. Most exploits like these are easy to find on the Internet and can be copied and pasted as working code. There are thousands of exploits that can be used to DoS a target system/application. See http://www.infosecprofessionals.com/code/IIS5SSL.c.txt
Viruses, Worms, and Antivirus - Yes, Antivirus. Too many cases where the antivirus configuration is wrong or the wrong edition is installed. This lack of foresight causes an unintentional DDoS attack on the network by taking up valuable CPU resources and bandwidth. Viruses and worms also cause DDoS attacks by the nature of how they spread. Some purposefully attack an individual target after a system has been infected. The Blaster worm that exploits the DCOM RPC vulnerability (described in Microsoft Security Bulletin MS03-026) using TCP port 135 is a great example of this. The Blaster targeted Microsoft's windows update site by initiating a SYN FLOOD. Because of this, Microsoft decided to no longer resolve the DNS for 'windowsupdate.com'.
DoS attacks are impossible to stop. However, there are things you can do to mitigate potential damages they may cause to your environment. The main thing to remember is that you always need to keep up-to-date on the newest threats.
Mitigation:
Antivirus software - Installing an antivirus software with the latest virus definitions will help prevent your system from becoming a DoS zombie. Now, more then ever, this is an important feature that you must have. With lawsuits so prevalent, not having the proper protection can leave you open for downstream liability.
Software updates - Keep your software up to date at all times. This includes antivirus, email clients, and network servers. You also need to keep all network Operating Systems installed with the latest security patches. Microsoft has done a great job with making these patches available for their Windows distributions. Linux has been said to be more secure, but the patches are far more scarce. RedHat is planning on incorporating the NSA's SE Linux kernel into future releases. This will give Mandatory Access Control (MAC) capabilities to the Linux community.
Network protection - Using a combination of firewalls and Intrusion Detection Systems (IDS) can cut down on suspicious traffic and can make the difference between logged annoyance and your job. Firewalls should be set to deny all traffic that is not specifically designed to pass through. Integrating an IDS will warn you when strange traffic is present on your network. This will assist you in finding and stopping attacks.
Network device configuration - Configuring perimeter devices like routers can detect and in some cases prevent DoS attacks. Cisco routers can be configured to actively prevent SYN attacks starting in Cisco IOS 11.3 and higher using the TCP intercept command in global configuration mode.
Access-list number {deny | permit} tcp any destination destination-wildcard ip tcp intercept list access-list-number ip tcp intercept ? (will give you a good list of other options.)
Cisco routers can prevent Smurf and Fraggle attacks by blocking broadcast traffic. Since Cisco IOS 12.0, this is the default configuration. ACLs or access control lists should also be configured on all interfaces.
No ip directed-broadcast
The Cisco router can also be used to prevent IP spoofing. ip access-group list in interface access-list number deny icmp any any redirect access-list number deny ip 127.0.0.0 0.255.255.255 any access-list number deny ip 224.0.0.0 31.255.255.255 any access-list number deny ip host 0.0.0.0 any See Improving Security on Cisco Routers - www.cisco.com/warp/public/707/21.html
Old Cisco IOS versions are vulnerable to several DoS attacks. The "Black Angels" wrote a program called Cisco Global Exploiter. This is a great software to use when testing the security of your Cisco router version and configuration and can be found at http://www.blackangels.it/Projects/cge.htm
Security is not as mystical as people believe. DoS attacks come in many different types and can be devastating if you don't take the proper precautions. Keep up to date and take steps to secure network nodes. Keeping security in mind can minimize damages, downtime, and save your career.
Security Resources:
Black Angels: http://www.blackangels.it/
Cisco: http://www.cisco.com
Microsoft: http://www.microsoft.com/technet/secur
ity/current.aspx
Forum of Incident Response and Security Teams: http://www.first.org/
SANS Institute: http://www.sans.org/resources/
Author: Jeremy Martin CISSP, ISSMP, ISSAP, CEI, CEH, CHS-III, CCNA, Network+, A+ http://www.infosecwriter.com
Member of:
BECCA - Business Espionage Controls & Countermeasures Association
ISACA® - Information Systems Audit and Control Association
(ISC)² - International Information Systems Security
Certification Consortium ISSA - Information Systems Security Association.
OISSG - Open Information Systems Security Group
YEN NTEA - Young Executives Network
Spyware SolutionProbably Today's Biggest Computer Problem. You Suffer Without Knowing... Read More
Identity Theft and Your Personal Information Identity theft is... Read More
In a word, no - an email message has always... Read More
Today's Internet or World Wide Web is being over regulated.But,... Read More
At this point, if you've got the whole "turning the... Read More
Ebay is a great site and is used by many... Read More
Identity theft ? also known as ID theft, identity fraud... Read More
File sharing on p2p is soaring despite the music and... Read More
As you know, this time the virus under the name... Read More
From the "Ask Booster" column in the June 17, 2005... Read More
The E-Mail Identity Theft Scam is running Rampant. These E-Mail... Read More
Internet scams and frauds are on the rise! The quantity... Read More
Adware. Spyware. Pesky pop up ads. Internet congestion. Computer malfunctions... Read More
A few nights ago I received an email from "2CO"... Read More
Have you seen the web site, www.freestuff.com? Or have you... Read More
The top five online scams on the Internet hit nearly... Read More
I am in the midst of Oscar Wilde's The Picture... Read More
Spelt phishing, but pronounced as above, this despicable act is... Read More
Computer viruses infect millions of computers every day. Viruses can... Read More
Saturday, MasterCard blamed a vendor of ALL credit card providers... Read More
In recent days, I was one of the unfortunate persons... Read More
Huge number of spyware software applications are available in the... Read More
First the basic definition of Spyware: It is a type... Read More
Your computer is as slow as molasses. Your mouse freezes... Read More
A firewall is a system or gateway that prevents unauthorized... Read More
Spyware is software that runs on a personal computer without... Read More
If you know what is the 'Fishing' then it's very... Read More
If you use the internet, you have probably been infected... Read More
The IFCC (Internet Fraud Complaint Center) received over 200,000 complaint... Read More
Microsoft routinely releases new security updates, many of which are... Read More
Business on the internet is getting down right shameless. This... Read More
Long gone are the days that we could feel secure... Read More
Millions of people make purchases online, but many people are... Read More
Spyware is software or hardware installed on a computer without... Read More
First of all we need to get some terms stated.... Read More
In recent days, I was one of the unfortunate persons... Read More
Watching how the traditional media covers the latest virus or... Read More
Do you sometimes notice your computer running slower. Is your... Read More
The menacing campaigns that drive the corporate spyware and adware... Read More
After Two Security Assessments I Must Be Secure, Right? ... Read More
History and BackgroundThe virus was one of the first ever... Read More
Let us take the example of scrambling an egg. First,... Read More
Be careful of sites that promise to send you "instant... Read More
You've seen it in the news - 40 million credit... Read More
No, this article isn't about some new, lose-20-pounds-in-a-week, certified-by-some-tan-Southern-California-doctor diet.... Read More
A firewall is a system or gateway that prevents unauthorized... Read More
Recently, my site and other internet accounts ( http://www.nabaza.com/sites.htm )... Read More
It has been said that with the wealth of information,... Read More
Spyware protection software is the easiest way of removing spyware... Read More
The Internet offers a global marketplace for consumers and businesses.... Read More
Identity Theft and Your Personal Information Identity theft is... Read More
Huge number of spyware software applications are available in the... Read More
Have been an Internet user for more than 9 years,... Read More
We all know that it's dangerous to use the same... Read More
Remember the television show about the nosy neighbor Mrs. Kravitz... Read More
There is nothing more important that password security in world... Read More
Virus damage estimated at $55 billion in 2003. "SINGAPORE -... Read More
Spyware symptoms happen when your computer gets bogged down with... Read More
Can you protect your computer from all possible viruses and... Read More
Manual Spy Bot Removal > BookedSpaceBookedSpace is an Internet Explorer... Read More
Spyware is software that runs on a personal computer without... Read More
File sharing on p2p is soaring despite the music and... Read More
Do you really have to know how feeds work? Not... Read More
WHAT IS HACKING?Hacking, sometimes known as "computer crime" has only... Read More
The Federal Bureau of Investigation has identified "phishing" as the... Read More
1. Importance of a Virus Scanner: A Antivirus program can... Read More
Internet Security |