Showing posts with label Registry. Show all posts
Showing posts with label Registry. Show all posts

Tuesday, December 13, 2011

HI ALERT!!! New Trojan Spreading - SPQJSADSLA.EXE Get Details



Friends while i am surfing i got a new alert that my PC is infected. Suddenly one window opens with security shield title and it starts scanning it self, even i am not using any antivirus, or any antimalware.

Than i checked process in task manager and found the process of security shield, the process was xnlroiob.exe, then i try to find on internet but google says no result found.

I doubt that it's not any antivirus, surely it's a fake warning and virus or trojan or malware.

I think and again checked task manager, i found that one java.exe process is also running even i am not using any java application. Then i end the process and i amazed that, that security shield application was stopped working and i am not getting any warning any more.

After Search i found that this is a Trojan and giving fake warning to victims and running on java.

Then i started CProcess utility (from http://www.nirsoft.net/) and find the location of that fu*ky trojan. It was in my "C:\Users\Technoknol\AppData\Local\xnlroiob.exe". I tried to delete but when i close and reopen that location, it was there.

So, Beware friends it's the alert because i have faced the problem and i know how it's danger. Don't worry it's solution will be published when i win against that fu*ky.

Here below is a some reports and specifications of it. Read it carefully.



Details:
Group : Cloaked Malware

Country of Origin :  South Africa

First Seen on :  Dec 11, 2011

File Names : SPQJSADSLA.EXE, 43627076.EXE, 86145167.DAT, 65257416.EXE, TEST.EXE, xnlroiob.exe

File Size : 365,056 bytes (357 Kilo bytes)

File Type : EXE Executable

Affected Operating Systems : Windows

Friends this is the information i found on internet. Here below is a PREVX and VIRUSTOTAL report click and check it out.


http://www.freezepage.com/1323723846KMUNTLFQDD ( Virus Total Report Freezed Page )


Below is a Screenshots i've captured. If you have seen like this on your computer then you're infected beware when sufing.

1. This Screen in image says that such listed files are suspecious but i have checked but that was never shown as suspecious.


2.This windows says that your Internet Explorer is infected with Trojan Spy, and asking you to activate.
3. Whenever you click on any warning or anywhere it opens full screen window like below image.

 
4.  It opens a window looking as control panel-->Action Center (in Windows7).
5. The main window which first opens on my PC any starts scanning it self.
6. A window which says 9 viruses, 2 adware and 3 spyware detected and asking to remove all threats like any original antivirus.
7. and last a notification warning tells you that Spyware.IEmonster is detected and sending all your passwords.

And at last, have you noticed that, in 4th image close button is disabled when microsoft will never do that (ofcourse not in control panel) and it looks like control panel of windows7 , and in other images windows like Windows XP (I am using Windows7).


Enjoy !!!


Sunday, October 16, 2011

Syntax (Structure) of .REG file



A .reg file has the following syntax:

RegistryEditorVersion
Blank line
[RegistryPath1]
"DataItemName1"="DataType1:DataValue1"
DataItemName2"="DataType2:DataValue2"
Blank line
[RegistryPath2]
"DataItemName3"="DataType3:DataValue3"

where:

RegistryEditorVersion is either "Windows Registry Editor Version 5.00" for Windows 2000, Windows XP, and Windows Server 2003, or "REGEDIT4" for Windows 98 and Windows NT 4.0. The "REGEDIT4" header also works on Windows 2000-based, Windows XP-based, and Windows Server 2003-based computers.

Blank line is a blank line. This identifies the start of a new registry path. Each key or subkey is a new registry path. If you have several keys in your .reg file, blank lines can help you to examine and to troubleshoot the contents.

RegistryPathx is the path of the subkey that holds the first value you are importing. Enclose the path in square brackets, and separate each level of the hierarchy by a backslash. For example:

[
HKEY_LOCAL_ MACHINE\SOFTWARE\Policies\Microsoft\Windows\System
]

A .reg file can contain several registry paths. If the bottom of the hierarchy in the path statement does not exist in the registry, a new subkey is created. The contents of the registry files are sent to the registry in the order you enter them. Therefore, if you want to create a new subkey with another subkey below it, you must enter the lines in the correct order.

DataItemNamex is the name of the data item that you want to import. If a data item in your file does not exist in the registry, the .reg file adds it (with the value of the data item). If a data item does exist, the value in your .reg file overwrites the existing value. Quotation marks enclose the name of the data item. An equal sign (=) immediately follows the name of the data item.

DataTypex is the data type for the registry value and immediately follows the equal sign. For all the data types other than REG_SZ (a string value), a colon immediately follows the data type. If the data type is REG_SZ , do not include the data type value or colon. In this case, Regedit.exe assumes REG_SZ for the data type. The following table lists the typical registry data types:
Collapse this tableExpand this table
Data TypeDataType in .reg
REG_BINARYhexadecimal
REG_DWORDdword
REG_EXPAND_SZhexadecimal(2)
REG_MULTI_SZhexadecimal(7)

Description of the Microsoft Windows registry
DataValuex immediately follows the colon (or the equal sign with REG_SZ) and must be in the appropriate format (for example, string or hexadecimal). Use hexadecimal format for binary data items.

Note You can enter several data item lines for the same registry path.

Note the registry file should contain a blank line at the bottom of the file.

( via )


Related Posts Plugin for WordPress, Blogger...