# Computer worm

> Mediated Wiki article. Canonical URL: https://mediated.wiki/source/Computer_worm
> Markdown URL: https://mediated.wiki/source/Computer_worm.md
> Source: https://en.wikipedia.org/wiki/Computer_worm
> Source revision: 1356689028
> License: Creative Commons Attribution-ShareAlike 4.0 International (https://creativecommons.org/licenses/by-sa/4.0/)

Self-replicating malware program

This article is about malicious software which can self-replicate. For the data storage device, see [write once read many](/source/Write_once_read_many). For other uses, see [Worm (disambiguation)](/source/Worm_(disambiguation)).

Not to be confused with [Computer virus](/source/Computer_virus).

[Hex dump](/source/Hex_dump) of the [Blaster worm](/source/Blaster_(computer_worm)), showing a message left for [Microsoft](/source/Microsoft) [CEO](/source/CEO) [Bill Gates](/source/Bill_Gates) by the worm's creator

Spread of [Conficker worm](/source/Conficker_worm)

A **computer worm** is a standalone [malware](/source/Malware) [computer program](/source/Computer_program) that replicates itself in order to spread to other computers.[1] It often uses a [computer network](/source/Computer_network) to spread itself, relying on security failures on the target computer to access it. It will use this machine as a host to scan and infect other computers. When these new worm-invaded computers are controlled, the worm will continue to scan and infect other computers using these computers as hosts, and this behavior will continue.[2] Computer worms use [recursive methods](/source/Recursion_(computer_science)) to copy themselves without host programs and distribute themselves based on exploiting the advantages of [exponential growth](/source/Exponential_growth), thus controlling and infecting more and more computers in a short time.[3] Worms almost always cause at least some harm to the network, even if only by consuming [bandwidth](/source/Bandwidth_(computing)), whereas [viruses](/source/Computer_virus) almost always corrupt or modify files on a targeted computer.

Many worms are designed only to spread, and do not attempt to change the systems they pass through. However, as the [Morris worm](/source/Morris_worm) and [Mydoom](/source/Mydoom) showed, even these "payload-free" worms can cause major disruption by increasing network traffic and other unintended effects.

## History

The first ever computer worm is generally accepted to be a self-replicating version of [Creeper](/source/Creeper_and_Reaper) created by [Ray Tomlinson](/source/Ray_Tomlinson) and Bob Thomas at [BBN](/source/BBN_Technologies) in 1971 to replicate itself across the [ARPANET](/source/ARPANET).[4][5] Tomlinson also devised the first [antivirus software](/source/Antivirus_software), named [Reaper](/source/Reaper_(program)), to delete the Creeper program.

The term "worm" was first used in this sense in [John Brunner](/source/John_Brunner_(novelist))'s 1975 novel, *[The Shockwave Rider](/source/The_Shockwave_Rider)*. In the novel, Nichlas Haflinger designs and sets off a data-gathering worm in an act of revenge against the powerful people who run a national electronic information web that induces mass conformity. "You have the biggest-ever worm loose in the net, and it automatically sabotages any attempt to monitor it. There's never been a worm with that tough a head or that long a tail!"[6] "Then the answer dawned on him, and he almost laughed. Fluckner had resorted to one of the oldest tricks in the store and turned loose in the continental net a self-perpetuating tapeworm, probably headed by a denunciation group "borrowed" from a major corporation, which would shunt itself from one nexus to another every time his credit-code was punched into a keyboard. It could take days to kill a worm like that, and sometimes weeks."[6]

[Xerox PARC](/source/Xerox_PARC) was studying the use of "worm" programs for [distributed computing](/source/Distributed_computing) in 1979.[7]

On November 2, 1988, [Robert Tappan Morris](/source/Robert_Tappan_Morris), a [Cornell University](/source/Cornell_University) computer science graduate student, unleashed what became known as the [Morris worm](/source/Morris_worm), disrupting many computers then on the Internet, guessed at the time to be one tenth of all those connected.[8] During the Morris appeal process, the U.S. Court of Appeals estimated the cost of removing the worm from each installation at between $200 and $53,000; this work prompted the formation of the [CERT Coordination Center](/source/CERT_Coordination_Center)[9] and Phage mailing list.[10] Morris himself became the first person tried and convicted under the 1986 [Computer Fraud and Abuse Act](/source/Computer_Fraud_and_Abuse_Act).[11]

[Conficker](/source/Conficker), a computer worm discovered in 2008 that primarily targeted [Microsoft Windows](/source/Microsoft_Windows) operating systems, is a worm that employs three different spreading strategies: local probing, neighborhood probing, and global probing.[12] This worm was considered a hybrid epidemic and affected millions of computers. The term "hybrid epidemic" is used because of the three separate methods it employed to spread, which was discovered through code analysis.[13]

## Features

**Independence**

Computer viruses generally require a host program.[14] The virus writes its own code into the host program. When the program runs, the written virus program is executed first, causing infection and damage. A worm does not need a host program, as it is an independent program or code chunk. Therefore, it is not restricted by the [host program](/source/Computer_program), but can run independently and actively carry out attacks.[15][16]

**Exploit attacks**

Because a worm is not limited by the host program, worms can take advantage of various operating system vulnerabilities to carry out active attacks. For example, the "[Nimda](/source/Nimda)" virus [exploits](/source/Exploit_(computer_security)) [vulnerabilities](/source/Vulnerability_(computing)) to attack.

**Complexity**

Some worms are combined with web page scripts, and are hidden in [HTML](/source/HTML) pages using [VBScript](/source/VBScript), [ActiveX](/source/ActiveX) and other technologies. When a user accesses a webpage containing a virus, the virus automatically resides in memory and waits to be triggered. There are also some worms that are combined with [backdoor](/source/Backdoor_(computing)) programs or [Trojan horses](/source/Trojan_horse_(computing)), such as "[Code Red](/source/Code_Red_(computer_worm))".[17]

**Contagiousness**

Worms are more infectious than traditional viruses. They not only infect local computers, but also all servers and clients on the network based on the local computer. Worms can easily spread through [shared folders](/source/Shared_folder), [e-mails](/source/Email),[18] malicious web pages, and servers with a large number of vulnerabilities in the network.[19]

## Harm

Any code designed to do more than spread the worm is typically referred to as the "[payload](/source/Payload_(software))". Typical malicious payloads might delete files on a host system (e.g., the [ExploreZip](/source/ExploreZip) worm), encrypt files in a [ransomware](/source/Ransomware) attack (e.g., the [WannaCry](/source/WannaCry) worm), or [exfiltrate data](/source/Data_theft) such as confidential documents or passwords.[20]

Some worms may install a [backdoor](/source/Backdoor_(computing)). This allows the computer to be remotely controlled by the worm author as a "[zombie](/source/Zombie_computers)". Networks of such machines are often referred to as [botnets](/source/Botnets) and are very commonly used for a range of malicious purposes, including sending [spam](/source/E-mail_spam) or performing [DoS](/source/Denial-of-service_attack) attacks.[21][22][23]

Some special worms attack industrial systems in a targeted manner. [Stuxnet](/source/Stuxnet) was primarily transmitted through LANs and infected thumb-drives, as its targets were never connected to untrusted networks, like the internet. This virus can destroy the core production control computer software used by chemical, power generation and power transmission companies in various countries around the world - in Stuxnet's case, Iran, Indonesia and India were hardest hit - it was used to "issue orders" to other equipment in the factory, and to hide those commands from being detected. Stuxnet used multiple vulnerabilities and four different zero-day exploits (e.g.: [\[1\]](http://www.microsoft.com/technet/security/advisory/2286198.mspx)) in [Windows systems](/source/Windows) and Siemens [SIMATICWinCC](/source/SIMATIC_WinCC) systems to attack the embedded programmable logic controllers of industrial machines. Although these systems operate independently from the network, if the operator inserts a virus-infected drive into the system's USB interface, the virus will be able to gain control of the system without any other operational requirements or prompts.[24][25][26]

## Countermeasures

Worms spread by exploiting vulnerabilities in operating systems. Vendors with security problems supply regular security updates[27] (see "[Patch Tuesday](/source/Patch_Tuesday)"), and if these are installed to a machine, then the majority of worms are unable to spread to it. If a vulnerability is disclosed before the security patch released by the vendor, a [zero-day attack](/source/Zero-day_attack) is possible.

Users need to be wary of opening unexpected emails,[28][29] and should not run attached files or programs, or visit web sites that are linked to such emails. However, as with the [ILOVEYOU](/source/ILOVEYOU) worm, and with the increased growth and efficiency of [phishing](/source/Phishing) attacks, it remains possible to trick the end-user into running malicious code.

[Anti-virus](/source/Antivirus_software) and [anti-spyware](/source/Antispyware) software are helpful, but must be kept up-to-date with new pattern files at least every few days. The use of a [firewall](/source/Firewall_(computing)) is also recommended.

Users can minimize the threat posed by worms by keeping their computers' operating system and other software up to date, avoiding opening unrecognized or unexpected emails and running [firewall](/source/Firewall_(computing)) and antivirus software.[30]

Mitigation techniques include:

- [ACLs](/source/Access_Control_List#Networking_ACLs) in [routers](/source/Router_(computing)) and [switches](/source/Network_switch)

- [Packet-filters](/source/Firewall_(networking))

- [TCP Wrapper](/source/TCP_Wrapper)/[ACL](https://en.wikipedia.org/w/index.php?title=ACL_(software)&action=edit&redlink=1) enabled network service [daemons](/source/Daemon_(computing))

- [EPP](/source/Endpoint_protection)/[EDR](/source/Endpoint_detection_and_response) software

- [Nullroute](/source/Nullroute)

Infections can sometimes be detected by their behavior - typically scanning the Internet randomly, looking for vulnerable hosts to infect.[31][32] In addition, machine learning techniques can be used to detect new worms, by analyzing the behavior of the suspected computer.[33]

## Helpful worms

A **helpful worm** or **anti-worm** is a worm designed to do something that its author feels is helpful, though not necessarily with the permission of the executing computer's owner. Beginning with the first research into worms at [Xerox PARC](/source/Xerox_PARC), there have been attempts to create useful worms. Those worms allowed [John Shoch](/source/John_Shoch) and Jon Hupp to test the [Ethernet](/source/Ethernet) principles on their network of [Xerox Alto](/source/Xerox_Alto) computers.[34] Similarly, the [Nachi](/source/Nachi_worm) family of worms tried to download and install patches from Microsoft's website to fix vulnerabilities in the host system by exploiting those same vulnerabilities.[35] In practice, although this may have made these systems more secure, it generated considerable network traffic, rebooted the machine in the course of patching it, and did its work without the consent of the computer's owner or user. Another example of this approach is [Roku OS](/source/Roku_OS) patching a bug allowing for Roku OS to be rooted via an update to their screensaver channels, which the screensaver would attempt to connect to the telnet and patch the device.[36] Regardless of their payload or their writers' intentions, security experts regard all worms as [malware](/source/Malware).

One study proposed the first computer worm that operates on the second layer of the [OSI model](/source/OSI_model) (Data link Layer), utilizing topology information such as [Content-addressable memory](/source/Content-addressable_memory) (CAM) tables and [Spanning Tree](/source/Spanning_tree) information stored in switches to propagate and probe for vulnerable nodes until the enterprise network is covered.[37]

Anti-worms have been used to combat the effects of the [Code Red](/source/Code_Red_(computer_worm)),[38] [Blaster](/source/Blaster_worm), and [Santy](/source/Santy) worms. [Welchia](/source/Welchia) is an example of a helpful worm.[39] Utilizing the same deficiencies exploited by the [Blaster worm](/source/Blaster_worm), Welchia infected computers and automatically began downloading [Microsoft](/source/Microsoft) security updates for [Windows](/source/Microsoft_Windows) without the users' consent. Welchia automatically reboots the computers it infects after installing the updates. One of these updates was the patch that fixed the exploit.[39]

Other examples of helpful worms are "Den_Zuko", "Cheeze", "CodeGreen", and "Millenium".[39]

Art worms support artists in the performance of massive scale ephemeral artworks. It turns the infected computers into nodes that contribute to the artwork.[40]

## See also

- [List of computer worms](/source/List_of_computer_worms)

- [BlueKeep](/source/BlueKeep_(security_vulnerability))

- [Botnet](/source/Botnet)

- [Code Shikara (Worm)](/source/Code_Shikara_(Worm))

- [Computer and network surveillance](/source/Computer_and_network_surveillance)

- [Computer virus](/source/Computer_virus)

- [Computer security](/source/Computer_security)

- [Email spam](/source/Email_spam)

- [Father Christmas (computer worm)](/source/Father_Christmas_(computer_worm))

- [Self-replicating machine](/source/Self-replicating_machine)

- [Technical support scam](/source/Technical_support_scam) – unsolicited phone calls from a fake "tech support" person, claiming that the computer has a virus or other problems

- [Timeline of computer viruses and worms](/source/Timeline_of_computer_viruses_and_worms)

- [Trojan horse (computing)](/source/Trojan_horse_(computing))

- [Worm memory test](/source/Worm_memory_test)

- [XSS worm](/source/XSS_worm)

- [Zombie (computer science)](/source/Zombie_(computer_science))

## References

1. **[^](#cite_ref-1)** Barwise, Mike. ["What is an internet worm?"](https://web.archive.org/web/20150324073759/http://www.bbc.co.uk/webwise/guides/internet-worms). BBC. Archived from [the original](https://www.bbc.co.uk/webwise/guides/internet-worms) on 2015-03-24. Retrieved 9 September 2010.

1. **[^](#cite_ref-2)** Zhang, Changwang; Zhou, Shi; Chain, Benjamin M. (2015-05-15). ["Hybrid Epidemics—A Case Study on Computer Worm Conficker"](https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4433115). *PLOS ONE*. **10** (5) e0127478. [arXiv](/source/ArXiv_(identifier)):[1406.6046](https://arxiv.org/abs/1406.6046). [Bibcode](/source/Bibcode_(identifier)):[2015PLoSO..1027478Z](https://ui.adsabs.harvard.edu/abs/2015PLoSO..1027478Z). [doi](/source/Doi_(identifier)):[10.1371/journal.pone.0127478](https://doi.org/10.1371%2Fjournal.pone.0127478). [ISSN](/source/ISSN_(identifier)) [1932-6203](https://search.worldcat.org/issn/1932-6203). [PMC](/source/PMC_(identifier)) [4433115](https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4433115). [PMID](/source/PMID_(identifier)) [25978309](https://pubmed.ncbi.nlm.nih.gov/25978309).

1. **[^](#cite_ref-3)** Marion, Jean-Yves (2012-07-28). ["From Turing machines to computer viruses"](https://doi.org/10.1098%2Frsta.2011.0332). *Philosophical Transactions of the Royal Society A: Mathematical, Physical and Engineering Sciences*. **370** (1971): 3319–3339. [Bibcode](/source/Bibcode_(identifier)):[2012RSPTA.370.3319M](https://ui.adsabs.harvard.edu/abs/2012RSPTA.370.3319M). [doi](/source/Doi_(identifier)):[10.1098/rsta.2011.0332](https://doi.org/10.1098%2Frsta.2011.0332). [ISSN](/source/ISSN_(identifier)) [1364-503X](https://search.worldcat.org/issn/1364-503X). [PMID](/source/PMID_(identifier)) [22711861](https://pubmed.ncbi.nlm.nih.gov/22711861).

1. **[^](#cite_ref-IEEE_4-0)** [*IEEE Annals of the History of Computing*](https://books.google.com/books?id=xv9UAAAAMAAJ). Vol. 27–28. IEEE Computer Society. 2005. p. 74. [...]from one machine to another led to experimentation with the *Creeper* program, which became the world's first computer virus: a computation that used the network to recreate itself on another node, and spread from node to node. The source code of creeper remains unknown.

1. **[^](#cite_ref-Guardian_5-0)** [From the first email to the first YouTube video: a definitive internet history](https://www.theguardian.com/technology/2009/oct/23/internet-history). Tom Meltzer and Sarah Phillips. *[The Guardian](/source/The_Guardian)*. 23 October 2009

1. ^ [***a***](#cite_ref-:0_6-0) [***b***](#cite_ref-:0_6-1) Brunner, John (1975). [*The Shockwave Rider*](https://archive.org/details/shockwaverider0000brun). New York: Ballantine Books. [ISBN](/source/ISBN_(identifier)) [978-0-06-010559-4](https://en.wikipedia.org/wiki/Special:BookSources/978-0-06-010559-4).

1. **[^](#cite_ref-7)** J. Postel (17 May 1979). [*Internet Meeting Notes 8, 9, 10 & 11 May 1979*](https://www.rfc-editor.org/rfc/rfc2555#page-5). [IETF](/source/Internet_Engineering_Task_Force). p. 5. [doi](/source/Doi_(identifier)):[10.17487/RFC2555](https://doi.org/10.17487%2FRFC2555). [RFC](/source/Request_for_Comments) [2555](https://datatracker.ietf.org/doc/html/rfc2555).

1. **[^](#cite_ref-8)** ["The Submarine"](http://www.paulgraham.com/submarine.html#f4n). *www.paulgraham.com*.

1. **[^](#cite_ref-9)** ["Security of the Internet"](https://web.archive.org/web/19980415061511/http://www.cert.org/encyc_article/tocencyc.html). *CERT/CC*. Archived from [the original](http://www.cert.org/encyc_article/tocencyc.html) on 1998-04-15. Retrieved 2010-06-08.

1. **[^](#cite_ref-10)** ["Phage mailing list"](https://web.archive.org/web/20110726143040/http://securitydigest.org/phage/). securitydigest.org. Archived from [the original](http://securitydigest.org/phage/) on 2011-07-26. Retrieved 2014-09-17.

1. **[^](#cite_ref-11)** Dressler, J. (2007). "United States v. Morris". *Cases and Materials on Criminal Law*. St. Paul, MN: Thomson/West. [ISBN](/source/ISBN_(identifier)) [978-0-314-17719-3](https://en.wikipedia.org/wiki/Special:BookSources/978-0-314-17719-3).

1. **[^](#cite_ref-12)** Zhang, Changwang; Zhou, Shi; Chain, Benjamin M. (2015-05-15). ["Hybrid Epidemics—A Case Study on Computer Worm Conficker"](https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4433115). *PLOS ONE*. **10** (5) e0127478. [arXiv](/source/ArXiv_(identifier)):[1406.6046](https://arxiv.org/abs/1406.6046). [Bibcode](/source/Bibcode_(identifier)):[2015PLoSO..1027478Z](https://ui.adsabs.harvard.edu/abs/2015PLoSO..1027478Z). [doi](/source/Doi_(identifier)):[10.1371/journal.pone.0127478](https://doi.org/10.1371%2Fjournal.pone.0127478). [ISSN](/source/ISSN_(identifier)) [1932-6203](https://search.worldcat.org/issn/1932-6203). [PMC](/source/PMC_(identifier)) [4433115](https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4433115). [PMID](/source/PMID_(identifier)) [25978309](https://pubmed.ncbi.nlm.nih.gov/25978309).

1. **[^](#cite_ref-13)** Zhang, Changwang; Zhou, Shi; Chain, Benjamin M. (2015-05-15). Sun, Gui-Quan (ed.). ["Hybrid Epidemics—A Case Study on Computer Worm Conficker"](https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4433115). *PLOS ONE*. **10** (5) e0127478. [arXiv](/source/ArXiv_(identifier)):[1406.6046](https://arxiv.org/abs/1406.6046). [Bibcode](/source/Bibcode_(identifier)):[2015PLoSO..1027478Z](https://ui.adsabs.harvard.edu/abs/2015PLoSO..1027478Z). [doi](/source/Doi_(identifier)):[10.1371/journal.pone.0127478](https://doi.org/10.1371%2Fjournal.pone.0127478). [ISSN](/source/ISSN_(identifier)) [1932-6203](https://search.worldcat.org/issn/1932-6203). [PMC](/source/PMC_(identifier)) [4433115](https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4433115). [PMID](/source/PMID_(identifier)) [25978309](https://pubmed.ncbi.nlm.nih.gov/25978309).

1. **[^](#cite_ref-14)** ["Worm vs. Virus: What's the Difference and Does It Matter?"](https://www.avast.com/c-worm-vs-virus). *Worm vs. Virus: What's the Difference and Does It Matter?*. Retrieved 2021-10-08.

1. **[^](#cite_ref-15)** Yeo, Sang-Soo. (2012). *Computer science and its applications: CSA 2012, Jeju, Korea, 22-25.11.2012*. Springer. p. 515. [ISBN](/source/ISBN_(identifier)) [978-94-007-5699-1](https://en.wikipedia.org/wiki/Special:BookSources/978-94-007-5699-1). [OCLC](/source/OCLC_(identifier)) [897634290](https://search.worldcat.org/oclc/897634290).

1. **[^](#cite_ref-16)** Yu, Wei; Zhang, Nan; Fu, Xinwen; Zhao, Wei (October 2010). "Self-Disciplinary Worms and Countermeasures: Modeling and Analysis". *IEEE Transactions on Parallel and Distributed Systems*. **21** (10): 1501–1514. [Bibcode](/source/Bibcode_(identifier)):[2010ITPDS..21.1501Y](https://ui.adsabs.harvard.edu/abs/2010ITPDS..21.1501Y). [doi](/source/Doi_(identifier)):[10.1109/tpds.2009.161](https://doi.org/10.1109%2Ftpds.2009.161). [ISSN](/source/ISSN_(identifier)) [1045-9219](https://search.worldcat.org/issn/1045-9219). [S2CID](/source/S2CID_(identifier)) [2242419](https://api.semanticscholar.org/CorpusID:2242419).

1. **[^](#cite_ref-17)** Brooks, David R. (2017), "Introducing HTML", *Programming in HTML and PHP*, Undergraduate Topics in Computer Science, Springer International Publishing, pp. 1–10, [doi](/source/Doi_(identifier)):[10.1007/978-3-319-56973-4_1](https://doi.org/10.1007%2F978-3-319-56973-4_1), [ISBN](/source/ISBN_(identifier)) [978-3-319-56972-7](https://en.wikipedia.org/wiki/Special:BookSources/978-3-319-56972-7)

1. **[^](#cite_ref-18)** Deng, Yue; Pei, Yongzhen; Li, Changguo (2021-11-09). ["Parameter estimation of a susceptible–infected–recovered–dead computer worm model"](http://journals.sagepub.com/doi/10.1177/00375497211009576). *Simulation*. **98** (3): 209–220. [doi](/source/Doi_(identifier)):[10.1177/00375497211009576](https://doi.org/10.1177%2F00375497211009576). [ISSN](/source/ISSN_(identifier)) [0037-5497](https://search.worldcat.org/issn/0037-5497). [S2CID](/source/S2CID_(identifier)) [243976629](https://api.semanticscholar.org/CorpusID:243976629).

1. **[^](#cite_ref-19)** Lawton, George (June 2009). "On the Trail of the Conficker Worm". *Computer*. **42** (6): 19–22. [Bibcode](/source/Bibcode_(identifier)):[2009Compr..42f..19L](https://ui.adsabs.harvard.edu/abs/2009Compr..42f..19L). [doi](/source/Doi_(identifier)):[10.1109/mc.2009.198](https://doi.org/10.1109%2Fmc.2009.198). [ISSN](/source/ISSN_(identifier)) [0018-9162](https://search.worldcat.org/issn/0018-9162). [S2CID](/source/S2CID_(identifier)) [15572850](https://api.semanticscholar.org/CorpusID:15572850).

1. **[^](#cite_ref-20)** ["What is a malicious payload?"](https://www.cloudflare.com/en-gb/learning/security/glossary/malicious-payload/). *www.cloudflare.com*. Retrieved 2025-01-02.

1. **[^](#cite_ref-21)** Ray, Tiernan (February 18, 2004). ["Business & Technology: E-mail viruses blamed as spam rises sharply"](https://web.archive.org/web/20120826193746/http://seattletimes.nwsource.com/html/businesstechnology/2001859752_spamdoubles18.html). *The Seattle Times*. Archived from [the original](http://seattletimes.nwsource.com/html/businesstechnology/2001859752_spamdoubles18.html) on August 26, 2012. Retrieved May 18, 2007.

1. **[^](#cite_ref-22)** McWilliams, Brian (October 9, 2003). ["Cloaking Device Made for Spammers"](https://www.wired.com/news/business/0,1367,60747,00.html). *Wired*.

1. **[^](#cite_ref-23)** ["Hacker threats to bookies probed"](https://news.bbc.co.uk/1/hi/technology/3513849.stm). *BBC News*. February 23, 2004.

1. **[^](#cite_ref-24)** Bronk, Christopher; Tikk-Ringas, Eneken (May 2013). "The Cyber Attack on Saudi Aramco". *Survival*. **55** (2): 81–96. [doi](/source/Doi_(identifier)):[10.1080/00396338.2013.784468](https://doi.org/10.1080%2F00396338.2013.784468). [ISSN](/source/ISSN_(identifier)) [0039-6338](https://search.worldcat.org/issn/0039-6338). [S2CID](/source/S2CID_(identifier)) [154754335](https://api.semanticscholar.org/CorpusID:154754335).

1. **[^](#cite_ref-25)** Lindsay, Jon R. (July 2013). "Stuxnet and the Limits of Cyber Warfare". *Security Studies*. **22** (3): 365–404. [doi](/source/Doi_(identifier)):[10.1080/09636412.2013.816122](https://doi.org/10.1080%2F09636412.2013.816122). [ISSN](/source/ISSN_(identifier)) [0963-6412](https://search.worldcat.org/issn/0963-6412). [S2CID](/source/S2CID_(identifier)) [154019562](https://api.semanticscholar.org/CorpusID:154019562).

1. **[^](#cite_ref-26)** Wang, Guangwei; Pan, Hong; Fan, Mingyu (2014). "Dynamic Analysis of a Suspected Stuxnet Malicious Code". *Proceedings of the 3rd International Conference on Computer Science and Service System*. Vol. 109. Paris, France: Atlantis Press. [doi](/source/Doi_(identifier)):[10.2991/csss-14.2014.86](https://doi.org/10.2991%2Fcsss-14.2014.86). [ISBN](/source/ISBN_(identifier)) [978-94-6252-012-7](https://en.wikipedia.org/wiki/Special:BookSources/978-94-6252-012-7).

1. **[^](#cite_ref-27)** ["USN list"](http://www.ubuntu.com/usn). Ubuntu. Retrieved 2012-06-10.

1. **[^](#cite_ref-28)** ["Threat Description Email-Worm"](https://web.archive.org/web/20180116193554/https://www.f-secure.com/v-descs/iworm.shtml). Archived from [the original](https://www.f-secure.com/v-descs/iworm.shtml) on 2018-01-16. Retrieved 2018-12-25.

1. **[^](#cite_ref-29)** ["Email-Worm:VBS/LoveLetter Description | F-Secure Labs"](https://www.f-secure.com/v-descs/love.shtml). *www.f-secure.com*.

1. **[^](#cite_ref-30)** ["Computer Worm"](https://web.archive.org/web/20260102145454/https://www.veracode.com/web/20260102145454/https://www.veracode.com/security/computer-worm/). Veracode. 2014-02-02. Archived from [the original](http://www.veracode.com/security/computer-worm) on 2026-01-02. Retrieved 2015-04-04.

1. **[^](#cite_ref-31)** Sellke, S. H.; Shroff, N. B.; Bagchi, S. (2008). "Modeling and Automated Containment of Worms". *IEEE Transactions on Dependable and Secure Computing*. **5** (2): 71–86. [Bibcode](/source/Bibcode_(identifier)):[2008ITDSC...5...71S](https://ui.adsabs.harvard.edu/abs/2008ITDSC...5...71S). [doi](/source/Doi_(identifier)):[10.1109/tdsc.2007.70230](https://doi.org/10.1109%2Ftdsc.2007.70230).

1. **[^](#cite_ref-32)** ["A New Way to Protect Computer Networks from Internet Worms"](http://newswise.com/articles/view/541456/). *Newswise*. Retrieved July 5, 2011.

1. **[^](#cite_ref-33)** Moskovitch, Robert; Elovici, Yuval; Rokach, Lior (2008). "Detection of unknown computer worms based on behavioral classification of the host". *Computational Statistics & Data Analysis*. **52** (9): 4544–4566. [doi](/source/Doi_(identifier)):[10.1016/j.csda.2008.01.028](https://doi.org/10.1016%2Fj.csda.2008.01.028). [S2CID](/source/S2CID_(identifier)) [1097834](https://api.semanticscholar.org/CorpusID:1097834).

1. **[^](#cite_ref-34)** Shoch, John; Hupp, Jon (Mar 1982). ["The "Worm" Programs - Early Experience with a Distributed Computation"](https://vx-underground.org/archive/VxHeaven/lib/ajm01.html). *Communications of the ACM*. **25** (3): 172–180. [doi](/source/Doi_(identifier)):[10.1145/358453.358455](https://doi.org/10.1145%2F358453.358455). [S2CID](/source/S2CID_(identifier)) [1639205](https://api.semanticscholar.org/CorpusID:1639205).

1. **[^](#cite_ref-35)** ["Virus alert about the Nachi worm"](http://support.microsoft.com/kb/826234). Microsoft.

1. **[^](#cite_ref-36)** ["Root My Roku"](https://github.com/llamasoft/RootMyRoku#:~:text=In%20the%20past%2C%20Roku%20has%20taken%20some%20creative%20measures%20to%20forcefully%20patch%20jailbroken%20devices.%20One%20such%20example%20was%20an%20update%20to%20the%20screensaver%20channel%20that%20would%20check%20for%20a%20telnet%20service%2C%20connect%20to%20it%2C%20and%20command%20it%20to%20un%2Droot%20and%20update%20the%20device.). *[GitHub](/source/GitHub)*.

1. **[^](#cite_ref-semiauto_worm_37-0)** Al-Salloum, Z. S.; Wolthusen, S. D. (2010). "A link-layer-based self-replicating vulnerability discovery agent". *The IEEE symposium on Computers and Communications*. p. 704. [doi](/source/Doi_(identifier)):[10.1109/ISCC.2010.5546723](https://doi.org/10.1109%2FISCC.2010.5546723). [ISBN](/source/ISBN_(identifier)) [978-1-4244-7754-8](https://en.wikipedia.org/wiki/Special:BookSources/978-1-4244-7754-8). [S2CID](/source/S2CID_(identifier)) [3260588](https://api.semanticscholar.org/CorpusID:3260588).

1. **[^](#cite_ref-38)** ["vnunet.com 'Anti-worms' fight off Code Red threat"](https://web.archive.org/web/20010914021701/http://www.vnunet.com/News/1125206). Sep 14, 2001. Archived from [the original](http://www.vnunet.com/News/1125206) on 2001-09-14.

1. ^ [***a***](#cite_ref-Welch_39-0) [***b***](#cite_ref-Welch_39-1) [***c***](#cite_ref-Welch_39-2) [*The Welchia Worm*](https://www.giac.org/paper/gcih/517/welchia-worm/105720). December 18, 2003. p. 1. Retrieved 9 June 2014.

1. **[^](#cite_ref-40)** Aycock, John (2022-09-15). ["Painting the Internet"](https://muse.jhu.edu/article/236371/pdf). *Leonardo*. **42** (2): 112–113 – via MUSE.

## External links

- [Malware Guide](https://web.archive.org/web/20160304232730/https://www.vernalex.com/guides/malware/) (archived link) – Guide for understanding, removing and preventing worm infections on Vernalex.com.

- ["The 'Worm' Programs – Early Experience with a Distributed Computation"](http://dl.acm.org/citation.cfm?id=358455), John Shoch and Jon Hupp, *Communications of the ACM*, Volume 25 Issue 3 (March 1982), pp. 172–180.

- ["The Case for Using Layered Defenses to Stop Worms"](https://web.archive.org/web/20160322104740/https://www.nsa.gov/ia/_files/support/WORMPAPER.pdf), Unclassified report from the U.S. National Security Agency (NSA), 18 June 2004.

- [Worm Evolution](https://archive.today/20130222110448/http://www.digitalthreat.net/2009/05/worm-evolution/) (archived link), paper by Jago Maniscalchi on Digital Threat, 31 May 2009.

- [Comprehensive Study on Computer Worm](https://www.jncet.org/Manuscripts/Volume-7/Issue-9/Vol-7-issue-9-M-12.pdf), Valliammal.N

- [How to remove a Computer worm](https://www.contrastsecurity.com/glossary/computer-worm#how_to_remove_a_computer_worm)

- [The Morris Worm](https://www.cs.umd.edu/class/fall2023/cmsc614/papers/morris-worm.pdf)

v t e Malware topics Infectious malware Computer virus Computer worm List of computer worms Timeline of computer viruses and worms Concealment Backdoor Clickjacking Man-in-the-browser Man-in-the-middle Rootkit Trojan horse Zombie computer Malware for profit Adware Botnet Crimeware Fleeceware Form grabbing Fraudulent dialer Infostealer Keystroke logging Malbot Pay-per-install Privacy-invasive software Ransomware Rogue security software Scareware Spyware Web threats By operating system Android malware Classic Mac OS viruses iOS malware Linux malware MacOS malware Macro virus Mobile malware Palm OS viruses HyperCard viruses Protection Anti-keylogger Antivirus software Browser security Data loss prevention software Defensive computing Firewall Internet security Intrusion detection system Mobile security Network security Countermeasures Computer and network surveillance Honeypot Operation: Bot Roast

v t e Information security Threats Adware Advanced persistent threat Arbitrary code execution Backdoors Bombs Fork Logic Time Zip Hardware backdoors Code injection Crimeware Cross-site scripting Cross-site leaks DOM clobbering History sniffing Cryptojacking Botnets Data breach Drive-by download Browser Helper Objects Viruses Data scraping Denial-of-service attack Eavesdropping Email fraud Email spoofing Exploits Fraudulent dialers Hacktivism Infostealer Insecure direct object reference Keystroke loggers Malware Payload Phishing Voice Polymorphic engine Privilege escalation Ransomware Rootkits Scareware Shellcode Spamming Social engineering Spyware Software bugs Trojan horses Hardware Trojans Remote access trojans Vulnerability Web shells Wiper Worms SQL injection Rogue security software Zombie vectorial version Defenses Application security Secure coding Secure by default Secure by design Misuse case Computer access control Authentication Multi-factor authentication Authorization Computer security software Antivirus software Security-focused operating system Data-centric security Software obfuscation Data masking Encryption Firewall Intrusion detection system Host-based intrusion detection system (HIDS) Anomaly detection Information security management Information risk management Security information and event management (SIEM) Runtime application self-protection Site isolation Related security topics Computer security Automotive security Cybercrime Cybersex trafficking Computer fraud Cybergeddon Cyberterrorism Cyberwarfare Electronic warfare Information warfare Internet security Mobile security Network security Copy protection Digital rights management

Authority control databases GND

---
Adapted from the Wikipedia article [Computer worm](https://en.wikipedia.org/wiki/Computer_worm) by Wikipedia contributors ([contributor history](https://en.wikipedia.org/wiki/Computer_worm?action=history)). Available under [Creative Commons Attribution-ShareAlike 4.0 International](https://creativecommons.org/licenses/by-sa/4.0/). Changes may have been made.
