




















Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
An in-depth analysis of various types of malicious software, including viruses, worms, trojans, and logic bombs. It also covers countermeasures and distributed denial of service (ddos) attacks. Learn about the characteristics, operation, and impact of these malicious programs.
Typology: Slides
1 / 28
This page cannot be seen from the preview
Don't miss anything!





















parrying of a blow. What is itscharacteristic feature: Awaiting the blow. โ On War, Carl Von Clausewitz
๏ computer viruses have got a lot of publicity ๏ one of a family of malicious software ๏ effects usually obvious ๏ have figured in news reports, fiction,movies (often exaggerated) ๏ getting more attention than deserve ๏ are a concern though
๏ secret entry point into a program ๏ allows those who know access bypassingusual security procedures ๏ have been commonly used by developers ๏ a threat when left in production programsallowing exploited by attackers ๏ very hard to block in O/S ๏ requires good s/w development & update
๏ one of oldest types of malicious software ๏ code embedded in legitimate program ๏ activated when specified conditions met ๏ฌ eg presence/absence of some file ๏ฌ particular date/time ๏ฌ particular user ๏ when triggered typically damage system ๏ฌ modify/delete files/disks, halt machine, etc
๏ program which secretly takes over anothernetworked computer ๏ then uses it to indirectly launch attacks ๏ often used to launch distributed denial ofservice (DDoS) attacks ๏ exploits known flaws in network systems
๏ a piece of self-replicating code attached tosome other code ๏ฌ cf biological virus ๏ both propagates itself & carries a payload ๏ฌ carries code to make copies of itself ๏ฌ as well as code to perform some covert task
program V := {goto main;1234567;subroutine infect-executable := {loop: file := get-random-executable-file;if (first-line-of-file = 1234567) then goto loopelse prepend V to file; } subroutine do-damage := {whatever damage is to be done}subroutine trigger-pulled := {return true if condition holds}main: main-program := {infect-executable;if trigger-pulled then do-damage;goto next;} next: }
๏ can classify on basis of how they attack ๏ parasitic virus ๏ memory-resident virus ๏ boot sector virus ๏ stealth ๏ polymorphic virus ๏ metamorphic virus
๏ spread using email with attachmentcontaining a macro virus ๏ฌ cf Melissa ๏ triggered when user opens attachment ๏ or worse even when mail viewed by usingscripting features in mail agent ๏ hence propagate very quickly ๏ usually targeted at Microsoft Outlook mailagent & Word/Excel documents ๏ need better O/S & application security
๏ replicating but not infecting program ๏ typically spreads over a network ๏ฌ cf Morris Internet Worm in 1988 ๏ฌ led to creation of CERTs ๏ using users distributed privileges or by exploitingsystem vulnerabilities ๏ widely used by hackers to create zombie PC's , subsequently used for further attacks, esp DoS ๏ major issue is lack of security of permanentlyconnected systems, esp PC's
๏ best known classic worm ๏ released by Robert Morris in 1988 ๏ targeted Unix systems ๏ using several propagation techniques ๏ฌ simple password cracking of local pw file ๏ฌ exploit bug in finger daemon ๏ฌ exploit debug trapdoor in sendmail daemon ๏ if any attack succeeds then replicated self
๏ new spate of attacks from mid- ๏ Code Red - used MS IIS bug ๏ฌ probes random IPs for systems running IIS ๏ฌ had trigger time for denial-of-service attack ๏ฌ 2 nd wave infected 360000 servers in 14 hours ๏ Code Red 2 - installed backdoor ๏ Nimda - multiple infection mechanisms ๏ SQL Slammer - attacked MS SQL server ๏ Sobig.f - attacked open proxy servers ๏ Mydoom - mass email worm + backdoor
๏ best countermeasure is prevention ๏ but in general not possible ๏ hence need to do one or more of: ๏ฌ detection
๏ first-generation ๏ฌ scanner uses virus signature to identify virus ๏ฌ or change in length of programs ๏ second-generation ๏ฌ uses heuristic rules to spot viral infection ๏ฌ or uses crypto hash of program to spot changes ๏ third-generation ๏ฌ memory-resident programs identify virus by actions ๏ fourth-generation ๏ฌ packages with a variety of antivirus techniques ๏ฌ eg scanning & activity traps, access-controls ๏ arms race continues