Charles G. Mullen

An internet marketer’s blog.

Entries Tagged as 'cookie stuff'

Simple Ban Prevention For Cookie Stuffers

Now for all of you who think Cookie Stuffing is a simple drop your cookies here & there, get traffic, obtain clicks, receive commission is quite mistaken. Sure it’s easy as hell to stuff cookies & get commissions but how long can you do it for? Longevity is key here and taking simple measures to prevent getting banned is essential and key to long-term Blackhat Marketing success.

Below is a sample code in PHP that will only stuff cookies to users refered from Google:

if(substr((trim($_SERVER['HTTP_REFERER'])),0,23=="http://www.google.com/")
{
   echo "<img src=\"http://www.affiliatelink.com\" height=\"1\" width=\"1\" alt=\"\">";
}

Obviously the interchangeable part is the "echo" portion of the code. You don’t have to use the Image Stuffing method as it is only used here as an example. Also this is a barebones & basic code just for referer’s from Google. If you wish to add referers, use the elseif(substr((trim….so forth and change the 0,23 & the URL to match to how many character’s in length it is.

With a little PHP programming knowledge, you should be able to write an effective database driven model. If you don’t, you could probably outsource it at RentACoder, ScriptLance, or you could e-mail me for a quote.

The freely available model I’ve posted above is very basic and is definitely not enough to keep you in the safe boundaries you should be in. This also doesn’t prevent affiliate manager’s from getting stuffed — he or she may simply search for your website through Google, click through, and get stuffed. If you also need help with that, feel free to e-mail me for help.

Charles

Basic Method of Image Cookie Stuffing

I know I just had a post regarding eBay filing a lawsuit against cookie stuffers. This lawsuit is specifically from EPN (eBay Partner Network) and have not seen any other legal issues with any other affiliate networks other than a simple boot and ban — cya! Well I’m here to outline basic methods of cookie stuffing which will make you not a good amount of money, but a GREAT amount. We’re talking $x,xxx per month with minimal amounts of actual work (depending on method and application).

Image Stuffing

This is probably where everyone starts off, the infamous image stuff. Can be implemented on forums, your own website, anywhere that allows HTML or IMG code.

Stuff Code

<img src="http://www.affiliate-link-here.com"> (Own webpage)
[IMG]http://www.affiliate-link-here.com[/IMG] (Forum posts)

Moreover

That simple code will allow for a user to get their cookie stuffed with that given affiliate URL. If an unsuspecting reader visits your website and navigates to your article with your own webpage stuff code, he/she will get their cookie stuffed for that given affiliate URL. You can stuff an unlimited amount of cookies. However, there are severe flaws as the link will be visible and allows for unsuspecting users to see your Blackhat techniques. If a user is tech savy enough, you will get caught…but there are ways around that.

Improved Stuffing Codes

<img src="http://www.affiliate-link-here.com" height=1 width=1>

This is better but will still show a red X in Internet Explorer 7 or earlier. Firefox doesn’t show an image altogether and is stuffed successfully. Here’s an even better version of the code:

<img src="http://www.affiliate-link-here.com" height=1 width=1 alt=" ">

What this allows is to no longer show a red X but the alternative text which there is none but a space. Therefore a space shows instead of the broken image.

That’s all there really is to the image stuff. When combined with other more conspicuous cookie stuffing methods, cookie stuffing becomes nothing short of revolutionary.

Charles

eBay Files Lawsuit Against Cookie Stuffers

eBay Sues Alleged ‘Cookie Stuffers’

SAN FRANCISCO (CN) - Three men defrauded eBay in a "cookie stuffing" scheme that made it appear the men’s companies should be paid commissions, eBay claims in Federal Court. It sued Shawn Hogan and Digital Point Solutions, Todd Dunning and Kessler’s Flying Circus, and Brian Dunning and Thunderwood Holdings.
eBay says the men devised software programs that, "unbeknownst to the [computer] user, redirected the user’s computer to the eBay Web site without the user actually clicking on an eBay advertisement link, or even becoming aware that they had left the page they were previously viewing. As a result, the eBay site would be prompted to drop an eBay cookie on the user’s computer even though the user never clicked on an eBay advertisement or even realized that their computer had ever visited the eBay site."
The complaint continues: "once the cookie was stuffed on the user’s computer by one or more of the defendant’s any future revenue actions initiated by that user when the user later visited eBay intentionally, and not as a result of any advertisement places by defendants, appeared to be eligible for commissions payable to one of the defendants".
eBay claims the defendants also used deceptive means to prevent it from discovering the fraud, and to conceal it. eBay demands compensatory, treble and punitive damages. It is represented by David Eberhart with O’Melveny & Myers.

Source: Here

There’s also a PDF file outlining the document of the lawsuit. You can find that Here.

Good or bad for cookie stuffers? We’ll find out…

Charles