Charles G. Mullen

An internet marketer’s blog.

Entries Tagged as 'cookie stuffing'

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