<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>Malware Diaries</title>
	<atom:link href="http://blogs.paretologic.com/malwarediaries/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.paretologic.com/malwarediaries</link>
	<description>Just another WordPress weblog</description>
	<pubDate>Wed, 14 May 2008 02:48:46 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Beware of search engines helpers</title>
		<link>http://blogs.paretologic.com/malwarediaries/index.php/2008/05/13/beware-of-search-engines-helpers/</link>
		<comments>http://blogs.paretologic.com/malwarediaries/index.php/2008/05/13/beware-of-search-engines-helpers/#comments</comments>
		<pubDate>Tue, 13 May 2008 22:46:04 +0000</pubDate>
		<dc:creator>JSegura</dc:creator>
		
		<category><![CDATA[Exploits]]></category>

		<guid isPermaLink="false">http://blogs.paretologic.com/malwarediaries/index.php/2008/05/13/beware-of-search-engines-helpers/</guid>
		<description><![CDATA[ You may come across some sites that offer online searches in cool formats. For example, we found this Italian website that does a search in both Google and Yahoo!.


It works well and presents the results in two diffent window panes:

However, digging into the source code for that page, we found an infamous drive-by download (loader.exe) [...]]]></description>
			<content:encoded><![CDATA[<p> You may come across some sites that offer online searches in cool formats. For example, we found this Italian website that does a search in both Google and Yahoo!.</p>
<p><img border="1" align="absMiddle" width="628" src="http://blogs.paretologic.com/malwarediaries/wp-content/uploads/2008/05/seohack1.png" height="165" style="width: 628px; height: 165px" /></p>
<p><a href="http://blogs.paretologic.com/malwarediaries/wp-content/uploads/2008/05/seohack1.png"></a></p>
<p>It works well and presents the results in two diffent window panes:</p>
<p><img border="1" width="713" src="http://blogs.paretologic.com/malwarediaries/wp-content/uploads/2008/05/seohack2.png" height="320" style="width: 713px; height: 320px" /></p>
<p>However, digging into the source code for that page, we found an infamous drive-by download (loader.exe) that happens to be nothing less than a Trojan Downloader.</p>
<p><img border="1" width="827" src="http://blogs.paretologic.com/malwarediaries/wp-content/uploads/2008/05/seohack.png" height="110" style="width: 827px; height: 110px" /></p>
<p>That Trojan will download additional malware (dialer, password stealer) onto your computer.</p>
<p>As a general rule, it is safer to use your search engine directly from the main site (i.e. google.com). Many sites offer a search from their own page that claims to search the major search engines. However, it is often biased results that are returned, or even worse, malicious programs.</p>
<p>JSegura</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.paretologic.com/malwarediaries/index.php/2008/05/13/beware-of-search-engines-helpers/feed/</wfw:commentRss>
		</item>
		<item>
		<title>A day in the life of a Malware Analyst</title>
		<link>http://blogs.paretologic.com/malwarediaries/index.php/2008/05/13/malware-analysis/</link>
		<comments>http://blogs.paretologic.com/malwarediaries/index.php/2008/05/13/malware-analysis/#comments</comments>
		<pubDate>Tue, 13 May 2008 20:35:59 +0000</pubDate>
		<dc:creator>JSegura</dc:creator>
		
		<category><![CDATA[Malware Trends]]></category>

		<guid isPermaLink="false">http://blogs.paretologic.com/malwarediaries/index.php/2008/05/13/malware-analysis/</guid>
		<description><![CDATA[When it comes to analyzing malware, each company has its own methods. Due to the volume of daily threats, most vendors will develop some sort of automation to process hundreds of signatures very rapidly. However, human analysts are needed to understand the mechanisms used by malware authors.
I can see at least two ways of analyzing [...]]]></description>
			<content:encoded><![CDATA[<p>When it comes to analyzing malware, each company has its own methods. Due to the volume of daily threats, most vendors will develop some sort of automation to process hundreds of signatures very rapidly. However, human analysts are needed to understand the mechanisms used by malware authors.</p>
<p>I can see at least two ways of analyzing a piece of malware:</p>
<p>- reverse engineer it<br />
- execute it</p>
<p>Reverse engineering consists of taking apart the sample to understand how it works. Basically, the file is made of instructions written in the source code. When a malware author (or anybody) writes a program, they will compile all those instructions into a language that the machine can understand. The job of the security analyst is to go back to those lines of codes in order to reveal the hacker&#8217;s intentions.</p>
<p>Needless to say that this is a lengthy and sometimes difficult process. Also, the security analyst needs to have the proprer skills to understand different programming languages and identify the portions of code that present a security risk.</p>
<p>The other alternative to reverse engineering is much more simple and quicker but radically different. While the first method was mainly static, the second one consists of running the sample on a machine.<br />
Security analysts use special machines, such as virtual environments, or machines that can be infected, formated and re-installed.<br />
Samples are run and their behaviour is recorded. That behaviour is also called payload and includes: file creation, registry modification, network traffic etc.<br />
At that point it is fairly easy to identify behaviours . When in doubt we upload the sample or a file from its payload to an online malware scanner. That can help us classify the sample into a category (i.e. Password Stealing Trojan).</p>
<p>In order to protect our end users, we must add the malware &#8220;payload&#8221; to our security products.  Here we use the term signature which is made of file names, paths (i.e. c:\windows), and other uniquely identifiable information such as MD5.<br />
We regularly release database updates that include the latest threats we found.</p>
<p>Another part of malware analysis deals with cleaning malware samples we have added to our products. Here we want to make sure that our software is capable of removing all infections without damaging the Operating System.</p>
<p>The loop has been completed, from malware infection, to detection and finally removal.</p>
<p>There goes the day of a Malware Analyst <img src='http://blogs.paretologic.com/malwarediaries/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>JSegura</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.paretologic.com/malwarediaries/index.php/2008/05/13/malware-analysis/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Keyloggers</title>
		<link>http://blogs.paretologic.com/malwarediaries/index.php/2008/05/05/keyloggers/</link>
		<comments>http://blogs.paretologic.com/malwarediaries/index.php/2008/05/05/keyloggers/#comments</comments>
		<pubDate>Mon, 05 May 2008 23:29:01 +0000</pubDate>
		<dc:creator>TinFoilHatMan</dc:creator>
		
		<category><![CDATA[Keyloggers]]></category>

		<guid isPermaLink="false">http://blogs.paretologic.com/malwarediaries/index.php/2008/05/05/keyloggers/</guid>
		<description><![CDATA[As part of my “patching the end user” efforts, I figured I would write about keyloggers.
This is the definition I found on the internet: “A keylogger, sometimes called a keystroke logger, key logger, or system monitor, is a hardware device or small program that monitors each keystroke a user types on a specific computer&#8217;s keyboard.” In [...]]]></description>
			<content:encoded><![CDATA[<p>As part of my “patching the end user” efforts, I figured I would write about keyloggers.</p>
<p>This is the definition I found on the internet: “A keylogger, sometimes called a keystroke logger, key logger, or system monitor, is a hardware device or small program that monitors each keystroke a user types on a specific computer&#8217;s keyboard.” In short, not something you would ever want on your computer.</p>
<p>Not too long ago, I decided to manually download all the keyloggers I could find on the internet and update our database as far as that type of threat is concerned. I figured it would keep me busy for a day or so. Oh boy, was I ever wrong! There is a rather large amount of programs that log your keystrokes, for some ones else convenient later perusal. It&#8217;s big business.</p>
<p>I must have spent a good solid week downloading  keylogger after keylogger. Every time I thought I was nearing the end, I would stumble onto another sample. As my collection efforts finally dwindled, I noticed that some of the depreciated keyloggers migrated from pseudo legality, to downright illegality. Essentially, when some of the more &#8220;fly-by-night&#8221; outfits that market keyloggers go out of business, the source code tends to be recycled by the malware community.</p>
<p>I found this on a website that reviews keyloggers. I also witnessed similar disclaimers during the installation of the more commercially marketed samples I tested.</p>
<p>&#8220;DISCLAIMER: Logging other people&#8217;s keystrokes or breaking into other people&#8217;s computer without their permission can be considered illegal by the courts of many countries. The monitoring software reviewed here is ONLY for authorized system administrators and/or owners of computers. We assume no liability and are not responsible for any misuse or damage caused by the keylogging software. The end user of this software is obliged to obey all applicable local, state, federal and other laws in his country of residence.&#8221;</p>
<p>This has to say something about the ethical issues that surround using this type of software.</p>
<p>Here are a few select screen captures of different keylogger administrative interfaces.</p>
<p><img width="640" src="http://blogs.paretologic.com/malwarediaries/wp-content/uploads/2008/04/goad.png" height="100" style="width: 640px; height: 100px" /></p>
<p>Not very subtle, now are we? As far as I am concerned if you aren&#8217;t presented with a disclaimer, or explicitly made aware that your keystrokes are logged, it should be illegal.</p>
<p>                                                    <img src="http://blogs.paretologic.com/malwarediaries/wp-content/uploads/2008/05/log_on_warning.png" /> </p>
<p>When you are given the option to disable the warning message and make the keylogger go into full stealth mode, it even further muddies the waters. The software maker can claim to take the high road, as these are not checked by default. </p>
<p>                                         <img src="http://blogs.paretologic.com/malwarediaries/wp-content/uploads/2008/05/dubious-options.png" /></p>
<p>I&#8217;m in a peculiar situation, as I&#8217;ve experienced first hand having a keylogger installed on my machine. The profound breach of trust that it engenders is devastating. Many of these applications are marketed towards the Spouse/parent/partner as a peace of mind device. The landing pages for some of these applications are eerily similar to the scare tactics pages used for rogue antispyware software.</p>
<p> If you have to resort to spying, and lets not kid ourselves, that is what these programs and devices do, there is so little implied present trust in the relationship, that logging keys should be the least of your concerns&#8230;</p>
<p>Jean &#8220;TinFoilHatMan&#8221; Taggart</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.paretologic.com/malwarediaries/index.php/2008/05/05/keyloggers/feed/</wfw:commentRss>
		</item>
		<item>
		<title>New rogues coming</title>
		<link>http://blogs.paretologic.com/malwarediaries/index.php/2008/05/05/new-rogues-coming/</link>
		<comments>http://blogs.paretologic.com/malwarediaries/index.php/2008/05/05/new-rogues-coming/#comments</comments>
		<pubDate>Mon, 05 May 2008 17:33:04 +0000</pubDate>
		<dc:creator>JSegura</dc:creator>
		
		<category><![CDATA[Rogue software]]></category>

		<guid isPermaLink="false">http://blogs.paretologic.com/malwarediaries/index.php/2008/05/05/new-rogues-coming/</guid>
		<description><![CDATA[
Those rogue apps, although looking legit are scams which you need to stay away from.
 



]]></description>
			<content:encoded><![CDATA[<p><a href="http://blogs.paretologic.com/malwarediaries/wp-content/uploads/2008/05/01.png"></a></p>
<p>Those rogue apps, although looking legit are scams which you need to stay away from.</p>
<p> <img align="absMiddle" width="572" src="http://blogs.paretologic.com/malwarediaries/wp-content/uploads/2008/05/01.png" height="278" style="width: 572px; height: 278px" /></p>
<p><img align="absMiddle" width="415" src="http://blogs.paretologic.com/malwarediaries/wp-content/uploads/2008/05/02.png" height="203" style="width: 415px; height: 203px" /></p>
<p><img align="absMiddle" width="528" src="http://blogs.paretologic.com/malwarediaries/wp-content/uploads/2008/05/03.png" height="435" style="width: 528px; height: 435px" /></p>
<p><img align="absMiddle" width="492" src="http://blogs.paretologic.com/malwarediaries/wp-content/uploads/2008/05/04.png" height="293" style="width: 492px; height: 293px" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.paretologic.com/malwarediaries/index.php/2008/05/05/new-rogues-coming/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The fine art of rogue scamming</title>
		<link>http://blogs.paretologic.com/malwarediaries/index.php/2008/05/01/test-the-fine-art-of-rogue-scamming/</link>
		<comments>http://blogs.paretologic.com/malwarediaries/index.php/2008/05/01/test-the-fine-art-of-rogue-scamming/#comments</comments>
		<pubDate>Thu, 01 May 2008 23:32:58 +0000</pubDate>
		<dc:creator>JSegura</dc:creator>
		
		<category><![CDATA[Rogue software]]></category>

		<guid isPermaLink="false">http://blogs.paretologic.com/malwarediaries/index.php/2008/05/01/test-the-fine-art-of-rogue-scamming/</guid>
		<description><![CDATA[Riding the wave of spyware and privacy, malware authors are making a lot of money. 
The recipe is pretty simple: use scare tactics and sell a &#8220;magic&#8221; program that will solve all the troubles.
Today we are taking a classic example of IE Antivirus, the latest rogue software. After browsing a couple of known bad sites, [...]]]></description>
			<content:encoded><![CDATA[<p>Riding the wave of spyware and privacy, malware authors are making a lot of money. </p>
<p>The recipe is pretty simple: use scare tactics and sell a &#8220;magic&#8221; program that will solve all the troubles.</p>
<p>Today we are taking a classic example of IE Antivirus, the latest rogue software. After browsing a couple of known bad sites, I found myself subject to many annoying pop-ups. They all seem to tell me that my PC is in great danger and, as good samaritans, they also show me the cure: IE Antivirus.</p>
<p><DIV ALIGN="CENTER"<br />
<img src="http://blogs.paretologic.com/malwarediaries/wp-content/uploads/2008/05/roguescam1.png"><br />
</DIV></p>
<p><DIV ALIGN="CENTER"<br />
<img src="http://blogs.paretologic.com/malwarediaries/wp-content/uploads/2008/05/roguescam2.png"><br />
</DIV></p>
<p><DIV ALIGN="CENTER"<br />
<img src="http://blogs.paretologic.com/malwarediaries/wp-content/uploads/2008/05/roguescam3.png"><br />
</DIV></p>
<p>I am glad to hear that most credit cards are accepted, and that I will benefit from a full money back guarantee. </p>
<p><DIV ALIGN="CENTER"<br />
<img src="http://blogs.paretologic.com/malwarediaries/wp-content/uploads/2008/05/cardoptions.png"><br />
</DIV><br />
<DIV ALIGN="CENTER"<br />
<img src="http://blogs.paretologic.com/malwarediaries/wp-content/uploads/2008/05/roguescam4.png"><br />
</DIV></p>
<p>However, I am a little worried about the cost, around $70&#8230; I&#8217;m thinking there are a lot of well known programs out there a lot cheaper than that, but there must be a reason for this one to come right to me.<br />
Also, I can get their Alpha wipe cleaner for a very small one time fee.</p>
<p>The total charge is now around $80.</p>
<p><DIV ALIGN="CENTER"<br />
<img src="http://blogs.paretologic.com/malwarediaries/wp-content/uploads/2008/05/roguescam5.png"><br />
</DIV></p>
<p>It&#8217;s hard to tell how many people will purchase the product, but it&#8217;s fair to say that those scams are very profitable. It&#8217;s sad to think that way but that&#8217;s how the world goes on.</p>
<p>Your best choice to eradicate these pests is to clean your PC with a real, trustworthy program. Maybe not just one, but several as not all may be able to detect the Trojan responsible for it. Malware authors will design thousands of variants of their Trojan in order to evade regular anti virus detection.</p>
<p>Our job in the SWAT team is to find all those threats before you do so that we can protect your PC before you even get infected. There are many ways to find those things. We like to replicate regular end user behaviour by making extensive use of our honeypots and other system traps.</p>
<p>JSegura</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.paretologic.com/malwarediaries/index.php/2008/05/01/test-the-fine-art-of-rogue-scamming/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Malware authors have trouble with spelling and grammar</title>
		<link>http://blogs.paretologic.com/malwarediaries/index.php/2008/04/28/malware-authors-have-trouble-with-spelling-and-grammar/</link>
		<comments>http://blogs.paretologic.com/malwarediaries/index.php/2008/04/28/malware-authors-have-trouble-with-spelling-and-grammar/#comments</comments>
		<pubDate>Mon, 28 Apr 2008 17:08:00 +0000</pubDate>
		<dc:creator>JSegura</dc:creator>
		
		<category><![CDATA[Rogue software]]></category>

		<guid isPermaLink="false">http://blogs.paretologic.com/malwarediaries/index.php/2008/04/28/malware-authors-have-trouble-with-spelling-and-grammar/</guid>
		<description><![CDATA[We have seen so many different rogue programs these past couple of years. They try real hard to look legitimate using fancy graphics and Microsoft Windows&#8217;s style. Most of them actually look much nicer than some of your popular applications.
There is one simple reason behind that: to gain the trust of the user. Many people [...]]]></description>
			<content:encoded><![CDATA[<p>We have seen so many different rogue programs these past couple of years. They try real hard to look legitimate using fancy graphics and Microsoft Windows&#8217;s style. Most of them actually look much nicer than some of your popular applications.</p>
<p>There is one simple reason behind that: to gain the trust of the user. Many people that I know have been duped that way, downloading and buying a totally bogus anti spyware program that claims to remove all those annoying pop ups.</p>
<p>But in the SWAT team, we have a good eye for details. At least, I have a thing for spelling mistakes: they simply bother me. Also, it may be a hint there is something dubious about the program.</p>
<p>So here are a few examples we have encountered.</p>
<p align="center"><img src="http://blogs.paretologic.com/malwarediaries/wp-content/uploads/2008/04/allert1.png" /></p>
<p align="center"><em>Figure 1: Allert / Alert</em></p>
<p align="center">&nbsp;</p>
<p align="center"><img src="http://blogs.paretologic.com/malwarediaries/wp-content/uploads/2008/04/sinfection.png" /></p>
<p align="center"><em>Figure 2: 7 dangerous infection / 7 dangerous infections</em></p>
<p align="center">&nbsp;</p>
<p align="center"><img src="http://blogs.paretologic.com/malwarediaries/wp-content/uploads/2008/04/malaware.png" /></p>
<p align="center"><em>Figure 3: Malaware Removal / Malware Removal</em></p>
<p align="center">&nbsp;</p>
<p align="center"><img src="http://blogs.paretologic.com/malwarediaries/wp-content/uploads/2008/04/avsystemcareworld.png" /></p>
<p align="center"><em>Figure 4: Most Jeopardy threats. Does that make sense?</em></p>
<p align="center">&nbsp;</p>
<p align="center"><img src="http://blogs.paretologic.com/malwarediaries/wp-content/uploads/2008/04/webcodec.png" /></p>
<p align="center"><em>Figure 5: operation system / operating system</em></p>
<p align="center">&nbsp;</p>
<p align="center"><img src="http://blogs.paretologic.com/malwarediaries/wp-content/uploads/2008/04/roguewarning.png" /></p>
<p align="center"><em>Figure 6: pervent any unathorised / prevent any unauthorized</em></p>
<p align="center">&nbsp;</p>
<p align="center"><img src="http://blogs.paretologic.com/malwarediaries/wp-content/uploads/2008/04/advancedcleaner.png" /></p>
<p align="center"><em>Figure 7: how many registries are there?</em></p>
<p align="center">&nbsp;</p>
<p align="center"><img src="http://blogs.paretologic.com/malwarediaries/wp-content/uploads/2008/05/steelnotsafe.png" /></p>
<p align="center"><em>Figure 8: that one has to be the best <img src='http://blogs.paretologic.com/malwarediaries/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </em></p>
<p align="center">&nbsp;</p>
<p align="center"><img src="http://blogs.paretologic.com/malwarediaries/wp-content/uploads/2008/05/desktophijack01.png" /><br />
<em>Figure 9: &#8220;YOUR&#8217;RE&#8221;  - The &#8216;R&#8217; Spanish style <img src='http://blogs.paretologic.com/malwarediaries/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </em></p>
<p>And the list goes on&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.paretologic.com/malwarediaries/index.php/2008/04/28/malware-authors-have-trouble-with-spelling-and-grammar/feed/</wfw:commentRss>
		</item>
		<item>
		<title>New rogues from well known domain</title>
		<link>http://blogs.paretologic.com/malwarediaries/index.php/2008/04/21/new-rogues-from-well-known-domain/</link>
		<comments>http://blogs.paretologic.com/malwarediaries/index.php/2008/04/21/new-rogues-from-well-known-domain/#comments</comments>
		<pubDate>Mon, 21 Apr 2008 16:17:35 +0000</pubDate>
		<dc:creator>JSegura</dc:creator>
		
		<category><![CDATA[Rogue software]]></category>

		<guid isPermaLink="false">http://blogs.paretologic.com/malwarediaries/index.php/2008/04/21/new-rogues-from-well-known-domain/</guid>
		<description><![CDATA[It&#8217;s a story we&#8217;ve heard before&#8230; Fake warnings of spyware infections&#8230; Well branded products to the rescue&#8230; PC-Antipsyware &#038; PC-Cleaner.
But let&#8217;s check out the registrar for antispyware-reviews.biz, just out of curiosity.
ESTDOMAINS! Ah, now that makes sense. These guys are well known for their bad practices and the rogue anti-spyware programs they host. Stay away from [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s a story we&#8217;ve heard before&#8230; Fake warnings of spyware infections&#8230; Well branded products to the rescue&#8230; PC-Antipsyware &#038; PC-Cleaner.<br />
But let&#8217;s check out the registrar for antispyware-reviews.biz, just out of curiosity.</p>
<p>ESTDOMAINS! Ah, now that makes sense. These guys are well known for their bad practices and the rogue anti-spyware programs they host. Stay away from those at all costs!</p>
<p><img src="http://blogs.paretologic.com/malwarediaries/wp-content/uploads/2008/04/spydesktop.png" alt="" /></p>
<p><img src="http://blogs.paretologic.com/malwarediaries/wp-content/uploads/2008/04/rogue.png" alt=""/></p>
<p><img src="http://blogs.paretologic.com/malwarediaries/wp-content/uploads/2008/04/rogues.png" alt="" /></p>
<p><img src="http://blogs.paretologic.com/malwarediaries/wp-content/uploads/2008/04/est.png" alt="" /><br />
<BR><br />
</BR></p>
<p>If you happen to be already infected, do not get lured to buy the rogue product. Many people fall for those scams by giving ourt their credit card number.<br />
Instead, proceed to remove it using legitimate software. If you are not sure about the choice, ask your friends or anybody you can trust.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.paretologic.com/malwarediaries/index.php/2008/04/21/new-rogues-from-well-known-domain/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Malware armoring is now the norm. :&#8217;(</title>
		<link>http://blogs.paretologic.com/malwarediaries/index.php/2008/04/14/malware-armoring-is-now-the-norm/</link>
		<comments>http://blogs.paretologic.com/malwarediaries/index.php/2008/04/14/malware-armoring-is-now-the-norm/#comments</comments>
		<pubDate>Mon, 14 Apr 2008 17:13:08 +0000</pubDate>
		<dc:creator>TinFoilHatMan</dc:creator>
		
		<category><![CDATA[Malware Trends]]></category>

		<guid isPermaLink="false">http://blogs.paretologic.com/malwarediaries/index.php/2008/03/31/malware-armoring-is-now-the-norm/</guid>
		<description><![CDATA[Traditionally, we have seen advanced behavior in malware trickle down from the top tier threats to the more common samples. One such disturbing trend is armoring. This is when malware actively defends itself against removal and analysis. This can be achieved in many different ways and we often use the less subtle of these traits [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-family: Georgia">Traditionally, we have seen advanced behavior in malware trickle down from the top tier threats to the more common samples. One such disturbing trend is armoring. This is when malware actively defends itself against removal and analysis. This can be achieved in many different ways and we often use the less subtle of these traits as a quick method of confirming infection.  It is obvious that a system is infected with malware, if the user suddenly finds he cannot run common tools, such as the registry editor, or the task manager.</span></p>
<p><span style="font-family: Georgia"><img width="400" src="http://blogs.paretologic.com/malwarediaries/wp-content/uploads/2008/03/permission.png" height="213" style="width: 400px; height: 213px" /></span></p>
<p><span style="font-family: Georgia"><span></span></span><span style="font-family: Georgia"><span></span></span><span style="font-family: Georgia"><span><img align="absMiddle" width="400" src="http://blogs.paretologic.com/malwarediaries/wp-content/uploads/2008/03/cmd.png" height="109" style="width: 400px; height: 109px" /><span style="font-family: Georgia"><span><span style="font-family: Georgia"><span><span style="font-family: Georgia"><a href="http://blogs.paretologic.com/malwarediaries/wp-content/uploads/2008/03/cmd.png"></a></span></span></span></span></span></span></span></p>
<p><span style="font-family: Georgia"><span><span style="font-family: Georgia"><span><span style="font-family: Georgia"><span><span style="font-family: Georgia"></span></span></span></span></span><span style="font-family: Georgia"><span><span style="font-family: Georgia"><span><span style="font-family: Georgia"></span></span></span><span style="font-family: Georgia"><span><span style="font-family: Georgia"></span><span style="font-family: Georgia"><span style="font-family: Georgia"></span><span style="font-family: Georgia">We now routinely encounter samples that go one step further, preventing common code analysis tools such as ollydbg, or IDApro from running, or executing a <em><span style="font-family: Georgia">different</span></em> payload altogether. This is an effort on the part of the bad guys to delay analysis for as long as possible.  It also forces the development of expensive in-house tools to take malware apart. </span></span></span></span></span></span></span></span></p>
<p><span style="font-family: Georgia"><span><span style="font-family: Georgia"><span><span style="font-family: Georgia"><span><span style="font-family: Georgia"><span style="font-family: Georgia"></span></span><span style="font-family: Georgia"><span style="font-family: Georgia"></span></span><span style="font-family: Georgia"><span style="font-family: Georgia"></span><span style="font-family: Georgia">Most security analyst use virtualization in one form or another as part of their day to day operations. Launching samples inside of a guest virtual machine, running on a host computer is much faster than actually infecting a real computer. You don&#8217;t have to re-image your machine once the malware has been scrutinized, simply reset the image. This makes virtual machines an ideally suited testing environment. The malware authors have become aware of this, and are now implementing methods in which malcode will actually <em>verify</em> if it in a virtual environment before executing. </span></span></span></span></span></span></span></span></p>
<p><span style="font-family: Georgia"><span><span style="font-family: Georgia"><span><span style="font-family: Georgia"><span><span style="font-family: Georgia"><span style="font-family: Georgia"></span></span></span></span></span></span></span></span><span style="font-family: Georgia"><span><span style="font-family: Georgia"><span><span style="font-family: Georgia"><span><span style="font-family: Georgia"><span style="font-family: Georgia"></span></span></span></span></span></span><span style="font-family: Georgia"><span><span style="font-family: Georgia"><span style="font-family: Georgia"></span></span><span style="font-family: Georgia"><span style="font-family: Georgia"><img width="299" src="http://blogs.paretologic.com/malwarediaries/wp-content/uploads/2008/03/no-vm.png" height="124" style="width: 299px; height: 124px" /></span></span></span></span></span></span></p>
<p><span style="font-family: Georgia"><span><span style="font-family: Georgia"><span><span style="font-family: Georgia"><span style="font-family: Georgia"></span></span></span></span><span style="font-family: Georgia"><span><span style="font-family: Georgia"><span style="font-family: Georgia"></span></span><span style="font-family: Georgia"> </span><span style="font-family: Georgia"><span style="font-family: Georgia"></span></span><span style="font-family: Georgia"><span style="font-family: Georgia"><span style="font-family: Georgia">As this trend gradually becomes the norm, we are seeing 3rd party software, that offer anti-virtualization armoring techniques for the less skilled attackers.</span> </span></span><span style="font-family: Georgia"><span style="font-family: Georgia"></span><span style="font-family: Georgia"><span style="font-family: Georgia"> </span></span></span></span></span></span></span><span style="font-family: Georgia"><span><span style="font-family: Georgia"><span> </span></span></span></span></p>
<p><span style="font-family: Georgia"><span><span style="font-family: Georgia"><span></span></span></span></span><span style="font-family: Georgia"><span><span style="font-family: Georgia"><span><span style="font-family: Georgia"><span style="font-family: Georgia"><span style="font-family: Georgia"><img src="http://blogs.paretologic.com/malwarediaries/wp-content/uploads/2008/03/cheeky.png" /></span></span></span></span></span></span></span><span style="font-family: Georgia"><span><span style="font-family: Georgia"><span> </span></span></span></span></p>
<p><span style="font-family: Georgia"><span><span style="font-family: Georgia"><span>What was once reserved for advanced threats has now become the norm. It is disheartening to see how rapidly this occured. These new capabilities do have the strange side effect of making the use of virtualization safer, from an end user&#8217;s perspective, as most of the malware will assume it is in this environment for dissection purposes, and thus refuse to execute.</span></span></span></span></p>
<p><span style="font-family: Georgia"><span><span style="font-family: Georgia"><span></span></span></span></span></p>
<p><span style="font-family: Georgia"><span><span style="font-family: Georgia"><span>Jean Taggart</span></span></span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.paretologic.com/malwarediaries/index.php/2008/04/14/malware-armoring-is-now-the-norm/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Welcome!</title>
		<link>http://blogs.paretologic.com/malwarediaries/index.php/2008/03/31/welcome/</link>
		<comments>http://blogs.paretologic.com/malwarediaries/index.php/2008/03/31/welcome/#comments</comments>
		<pubDate>Mon, 31 Mar 2008 18:14:28 +0000</pubDate>
		<dc:creator>JSegura</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blogs.paretologic.com/malwarediaries/index.php/2008/03/31/welcome/</guid>
		<description><![CDATA[I am very pleased to see the Malware Diaries now online.
I have been working in the security industry for a little more than two years now. It is definitely a very captivating and challenging place.
The SWAT team here at Paretologic is responsible for Malware Research and Database Updates. Our job is to find the bad [...]]]></description>
			<content:encoded><![CDATA[<p>I am very pleased to see the Malware Diaries now online.</p>
<p>I have been working in the security industry for a little more than two years now. It is definitely a very captivating and challenging place.</p>
<p>The SWAT team here at Paretologic is responsible for Malware Research and Database Updates. Our job is to find the bad stuff floating on the Internet and analyze it in our lab before adding detection signatures to our security products.<br />
We actively seek malware with different tools which consist of traps (also known as HoneyPots). as well as human research.<br />
As you may imagine we get to see a wide variety of threats from simple social engineering attacks to very well crafted exploits.</p>
<p>The malware diaries will tell you various stories about online security. The purpose is to be informative, accessible to the novice and interesting to the expert. My partner in crime Jean Taggart will share the pen with me along the journey.</p>
<p>Feel free to browse as you wish or use the menu on the right side to pick a category. We welcome your feedback.</p>
<p>Enjoy! <img src='http://blogs.paretologic.com/malwarediaries/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>J. Segura<br />
Computer Security Analyst, Malware Diaries author</p>
<p>&#8212;&#8212;</p>
<p>Hello world!</p>
<p>My name is Jean Taggart and I am a computer security analyst here at Paretologic.</p>
<p>I firmly believe that “patching” the end user is a good thing. That is essentially what we do when we inform someone through our blog postings on the seedier side of the net. When we describe how a scam works, explain how the bad guys are trying to fool users in parting with their hard earned money, we disarm them.</p>
<p>I have seen the threat landscape change dramaticaly over the past few years. From adware that you could simply uninstall, soon followed by programs that intentionnaly obfuscated their file names and how they hooked into the registry,  and eventually applications that have monitoring processes and exhibit rootkit like traits.</p>
<p>If we can entertain you at the same time that we inform you on these emerging threats, so much the better.</p>
<p>Jean Taggart<br />
Computer Security Analyst, Malware Diaries co-author</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.paretologic.com/malwarediaries/index.php/2008/03/31/welcome/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Gone Phishing&#8230;</title>
		<link>http://blogs.paretologic.com/malwarediaries/index.php/2008/03/31/gone-phishing/</link>
		<comments>http://blogs.paretologic.com/malwarediaries/index.php/2008/03/31/gone-phishing/#comments</comments>
		<pubDate>Mon, 31 Mar 2008 17:13:15 +0000</pubDate>
		<dc:creator>JSegura</dc:creator>
		
		<category><![CDATA[Phishing]]></category>

		<guid isPermaLink="false">http://blogs.paretologic.com/malwarediaries/index.php/2008/03/31/gone-phishing/</guid>
		<description><![CDATA[More and more sensitive information is exchanged online, so much so that, most of the time we don’t realize it. We log into our email account(s), our bank sites, our eBay account etc. Every time we do that, a transaction happens. We send in passwords, usernames or credit card numbers onto an external server. Of [...]]]></description>
			<content:encoded><![CDATA[<p>More and more sensitive information is exchanged online, so much so that, most of the time we don’t realize it. We log into our email account(s), our bank sites, our eBay account etc. Every time we do that, a transaction happens. We send in passwords, usernames or credit card numbers onto an external server. Of course, we know about why it is so important to choose a strong password, but do we know it is totally useless if we cannot trust the recipient we are sending it to?</p>
<p>That is where anyone can I exploit that trust. Phishing is any action made to fraudulently acquire private information by pretending to be a real and trustworthy entity.</p>
<p>Very soon, hackers have realized how much value there was in doing Phishing scams. Stealing somebody’s credentials can give full access to very private information and basically be in total control of someone’s life (provided that the person does some online banking, logs into her healthcare site and so on).</p>
<p>There are many ways to carry out a phishing scam. First of all, the victim needs to be contacted in some way. It could be from an email, that leads you to a fake site, or it could be from a typical malware infection, that hijacks the web browser and redirects it to fraudulent<br />
websites whenever the victim types in the URL, or clicks on a bookmark.</p>
<p>Secondly, because the phishing site will be hosted on a different domain than the real one, the hacker needs to trick the</p>
<p align="center"> <img src="http://blogs.paretologic.com/malwarediaries/wp-content/uploads/2008/03/gonephishing01.png" /><em>Figure 1: phishing site targeting Facebook users. Notice the URL ending in “.cn” </em></p>
<p>user into believing this is the correct URL. A classic example is to<br />
slightly modify the domain name. Also, typos are commonly used.</p>
<p>Real: www.google.com<br />
<em><strong>Fake: www.go0gle.com</strong></em></p>
<p>Real: ww.facebook.com<br />
<em><strong>Fake: www.facebook.com.profile.php.id.37122.cn</strong></em></p>
<p>Another technique called website forgery involves the use of scripts to<br />
alter the address bar. The legitimate address bar can be closed in order to display a hacked one. More simply, a JavaScript can be used to display a picture in place of the address bar, so that everything looks legitimate.</p>
<p>Let’s take an example of a Phishing scam targeted at Facebook’s users (Figure 1).</p>
<p>A similar face plate is created, that looks identical to the legitimate one. The URL in the address bar is slightly different, but the average user may not notice it. In fact, this page is hosted in China.</p>
<p>Then let’s enter the email address and password in the form. Figure 2 shows that the credentials are being sent to the phishing server somewhere in China.</p>
<p>Interestingly enough, after entering the login information, the real login page for</p>
<p align="center"> <img src="http://blogs.paretologic.com/malwarediaries/wp-content/uploads/2008/03/gonephishing02.png" /><em>Figure 2: data transfer between the client and the malware server </em><br />
Facebook is loaded this time. The user might just think she typed something wrong and re-enter the login again. Now, it will work and most likely the user won’t have noticed a thing.</p>
<p>Meanwhile, a hacker has received a valid email address that he can use for spam, not mentioning that he can log into the Facebook account at any time. However, there is something even better he can get access to, with a bit of luck. A lot of people use the same password for the different services they long into.</p>
<p>Now, the hacker gets into your personal email account. Due to the larger storage available, people don’t bother deleting old emails. This is a gold mine for hackers. They will do a simple keyword search (“password”, “credit card”, “confidential”), and find even more juicy stuff.</p>
<p>The conclusion to this story is that Phishing is a real and dangerous online threat. Although efforts are being made to protect users, the problem is so large that not one solution can fix it.<br />
Internet Explorer 7 does include a filter capable of detecting phishing sites. But it’s not 100% trustworthy. There are public groups combating fishing and reporting live stats as well as taking them down. The PIRT (Phishing Incident Reporting and Termination) team at Castlecops.com is one of them doing a very good job.</p>
<p>Ultimately, this is something that users will have to become familiar with and more vigilant. Effectively blocking spam emails which are full of phishing scams would be a good start. Browser add-ons or applications running in the background can also detect in real time dangerous websites and block them.</p>
<p>Jerome Segura</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.paretologic.com/malwarediaries/index.php/2008/03/31/gone-phishing/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
