answersLogoWhite

0

📱

Computer Viruses

Computer viruses are harmful pieces of software which can reproduce themselves and automatically spread to other computers and networks. Questions about computer virus techniques and specific computer viruses belong here.

5,673 Questions

What will remove Trojan horse generic 18 BDSZ?

Use rkill.exe, then run any anti-virus tool - also check your internet proxy advanced settings.

How do you get rid of virus cookie rub?

Run an anti virus programme that'll sort it . . or stop looking at porn!!

What is backdoor policy?

The back door policy, or policy of stop loss, is the extension of a soldier's service time.

It was said that "Service members whose ETS, retirement, or end of service obligation date falls during a deployment may be involuntarily extended until the end of their unit's deployment."

How virus affect the system?

A virus implants itself usually on the hard drive. It will infect the files that it passes through making duplicates of itself. It may be programmed to send itself along with any emails you send, infecting and infiltrating another persons computer. It may also make a "back door" on your hard disk allowing the creator of the virus to access your computer remotely. Symantec has an entire list of viruses, and all of the things that go along with the viruses like how hard it is to remove.

You can usually check if a virus is running by looking at Task Managers 'Processes' and finding a program that is taking up a large percentage of your CPU's power except the idling process saying how much your CPU is idling, other programs that you see are running that take up a large percentage might be viruses or a program that you are running. For example, a program might be a 3D rendering one and your CPU isn't the best one for that, then you will see it taking up a large percentage of your CPU's power. I take extra precautions when downloading anything,i save it but do not open it,it saves to the desktop and i run a virus scan on the file before im happy enough to open it,

What is directory virus?

As the name indicates, a directory virus functions by infecting the directory of your computer. A directory is simply a larger file that contains information about other files and sub-directories within it. The general information consists of the file or directory name, the starting cluster, attributes, date and time and so forth. When a file is accessed, it scans the directory entry in search of the corresponding directory. There it is able to locate the starting cluster which is an index to the FAT (File Allocation Table). The FAT contains the addresses for all subsequent clusters until the last cluster is indicated by a marker like this: 0xFFF (16-bit FAT).

A directory virus inserts a malicious code into a cluster and marks it as allocated in the FAT. This prevents it from being allocated in the future. The virus then saves the first cluster and forces it to target other clusters, indicating each file it wants to infect. The malicious code typically contains an extension such as COM. (command) or EXE. (execute) which executes the virus.

Is roplox a virus?

No. In fact you should play Roplox right now, because it's free!

Will fps creator give you a virus?

I don't know. If it does you can take a photo of it and paste it in paint and send it to fps and have them look at it

What is a perivascular infiltrate?

Perivascular infiltrate is something that penetrates the area around a blood or lymph vessel. Chronic inflammation is caused by this action.

How can computer viruses affect your business?

If your work computer gets a virus it can crash and once crashed you can't work anymore.

Where is swindle in AQW?

I hope you know where terc is cos if you dont your going to have trouble......

defeat 50 makai. now, go to the secret cave system and it goes like this, up right, up right, left right. you should now be at swindle.

I hope this helped you a little,

Karontik.

Is file fixation safe?

From what I have just read.. No it isn't safe, you won't get any malware or anything like that, but the whole thing is a scam.. I have read complaints from people saying they got charged $89 and the $4.95 they were expecting to pay was just for a trial offer.. Other complaints were that after signing up people weren't sent the activation e-mail and couldn't log into their accounts to contact support, and after giving out credit card details the people behind file fixation have helped themselves to money from the users credit card..

Avoid the site would be my advice

Does literoticacom give your computer viruses?

I'm not sure, but just by the name of the program doesn't sound to trustworthy to me! I'd recommend doing a scan for viruses as soon as you can.

How do you remove AV exe?

av.exe is actually a process that accompanies fake anti-spyware infections like Antivirus Vista 2010, Win 7 Antispyware 2010, and XP Internet Security 2010. It tries to mimic legitimate anti-spyware utilities so it's hard to differentiate them from the real thing because of their professional-looking user interface, ability to launch pop-up alerts, ability to conduct scans, and even churn out a list of alleged threats.

It is possible to remove av.exe manually. Basically, you need to stop the process then delete the file. However, since the malware may install av.exe in different locations, it may be difficult to get rid of it. Also, remember that av.exe is simply part of a larger program. Thus, it is essential to remove the entire fake anti-spyware in all its entirety in order for you to gain complete relief.

Examples of logic bomb viruses?

examples of logic bomp are antivirus programs, masquarades, torjan horse ,u tility programs and etc

How do you recover files infected with classified virus?

' Open notepad.exe and copy / paste this text.

' Then save it as "class-x.vbs" include double quotation marks

' Then double click on class-x.vbs to remove Classified Trojan Worm!

'

' W32.Daprosy Buster, Version 1.0

' Emergency Release! NOT FOR SALE

' Copyleft 2009:

'

' You may add your own code to detect other variants of the worm.

' You may not however modify the code to maliciously damage a computer system.

' Script is distributed "AS IS" without warranty of any kind - use at own risk!!!

Sub DeleteTrojan(Trojan)

On Error Resume Next

Dim objFSO

Set objFSO = CreateObject("Scripting.FileSystemObject")

If objFSO.FileExists(Trojan) Then objFSO.DeleteFile(Trojan), True

Set objFSO = Nothing

End Sub

On Error Resume Next

Dim info

info = ""

info = info & "W32.Daprosy Buster, Version 1.0" & vbCrLf

info = info & "Emergency Release! NOT FOR SALE" & vbCrLf

info = info & "Copyleft 2009 by Itlog (lol!)" & vbCrLf

info = info & vbCrLf

info = info & "This VB script would remove Daprosy aka Autorun-AMS/AMW from your system." & vbCrLf

info = info & "Please DO NOT USE computer (especially Windows Explorer) while scanning" &vbCrLf

info = info & "is in progress!" & vbCrLf

info = info & vbCrLf

info = info & "Don't panic when your system slows down during scan - you will be" & vbCrLf

info = info & "NOTIFIED when scanning is completed." & vbCrLf

info = info & vbCrLf

info = info & "Click OK to continue..."

wscript.echo info

Dim objWMIService

Dim objFSO

Dim oReg

Set objWMIService = GetObject("winmgmts:{impersonationLevel=impersonate}!\\.\root\cimv2")

Set colProcessList = objWMIService.ExecQuery("Select * from Win32_Process")

For Each objProcess in colProcessList

cmdln = LCase(objProcess.CommandLine)

If InStr(cmdln, "\windows\lsass.exe") Then objProcess.Terminate()

If InStr(cmdln, "nthlpsvc1.exe") Then objProcess.Terminate()

If InStr(cmdln, "nthlpsvc2.exe") Then objProcess.Terminate()

If InStr(cmdln, "winnthlp1.exe") Then objProcess.Terminate()

If InStr(cmdln, "winnthlp2.exe") Then objProcess.Terminate()

If InStr(cmdln, "dirlock.exe") Then objProcess.Terminate()

If InStr(cmdln, "winzip.exe") Then objProcess.Terminate()

Next

Set objFSO = CreateObject("Scripting.FileSystemObject")

Const HKCU = &H80000001

Const HKLM = &H80000002

Set oReg = GetObject("winmgmts:{impersonationLevel=impersonate}!\\.\root\default:StdRegProv")

oReg.DeleteValue HKCU, "SOFTWARE\Microsoft\Windows\CurrentVersion\Run", "Win32"

oReg.DeleteValue HKCU, "SOFTWARE\Microsoft\Windows\CurrentVersion\Run", "WinSys"

oReg.DeleteValue HKLM, "SOFTWARE\Microsoft\Windows\CurrentVersion\Run", "LSAgent"

oReg.DeleteValue HKLM, "SOFTWARE\Microsoft\Windows\CurrentVersion\Run", "LSAShell"

oReg.DeleteValue HKLM, "SOFTWARE\Microsoft\Windows\CurrentVersion\Run", "DirLock"

oReg.DeleteValue HKLM, "SOFTWARE\Microsoft\Windows\CurrentVersion\Run", "DirLocker"

oReg.SetStringValue HKLM, "SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon", "Shell", "Explorer.exe"

Set oReg = Nothing

Set colFolders = objWMIService.ExecQuery("Select * from Win32_Directory")

For Each objFolder in colFolders

Folder = objFolder.Name

Trojan = Folder & ".exe"

Set objFolder2 = objFSO.GetFolder(Folder)

If ObjFolder2.Attributes And 2 Then objFSO.DeleteFile(Trojan)

ObjFolder2.Attributes = 16

DeleteTrojan Folder & "\classified.exe"

DeleteTrojan Folder & "\do not open - secrets!.exe"

DeleteTrojan Folder & "\read1st!.exe"

DeleteTrojan Folder & "\read1st.exe"

DeleteTrojan Folder & "\autorun.inf"

DeleteTrojan Folder & "\1.exe"

DeleteTrojan Folder & "\2.exe"

DeleteTrojan Folder & "\winnthlp1.exe"

DeleteTrojan Folder & "\winnthlp2.exe"

DeleteTrojan Folder & "\hlpsvc1.exe"

DeleteTrojan Folder & "\hlpsvc2.exe"

DeleteTrojan Folder & "\kbsys.exe"

DeleteTrojan Folder & "\kbdsys.exe"

DeleteTrojan Folder & "\dirlock.exe"

DeleteTrojan Folder & "\mp3-hot-collections.exe"

DeleteTrojan Folder & "\mp4-hot-collections.exe"

Next

Set objWMIService = Nothing

Set objFSO = Nothing

info = ""

info = info & "W32.Daprosy scan is complete!" & vbCrLf & vbCrLf

info = info & "Your system is now clean." & vbCrLf

info = info & vbCrLf

info = info & "NOTICE:" & vbCrLf

info = info & vbCrLf

info = info & "This script cannot detect other viruses, worms," & vbCrLf

info = info & "and unknown variants of w32.Daprosy."

wscript.echo info

wscript.quit

How do you download modio?

i think you where do you download it

Does Hamichi give you a virus?

Do you mean Hamachi? It's a tool to share network between friends, most commonly used for lan games like Warcraft3, Cs etc. It doesn't give you virus if you download it from the right page.

https://secure.logmein.com/US/products/hamachi2/ download it from there and it will work fine.

//William

Are the tasaday real or a hoax?

The Tasaday, the Lost Tribe of Mindanao were, let us face facts, a Hoax perpetrated by the Marcos government. a number of prominent people, such as a famous Movie actress and noted pioneer Airman, were taken in by the hoax as was the magazine National Geographic. (The Geographic, being aloof from letter columns for DECADES) more than occasionally fictionalized articles, altered facts, dates and so on - and the somewhat captive audience fell for it. The Tasaday were a serious hoax mounted in part, a major part by the Philipine Government of Marcos.

What does a Trojan horse look like?

The Trojan Horse was a gigantic wooden horse with a hole in its stomach so Greek soldiers could get out to concer Troy.