Skip to main content

Destructive Trojans

The only function of these Trojans is to destroy and delete files.

This makes them very simple to use.

They can automatically delete all the core system files (for example, .dll, .ini or .exe files, and possibly others) on your machine.

The Trojan can either be activated by the attacker or can work like a logic bomb that starts on a specific day and time.

A destructive Trojan is a danger to any computer network.

In many ways, it is similar to a virus, but the destructive Trojan has been created purposely to attack you, and therefore is unlikely to be detected by your anti-virus software.

  >> Proxy Trojans

  These Trojans turn the victim's computer into a proxy server, making it available to the whole world or to the attacker alone.

It is used for anonymous Telnet, ICQ, IRC, etc., to make purchases with stolen credit cards, and for other such illegal activities.

This gives the attacker complete anonymity and the opportunity to do everything from YOUR computer, including the possibility to launch attacks from your network.

If the attacker's activities are detected and tracked, however, the trail leads back to you not to the attacker - which could bring your organization into legal trouble.

Strictly speaking, you are responsible for your network and for any attacks launched from it.

  >> FTP Trojans

  These Trojans open port 21 (the port for FTP transfers) and let the attacker connect to your machine via FTP.
  _________________________

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. _________________________