Skip to main content

What is a Botnet ?

Image result for what is botnet
The word Botnet is formed from the words ‘robot’ and ‘network’.
Cybercriminals use special Trojan viruses to breach the security of several users’ computers, take control of each computer and organise all of the infected machines into a network of ‘bots’ that the criminal can remotely manage.
Bots are one of the most sophisticated and popular types of cybercrime today.
They allow hackers to take control of many computers at a time, and turn them into 'zombie' computers, which operate as part of a powerful 'botnet' to spread viruses, generate spam, and commit other types of online crime and fraud.
A 'bot' is a type of malware that allows an attacker to take control over an affected computer.
Also known as “Web robots”, bots are usually part of a network of infected machines, known as a “botnet”,
which is typically made up of victim machines that stretch across the globe
Since a bot infected computer does the bidding of its master, many people refer to these victim machines as “zombies.”
The cybercriminals that control these bots are called botherders or botmasters.
Some botnets might have a few hundred or a couple thousand computers, but others have tens and even hundreds of thousands of zombies at their disposal.
Many of these computers are infected without their owners' knowledge.
Some possible warning signs? A bot might cause your computer to slow down, display mysterious messages, or even crash.
  _________________________

Comments

Popular posts from this blog

What is SQL ?

SQL (Structured Query Language) is a standardized programming language used for managing relational databases and performing various operations on the data in them. Initially created in the 1970s, SQL is regularly used by database administrators, as well as by developers writing data integration scripts and data analysts looking to set up and run analytical queries. The uses of SQL include modifying database table and index structures; adding, updating and deleting rows of data; and retrieving subsets of information from within a database for transaction processing and analytics applications.  Queries and other SQL operations take the form of commands written as statements -- commonly used SQL statements include select, add, insert, update, delete, create, alter and truncate. _________________________