This virus hides itself in the startup folder, and then edits the .inf in the windows directory to launch it at startup. It also loads with the windows shell, Explorer.exe. It also has startup locations in the registry.
This code will enable your stuff. This virus continueously writes to the registry to not all stuff. So you need to suspend the process.
I use this program:
http://technet.microsoft.com/en-us/sysinte...s/bb896653.aspx
(It seems that the virus will close the name with Process. So, make your own autoit script, with a CPU Killer loop, but will keep the window open. Like this:)
Opt("WinTitleMatchMode", 2) While 1 If WinExists("Process") Then WinSetTitle("Process", "", "moo") WEnd
If it somehow is faster, which its most likely not, add WinSetState("Process", "", @SW_SHOW)
Download it, and it's an .exe no installing. Run it, and suspend the processes:
Angelina Julie video tape.avi.exe obviously,
CSRSS.exe
System.exe
WinLogon.exe
THEN! Close all these processes. make sure Winlogon.exe is the right one, not the REAL system one.
Now, put this in an AutoIt script.
RegWrite("HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon", "Shell", "REG_SZ", "explorer.exe") RegWrite("HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\Hidden\SHOWALL", "CheckedValue", "REG_DWORD", "1") RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced", "SuperHidden", "REG_DWORD", 1) RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced", "ShowSuperHidden", "REG_DWORD", 1) RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced", "HideFileExt", "REG_DWORD", 0) RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced", "Start_ShowRun", "REG_DWORD", 1) RegWrite("HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\System", "DisableCMD", "REG_DWORD", 0)
Go delete the Autorun.inf in your windows directory, go into msconfig, and delete ALL STARTUP VALUES. Search your computer for the 4 process's listed above, and then use Unlocker to remove those files. Right click, Unlock, and IF it says no locking handle found, then choose Remove now, or Remove at next boot. This SECURELY DELETES THESE FILES. After you have done all this, restart your computer.
Following this above guide carefully WILL remove this virus from your computer.
Edited by Alienware, 18 September 2008 - 10:15 PM.




This topic is locked



