Questions tagged [virus]

A computer virus is a computer program that can replicate itself and spread from one computer to another. The term "virus" is also commonly, but erroneously, used to refer to other types of malware, including but not limited to adware and spyware programs that do not have a reproductive ability.

Malware includes computer viruses, computer worms, Trojan horses, most rootkits, spyware, dishonest adware and other malicious or unwanted software, including true viruses. Viruses are sometimes confused with worms and Trojan horses, which are technically different. A worm can exploit security vulnerabilities to spread itself automatically to other computers through networks, while a Trojan horse is a program that appears harmless but hides malicious functions. Worms and Trojan horses, like viruses, may harm a computer system's data or performance. Some viruses and other malware have symptoms noticeable to the computer user, but many are surreptitious or simply do nothing to call attention to themselves. Some viruses do nothing beyond reproducing themselves.

An example of a virus which is not a malware, but is putatively benevolent, is Fred Cohen's compression virus. However, antivirus professionals do not accept the concept of benevolent viruses, as any desired function can be implemented without involving a virus (automatic compression, for instance, is available under the Windows operating system at the choice of the user). Any virus will by definition make unauthorised changes to a computer, which is undesirable even if no damage is done or intended. On page one of "Dr Solomon's Virus Encyclopaedia", the undesirability of viruses, even those that do nothing but reproduce, is thoroughly explained.

Source: Wikipedia (Computer Virus)

499 questions
6
votes
4 answers

Dancing Dolls Problem : on GCC linux

As a preface, I really do not want the exact solution to my problem, just guidance. I don't want you to give me the code. This isn't homework, it's just an exercise I'm trying to solve. I just want you to tell me how to access VDU and directly…
Udit Gupta
  • 3,162
  • 11
  • 43
  • 71
6
votes
5 answers

Is it possible for a Java JAR file to damage your system and how can you check what it's doing?

I want to evaluate a software solution where multiple people have submitted JAR files to perform a task on Windows. Is it possible to check whether the JAR file performs any additional unwanted behaviors besides those it claims to perform on your…
Benton
  • 61
  • 1
  • 1
  • 2
6
votes
3 answers

How does an Antivirus knows not to detect non malicious code?

Let's say I created a file compression library, and this library was used in 1000 (non malicious) programs. But now a malware developer has decided to create a malware and use my library to compress some files. Based on my little knowledge on how an…
user6088487
  • 189
  • 6
6
votes
7 answers

Malware on a client's website - Ideas?

We recently got a call from one of our clients, complaining that their site has some "strange looking code" at the bottom of the page. We checked out the source code, and discovered that about 800 bytes of malicious javascript code had been appended…
Jeriko
  • 6,547
  • 4
  • 28
  • 40
6
votes
1 answer

C# app appears false positive in AVG antivirus?

I have created a C# application that I've been testing on my other computer throughout the developing phase. However now that I've completed the app with few recent things that I added, the app is detected as virus (AVG doesn't show what kind of…
Muhammad Ali
  • 3,478
  • 5
  • 19
  • 30
5
votes
0 answers

Why are executable created from python scripts detected as viruses?

I have tried PyInstaller, py2exe and cx_Freeze to create a windows executable from a Python script. I then tried to check the produced executable for viruses using VirusTotal. It gave the following results: PyInstaller: 18 / 69 detected…
Vino Rue
  • 71
  • 2
5
votes
2 answers

Operation did not complete successfully because the file contains a virus or potentially unwanted software. (Exception from HRESULT: 0x800700E1)

Guys I have problem while coding in vb.net in visual studio. Here's my code which will convert .EXE file Hex to byte and directly run from memory. Imports System.Linq,System.Reflection Public Module Module1 Public…
Sorry IwontTell
  • 466
  • 10
  • 29
5
votes
1 answer

Simple polymorphic engine

I have to program a simple polymorphic engine. I use linux (32-bit) and i can code in assembly and c. I don't know how to start. Can you give me a schema for constructing such an engine? My idea is to make a program that: read the code section…
Fotinopoulos Giorgos
  • 1,027
  • 3
  • 17
  • 36
5
votes
3 answers
5
votes
4 answers

On-demand virus scanning Windows

I'm wanting to scan files a user uploads to our websites on the server-side. I'd prefer it to be something we can run on-demand that doesn't have to be running all the time on the server. What solutions are available for Windows Server 2008 R2?…
Ryan
  • 1,368
  • 2
  • 10
  • 14
5
votes
1 answer

after converting batch file to exe Windows Defender shows the file as trojan why?

i wrote a batch script to delete shortcut virus from a usb drive and to display the hidden folder and files. @ECHO OFF TITLE SHORTCUT VIRUS REMOVER ECHO SHORTCUT VIRUS TEMPORARY REMOVER ECHO THIS TOOL IS MADE BY BHARGAB(MAXYSPARK) SET /P DRIVE=ENTER…
MaxySpark
  • 555
  • 2
  • 10
  • 26
5
votes
1 answer

Should I be concerned with infected zip files?

I'm writing a ASP.NET application to process user submitted zip files and limiting my extraction of files from it to only the extensions I want. I've heard of infected zip files attached to emails and I was wondering if I should be concerned about…
Peter Smith
  • 849
  • 2
  • 11
  • 28
5
votes
1 answer

Why posts to my apache/php/mysql site places "virus" files in the /tmp directory

I apologize for the large post for a first timer. I've not been able to find a reason for the /tmp/phpXXX files created on my server. It seems that some sites (BAD GUY IP in the data below) are sending posts to my site for a Joomla vulnerability…
5
votes
2 answers

How can I can get a virus just by viewing a site or opening an email?

Everyone know's that some sites can harm your computer just by looking at them, or some emails can send mail to all of your friends or collect information about you just by reading them. How is this possible? Every site is just plain HTML, CSS and…
7890
  • 91
  • 1
  • 6
5
votes
2 answers

Safety of opening .txt files

If I'm given a URL that points to a .txt file, is it always safe to open it? Can it possibly contain virus or malicious content?
John
  • 4,596
  • 11
  • 37
  • 43
1 2
3
33 34