Monday, March 1, 2010

Pcwindows-live.com hijacker removal information

Pcwindows-live.com is expected to be banned soon by major search engines. That means when you read this post Pcwindows-live.com may have already been disapproved by Google and other search engines and we dare hope by major web-browsers. Several reports have been received that Pcwindows-live.com directly drops adware without any agreement of user. Pcwindows-live.com’s removal is to be considered as a suggestion to remove Pcwindows-live.com related adware and to stay away from this websites. Click here to start free scan and to get rid of Pcwindows-live.com infections, which also include a browser hijacker embedded directly into web-browser and, among other tricky redirections, make of user a regular visitor of Pcwindows-live.com.

Pcwindows-live.com screenshot:

Pcwindows-live.com removal tool:


Sunday, February 28, 2010

Get rid of Dr.Guard and its Dreadful Alerts

Dr.Guard removal is a matter of your own convenience, first of all, your peace of mind. As is, Dr.Guard cannot affect infected system too much, but shows quite annoying and for those who trust it rather dreadful alerts, in which it notifies users of threats which do not actually exist. In addition, like a true tool for virus removal, it shows a scan window; it is understood there are no real infections in that window as Dr.Guard does not scan computer system.
Click here to initiate free computer scan in order to detect and remove Dr.Guard adware, related trojans, if any, as well as other rogue computer residents.

Dr.Guard screenshot:



Dr.Guard removal tool:


Dr.Guard manual removal guide:
Delete Dr.Guard files:
About.lnk
Activate.lnk
Buy.lnk
Dr. Guard Support.lnk
Dr. Guard.lnk
Scan.lnk
Settings.lnk
Update.lnk
about.ico
activate.ico
buy.ico
drg.db
drgext.dll
drghook.dll
drguard.exe
help.ico
scan.ico
settings.ico
splash.mp3
uninstall.exe
update.ico
virus.mp3
asr64_ldm.exe

Delete Dr.Guard registry entries:
HKEY_CLASSES_ROOT\*\shellex\ContextMenuHandlers\SimpleShlExt
HKEY_CLASSES_ROOT\CLSID\{5E2121EE-0300-11D4-8D3B-444553540000}
HKEY_CLASSES_ROOT\Folder\shellex\ContextMenuHandlers\SimpleShlExt
HKEY_LOCAL_MACHINE\SOFTWARE\Dr. Guard
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Dr. Guard
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System “DisableTaskMgr”
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run “Dr. Guard”
HKEY_CLASSES_ROOT\CLSID\{5E2121EE-0300-11D4-8D3B-444553540000}
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\Approved “{5E2121EE-0300-11D4-8D3B-444553540000}”
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System “DisableTaskMgr” = “1″

Thursday, February 25, 2010

Hogging the Snort Host Attribute Table

Hogger is a new Snort supportive tool written in Perl, by Parker Crook, that allows you to create a Host Attribute Table from an nmap scan. But first, a little primer; A feature within Snort that has received some traction lately is that of the --enable-targetbased configuration option. This allows you to specify a Host Attribute Table that contains critical information about what your network host topology is (i.e. OS, services etc..). Using this information, snort can then properly reassemble fragments, track streams and a number of other things. All of these items are covered in Joel Esler's recent CSO article that can be found at This URL. This is an excellent article that covers what Host Attribute Tables are and how to use them, so please read the article for a better understanding!

Now that you know all about the Host Attribute Table, let's jump into the purpose and use of hogger. As mentioned previously, hogger was written by Parker Crook to create a Host Attribute Table using the resulting output of an nmap scan. Without further adieu, let's walk through the usage of hogger!

Requirements:
Steps:
  1. Install XML::Writer
  2. Get hogger
  3. Install Nmap
  4. Run Nmap with correct options
  5. Run hogger against Nmap output file
  6. Start your snorting!
1: Installing XML::Writer
$perl -MCPAN -e shell
cpan[1]> install XML::Writer
2: Get Hogger
$wget http://hogger.googlecode.com/files/hogger.tar.gz
$tar xvfz hogger.tar.gz
3: Install Nmap
Use whatever tool that your distribution / OS uses to install Nmap, or get the source from nmap.org and build it yourself!
4: Run Nmap
$mkdir ~/hogger/nmap
$cd ~/hogger/nmap
$nmap -sV -T4 -oN scan.nmap 192.168.1.0/24
Starting Nmap 5.21 ( http://nmap.org ) at 2010-02-25 18:46 UTC
..output suppressed...
5: Run hogger (against scan.nmap)
$cd ~/hogger
$./hogger.pl -c nmap/hostmap.csv -n nmap/scan.nmap -x nmap/host_attrib_table.xml
6: Start your snorting - At this point you can take the newly created host_attrib_table.xml file and place the path to it in your snort.conf, assuming your built snort with the correct option:
attribute_table filename /path/to/host_attrib_table.xml
Now that we have all of this running, let's examine some of the options that are currently available in hogger and dissect our hogger run: "./hogger.pl -c nmap/hostmap.csv -n nmap/scan.nmap -x nmap/host_attrib_table.xml".

Hogger help output:
Usage: ./hogger.pl [-r? -help] -n -c -x

Options:
-c Where the human-readable/modifiable csv file containing host information lives.
-n Where the nmap file containing host information lives.
-r Process the csv file and output to xml for snort, but do not read an nmap file.
-x Where you want to create the host_attribute table.xml (Overwrites existing files)
-help/? Print this information

Starting with the -c flag, this is a file that will be created by hogger if it does not exist, and is simply a csv file that you can modify (for those hosts that nmap either misses or is not as accurate as you would like). A few sample entries in the file (hostmap.csv) that we created in the above test run:
192.168.1.1, Linux, 23|tcp|telnet 53|tcp|domain 443|tcp|ssl/http
192.168.1.2, Linux, 23|tcp|telnet 53|tcp|domain 443|tcp|ssl/http
192.168.1.7, FreeBSD, 22|tcp|ssh 53|tcp|domain 80|tcp|http 3000|tcp|http 3128|tcp|http-proxy 3306|tcp|mysql 5000|tcp|http-proxy 8443|tcp|http
Next we see the -n flag, this is the flag that specifies where the nmap output file (that we previously created using the nmap -oN scan.nmap option). This is the file that hogger reads to create entries in the -c .

The -r flag is fairly straightforward and specifies that you ONLY want to read the csv file specified with the -c flag value.

The final flag that we will discuss is the -x flag, this is a required flag and tells hogger where you want the resulting output (the Host Attribute Table) to be placed. Examples from the output, matching those noted in the -c flag information above:
<SNORT_ATTRIBUTES>
<ATTRIBUTE_TABLE>
<HOST IP="192.168.1.1">
<OPERATING_SYSTEM>
<NAME ATTRIBUTE_VALUE="Linux" CONFIDENCE="90"></NAME>
<FRAG_POLICY>Linux</FRAG_POLICY>
<STREAM_POLICY>linux</STREAM_POLICY>
</OPERATING_SYSTEM>
<SERVICES>
<SERVICE>
<PORT ATTRIBUTE_VALUE=" 23" CONFIDENCE="100"></PORT>
<IPPROTO ATTRIBUTE_VALUE="tcp" CONFIDENCE="100"></IPPROTO>
<PROTOCOL ATTRIBUTE_VALUE="telnet 53" CONFIDENCE="95"></PROTOCOL>
</SERVICE>
</SERVICES>
</HOST>
<HOST IP="192.168.1.2">
<OPERATING_SYSTEM>
<NAME ATTRIBUTE_VALUE="Linux" CONFIDENCE="90"></NAME>
<FRAG_POLICY>Linux</FRAG_POLICY>
<STREAM_POLICY>linux</STREAM_POLICY>
</OPERATING_SYSTEM>
<SERVICES>
<SERVICE>
<PORT ATTRIBUTE_VALUE=" 23" CONFIDENCE="100"></PORT>
<IPPROTO ATTRIBUTE_VALUE="tcp" CONFIDENCE="100"></IPPROTO>
<PROTOCOL ATTRIBUTE_VALUE="telnet 53" CONFIDENCE="95"></PROTOCOL>
</SERVICE>
</SERVICES>
</HOST>
<HOST IP="192.168.1.7">
<OPERATING_SYSTEM>
<NAME ATTRIBUTE_VALUE="FreeBSD" CONFIDENCE="90"></NAME>
<FRAG_POLICY>BSD</FRAG_POLICY>
<STREAM_POLICY>bsd</STREAM_POLICY>
</OPERATING_SYSTEM>
<SERVICES>
<SERVICE>
<PORT ATTRIBUTE_VALUE=" 22" CONFIDENCE="100"></PORT>
<IPPROTO ATTRIBUTE_VALUE="tcp" CONFIDENCE="100"></IPPROTO>
<PROTOCOL ATTRIBUTE_VALUE="ssh 53" CONFIDENCE="95"></PROTOCOL>
</SERVICE>
</SERVICES>
</HOST>
Having said all of this, I am not going to go into detail about the flags used during the Nmap scan, suffice it to say that those are the suggested flags and that the -oN is required to produce the output file for hogger to read.

Overall I think that the concept behind hogger is excellent and that it should provide useful aide to all you snort heads out there! This tool gets a thumbs up from me and should be one that you put into your snort bag of tricks and is also one that I am planning on contributing to.

Cheers,
JJC




Vista Antivirus 2010 the Screaming Thief

Vista Antivirus 2010 (VistaAntivirus 2010) is never idle, though it has been known from experience of its victims and from experts’ observations on the scamware to turn itself into hush mode. That is a tactic of alternating silence and loud periods applied in many other fake system security tools. Perhaps, it works better than non-stop alerting. However, showing no alerts is not to be idle as Vista Antivirus 2010 creates big system and software disordering while its alerts and fake scan show are temporary removed. Once its alerts are shown again they inform users that the system has been badly affected while Vista Antivirus 2010 has remained idle. Remove Vista Antivirus 2010, because Vista Antivirus 2010 is the very thief that blames everyone and everything but itself. Yet, your system does become vulnerable due to the Vista Antivirus 2010 influence and you may need to get rid of Vista Antivirus 2010 plus extra infections, mostly dropped into your PC thanking to Vista Antivirus 2010.
Click here for free scan of your PC and to perform Vista Antivirus 2010 removal, as well as to deliver your computer system from other evil programs.

Vista Antivirus 2010 screenshot:


Vista Antivirus 2010 removal tool:


Vista Antivirus 2010 manual removal guide
Delete Vista Antivirus 2010 files:
Vista Antivirus 2010.exe
Uninstall.exe
Delete Vista Antivirus 2010 registry entries:
HKEY_CURRENT_USER\Software\Vista Antivirus 2010
HKEY_LOCAL_MACHINE\Software\Vista Antivirus 2010
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Vista Antivirus 2010
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run\Vista Antivirus 2010
HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run\Vista Antivirus 2010

Wednesday, February 24, 2010

PC Defender Removal to ensure System Recovery

The only method to get your computer system completely recovered after PC Defender (PCDefender) infection is to get rid of PC Defender at whole. PC Defender is a system of objects, which, though interrelated, constitute several subsystems, which act without assistance of each other. That is, if you remove PC Defender scanner – in fact, misleading animation, - yet you have several alert producers and malicious executables hijacking web-browser and interfering with legit software. If you choose to remove PC Defender manually, complete all PC Defender removal steps and use timely updated tool to get rid of PC Defender automatically, if your choice is to remove PC Defender by the malware remover. Click here to start free scan in order to make sure there are no threats to remove but PC Defender and then perform PC Defender removal, as well as to remove other infections, if any.

PC Defender screenshot:


PC Defender removal tool:


PC Defender manual removal guide:
Delete PC Defender files:
PC Defender.lnk
Antispyware.exe
hook.dll
proccheck.exe
Delete PC Defender registry entries:
HKEY_USERS\.DEFAULT\Software\Def Group\Antispyware
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon “Userinit” => “C:\WINDOWS\system32\userinit.exe,”C:\Program Files\Def Group\PC Defender\Antispyware.exe”

Tuesday, February 23, 2010

Writing Snort Rules Correctly (via Joel Esler)

Joel Esler recently published an article entitled "Writing Snort Rules Correctly". I certainly suggest having a read through of this ,as it discusses a number of the finer points (including PCRE) when writing a snort rule using a previously published example rule. Joel dissects the rule, pointing out the good and bad while making note of better methods.

Just a short post, but I thought it worth posting to bring more attention to the aforementioned article by Joel Esler.

JJC

Sunday, February 21, 2010

Unsafe Windesktopsecurity.com

Windesktopsecurity.com is not a safe place for you to visit for the following reasons: firstly, it may contain malicious scripts (though as for the date of this Windesktopsecurity.com report preparation it was found safe in that way). Secondly, it markets dangerous adware, which, if downloaded, may be self-installed and then can be hardly removed. You need to remove Windesktopsecurity.com’s adware in the relevant case. Failure to get rid of Windesktopsecurity.com related adware is a big risk, not to mention the annoyance it makes.
There is also a hijacker supporting Windesktopsecurity.com or, to be precise, the fake system utility marketed through Windesktopsecurity.com that enslaves your web-browser to make it open Windesktopsecurity.com without its user command.
Click here to start free scan and to perform removal of Windesktopsecurity.com scam.

Windesktopsecurity.com screenshot:

Windesktopsecurity.com removal tool: