MSI Wind review

July 2, 2008 on 5:51 am | In Blackhat SEO | 5 Comments

Well I finally got my hands on the MSI Wind which in my opinion is better than the eeePC. It compares closely to the eeePC 901 which hasn’t been released yet.

It uses the new intel atom processor and has an 80gb standard HD rather than a smaller solid state like the eeePC 901 uses. It’s slightly larger than the 901, but only just! They have made good use of the space to fit in a 10″ screen and a larger (more usuable) keyboard than the 901 by stretching it right to the sides of the chasis.

I haven’t done much testing yet but I can confirm it came with windows XP service pack 3 and it comfortably plays age of empires 2 and 3 :D To save battery I hit FN+F10 and it turns down the screen brightness and underclocks the CPU to 800mhz.

I took some pics comparing the MSI Wind to my macbook Pro and a 2g eeePC…

MSI wind VS Macbook Pro

MSI wind VS 2g eeePC

Image 2

Image 3

Oh and I also got it to run Backtrack3 from an SD card… Image 4
. How?

  1. Boot the MSI wind into windows XP as normal and download the backtrack 3 usb ISO file.
  2. Mount the ISO using free tools or use winrar to extract the contents.
  3. Copy both folders (boot and bt3) onto the SD card.
  4. Load a command prompt, change drive to the SD card.. in my case E:
  5. CD to the BOOT folder and run the bootinst.bat
  6. When the MSI wind is booting, press f11 and select the card-reader boot option :)
Recommend: These icons link to social bookmarking sites where readers can share and discover new web pages.
  • Digg
  • del.icio.us
  • Slashdot

Cookie stuffing revisited

June 30, 2008 on 9:00 am | In Blackhat SEO | 5 Comments

Recently my blackhat seo hacker friend Chewie went on some seomoz thing and talked briefly about cookie stuffing.

Before reading any further you might want to read my post on dropping affiliate cookies which explains what/why/where/when and also my cookie stuffing code examples page. However if you already know the basics then you can get going much quicker by sticking with this post.

I decided to write this post because the amount of emails I recieved all asking the same questions.

Avoiding high (100%) CTR when dropping cookies

One problem with dropping the cookies on every visitor is that it will result in a 100% CTR which can be an obvious flag that something isn’t right. To avoid this you can take a couple of steps, depending on how much time you wish to put into it and your coding skills.

The simplest way to avoid this problem is to use PHPs rand() function to select a random number between(and including) 1-4 and then only output the code to drop the cookie if the number equals 1. This method won’t allow you to set an exact percentage because the number chosen will always be random. Out of 100 visits, it might select the numbers 2,3 and 4 30 times each while selecting the number 1 only 10 times.

Code sample:

  1. <?
  2. $random_number = rand(1,4);
  3. if($random_number == 1){
  4. echo "Our cookie stuffing code goes here!";     
  5. }
  6. ?>

If you have time then you might want to code something more advanced. For example:

  • Drop cookie only once per IP address
  • Keep a daily count of visitors and then limit how many people you drop the cookie on the next day. For example if you have 1000 unique visitors on Monday, on Tuesday you will drop the cookie on a maximum of 200 people.
  • Log every visitor and only drop a cookie on every tenth visitor
  • Etc.

Avoid getting caught forcing cookies on users

A lot of people have said, surely it’s easy to get caught forcing cookies on people if you have an iframe where the source is the affiliates page. This is true to some degree. You should take the following things into consideration:

  • The iframe method is the most basic and is intended as proof of concept rather than real world usage
  • If you have been an affiliate for awhile and your CTR isn’t ridiculously high then there’s no reason the advertiser would ever check your site for cookie stuffing

So what is a safer method than Iframes for dropping the cookie?

A safer method of dropping the cookie would be using a false image which redirects to the affiliates page that has the HTTP Cookie header. The browser will try to load the image, be redirected to the affiliate page and although it won’t process any html on the final page, it WILL read and process the HTTP headers… including the one which places the cookie ;) It’s crucial that you redirect to the exact page that has the cookie header, so be careful if the affiliate site redirects a lot of times before landing on its final page so that you select the correct one which is dropping the cookie.

The simplest way to do this would be using a .htaccess file which says, if there is a reference to “tracking_pixel.jpg” then redirect it to xyz affiliate page.

.htaccess Code sample:

  1. RewriteEngine On
  2. RewriteRule tracking_pixel.jpg http://www.affiliate.com/BDHDHDHDJ/ [R,L]

You now edit your site template so that every page includes the image:

  1. <img src="tracking_pixel.jpg" />

Now, even if the affiliate decides to come and take a look at your sites source code, they’re going to see nothing which catches their eye. If for example you had a website which sold clothes then the chances are you’d have a lot of images named blue_shirt.jpg and such like. So in this case you could easily name it red_shirt.jpg and have it mixed in somewhere in your template and they’d never know!

An even safer image cookie stuff..
Whilst it’s extremely unlikely, it is possible that someone checking your site for stuffing could try loading tracking_pixel.jpg into their browser and then they’d be redirected to the affiliate page and guess something is amiss. To combat this, instead of using .htaccess to redict to the affiliate page, we will instead tell it to treat a file named tracking_pixel.jpg as a PHP file.

.htaccess Code sample:

  1. <Files tracking_pixel.jpg>
  2. ForceType application/x-httpd-php
  3. </Files>

Now we put PHP code in tracking_pixel.jpg which checks the referring page. If the referrer is empty then the user has gone direct to our image and we should output a 404 error, if there is a referrer then the image has been included on a page and should be redirected to the affiliate site.

tracking_pixel.jpg code sample:

  1. <?
  2. if(!$_SERVER[‘HTTP_REFERER’]){
  3. header("HTTP/1.0 404 Not Found");
  4. } else {
  5. header("Location: http://www.affiliate.com/BDHDHDHDJ/");
  6. }
  7. ?>

So now just include the following code on any page that you wish to drop cookies from:

  1. <img src="tracking_pixel.jpg" />

Also note that you’re not limited to including the image on your own site! You could also include it on forums and such like… basically anywhere that will allow you to place images. So if you signed up to a popular bingo forum you might decide to start becoming a regular poster and dropping cookies for all the well known bingo rooms.

I think this pretty much covers most of the questions which have been asked :)

Recommend: These icons link to social bookmarking sites where readers can share and discover new web pages.
  • Digg
  • del.icio.us
  • Slashdot

Dropping affiliate cookies

March 20, 2008 on 11:27 pm | In Blackhat SEO | 9 Comments

So I have run into a bit of a debate on the syndk8 forum about the legalities of the whole cookie dropping thing.

Let me make something clear from the get go, I personally don’t give two hoots about people doing this. I have tried it in the past as proof of concept and in the end decided against it for the moral reasons. I have and probably will again do worse in the future so don’t think I’m against other people doing this for moral reasons.

Talking about click bots for adsense on the forum is a complete no-no and will result in an instant ban, why? Because it’s click FRAUD.. you’re earning money in a fraudulent way.

What is an affiliate?

To increase traffic and sales, certain companies run affiliate programs where they will pay you a nice bit of money for each person you put through to them who purchases an item. For example someone may run an ebay banner on their site and if a user was to click onto that and buy something then the site owner running the banner would earn a little bit of money.

What is cookie stuffing?

Each time you send someone through to the affiliate site, e.g ebay then a cookie will be dropped onto their system which lets ebay know exactly where the user originally came from and then if they buy something you will be sure to earn a little cream off the top. Cookie stuffing or cookie dropping basically involves forcing this cookie onto visitors computers without them even knowing its happening and never sending them onto the affiliate site (e.g ebay). The normal place for this to happen is large busy forums which have thousands of users passing through every day and having multiple cookies dropped onto their systems for different companies without even knowing.

What’s wrong with this?

  • The affiliate is paying you on the basis of you introducing traffic and sales to their website. However you’re not actually doing this, you’re forcing cookies onto their systems in the background and when they go and buy something from ebay you’re claiming a little bit of money for it. Ebay are paying you for traffic you didn’t even introduce and therefore you’re defrauding them. They were going to have the sale regardless of you, the only reason you’re being attributed for the lead is because you used shady tactics to drop a cookie.
  • Another problem with this is that your cookie may overwrite the cookie of a legitmate affiliate who is working hard to generate genuine traffic. So you’re taking money that they would have earnt.

Let me compare this to another regular online fraud.. People have been known to run google adsense on their sites but instead of having legitimate clicks, they use javascript to force the user to click on an advert without even knowing. By having the advert clicked they have just cost the advertiser money for a lead and earnt themselves a little bit of cream. Usually the end user will not see the resulting page of the ad click. Similar level of fraud.
What affiliate companies does this effect?

The methods used are pretty universal and can be used effectively against everyone from ebay to poker companies.

How are the cookies dropped?

See my page on cookie stuffing.
Temporary conclusion

I’m not lawyer and I’m not really one to judge what’s right or  wrong. To me, you’re claiming money for putting leads through to them which you actually aren’t which seems like fraud.

Recommend: These icons link to social bookmarking sites where readers can share and discover new web pages.
  • Digg
  • del.icio.us
  • Slashdot

Quick post

March 19, 2008 on 6:50 pm | In General | 3 Comments

This is just a quick post with no real seo focus.

To start with, I have a special promo for Boysstuff this week! 25% of anything in their catalog. Okay their prices are a little high to start with but with 25% off they’re pretty good! Just use the coupon code RTN25 before 31/03/2008.

The old saying is that the way to a mans heart is threw his stomach.. the way to an SEOs contacts or knowledge also seems to be the same way as I recieved a box of kitkats today from SEOIdiot as a bribe lol! He knows I would tell him anyway but he does like to have his little jokes. So thanks for that :)

 

I’m going to be doing a few posts on targeted offline spamming</strike> I mean advertising soon. I’m sure everyone has thought about it before so keep an eye out for the future posts :)

I’m also going to start offering online versions of some of my scripts so you can use them quickly online without having to download them and put them on your own hosting :)

Recommend: These icons link to social bookmarking sites where readers can share and discover new web pages.
  • Digg
  • del.icio.us
  • Slashdot

Negative SEO - Duplicate content

February 25, 2008 on 2:39 pm | In Negative SEO | 13 Comments

Duplicate content has been a problem for people for a long time. The basic idea is to create many copies of the content on someone elses website to confuse search engines about which one is the true author of the content and force them into supplemental results. Generally this method is unlikely to work on a large, long standing authoritative website but for reasonably newly launched websites, sites with low authority (low links, low quality pages etc) then it can be an effective method of keeping them out of the serps.

If you’re unsure why you’d want to do this then maybe you’re on the wrong website! Lets say you have a couple sites up high for the term “office printers” and you see a few new guys pop up, you’d simply get as many other sites indexed with the same content as these new guys to confuse the search engine about who is the real owner of the content and have them penalised. The more links you can point at the proxy urls to get them indexed and healthy the better.

Spreading the content out over different sites can be an expensive and time consuming process, especially if you want to replicate a lot of content. One way around this is to use a web proxy url maker just like the one I created. This works by using a list (right now, about 1000) of different web proxies and generating a list of web addresses based on the address of the content you want copied.

So for example if you were to enter the address http://www.esrun.co.uk as the address you wanted to be duplicated then the software would output a list like the following:

http://fatmonkey.ch/index.php?q=SFR0UDovL1dXdy5lc1JVbi5jby5VSw
http://hidewebsites.com/index.php?q=aFRUcDovL1d3dy5Fc3J1bi5DTy5Vaw
http://compensates.info/index.php?q=SFR0cDovL1d3Vy5lc3J1Ti5DTy51Sw
http://unblocking.cn/index.php?q=aHR0UDovL1d3dy5FU1J1bi5DTy5VSw

There are actually other benefits of using this software. For example if you were spamming a social network and was fed up of having your spam detected based on the same constant URL then you could simply generate a list of web proxy urls to use instead.

Check out the Proxy url creator now :)

Recommend: These icons link to social bookmarking sites where readers can share and discover new web pages.
  • Digg
  • del.icio.us
  • Slashdot

ukskydiving.com moan

February 21, 2008 on 2:31 pm | In General | 5 Comments

So 2 days ago I book a sky dive with ukskydiving.com who are “North london parachute Centre”.. North london my arse, it’s in March, Cambridge and cost me a ridiculous 4 hours travelling (1 hour into London then 3 onwards) and the ticket from London to March station was £77! What a joke, they want people to use public transport but its dog slow and costs a fortune. Fuck the environment, I can’t afford to care for the environment with prices like these.

The guys at the airfield said the weather has been terrible and unsuitable for days so I’m not sure why ukskydiving.com let me book it just 2 days ago knowing full well it was absolutely more than likely I’d be wasting my time and money. What a load of bollocks.

Recommend: These icons link to social bookmarking sites where readers can share and discover new web pages.
  • Digg
  • del.icio.us
  • Slashdot

Scraping adlabs search funnels

February 20, 2008 on 6:57 pm | In Blackhat SEO | 2 Comments

Just uploaded a new script for scraping keywords from AdLabs search funnels, go ahead and check it out :)

adlabs keyword scraper

Download: AdLabs keyword scraper

Recommend: These icons link to social bookmarking sites where readers can share and discover new web pages.
  • Digg
  • del.icio.us
  • Slashdot

Keniki

February 17, 2008 on 6:52 pm | In Blackhat SEO | 226 Comments

Well Keniki, you were successful! You finally managed to get a whole post dedicated to just you on my blog :D

Keniki (Greg) popped up quite some time ago, I first encountered him on Matt Cutts blog and at first he seemed like your average do gooder anti-spammer, fair enough me thinks. However unlike your average spam hunter who tries to gather some proof and actual facts about spammers, this guy simply throws wild accusations around like seo is some kind of dangerous cult and hopes that he might catch something slightly along the line of truth.

According to Greg, I own several large web hosting companies, I have multiple online (well known) personalities and I’m an all round bad guy! Or to put it in Kenikis words, I’m a prick ;)

Keniki has had a go at just about everything and everyone and has had run ins with the likes of cutts, dave naylor and seoidiot. For just a sample of this wierdos ramblings check out this Keniki post.

I have spoken to Greg numerous times on the telephone he seemed drowsy and was slurring his words. Does anyone know if he has a drinking problem? Or is he mentally ill? I couldn’t determine for sure He often posts random abusive comments at throughout the day and night and appears to set alarms for odd hours to get up purely to post a comment and then go back to sleep, that’s the way I understood it after speaking to him anyway so yeah to be fair the guy does have problems in his head. Each time I speak to Greg he says he Is going to back off and stop making up random things but each time he pops back up with more comments.

So Greg, I called you today after your most recent tirade and it seems you don’t want to speak to me anymore… you were quite obviously available and then I’m patient enough to wait and you simply hang up the call on me! Then when I call back you refuse to answer.. poor show buddy. I saw you were trying to get Seoidiot into a boxing ring, lmao! SES London is on this week, why don’t you come up and say hello to everyone? Maybe you’ll like us ;) OR Maybe you could just do like you originally said and just move on and stop trying to harass people? No one is interested in you or out to get you (regardless of how paranoid you get), just leave people alone and everyones happy.

Recommend: These icons link to social bookmarking sites where readers can share and discover new web pages.
  • Digg
  • del.icio.us
  • Slashdot

£1 UK domains

February 16, 2008 on 7:24 pm | In Blackhat SEO | 1 Comment

Just a quick post this one. Signup as a new customer at uk2.net and you can use the voucher code CJ20080331 to get a UK domain for just £1.15! Just process each domain you want as a new order and use the coupon code each time :)

Recommend: These icons link to social bookmarking sites where readers can share and discover new web pages.
  • Digg
  • del.icio.us
  • Slashdot

Create unlimited gmail accounts

February 14, 2008 on 11:13 pm | In Blackhat SEO | 3 Comments

Well last time I wrote about a simple Gmail account creator I made and I talked about how I would be improving it and releasing updates. Unfortunately I don’t think I will be simply because I can’t be bothered. I didn’t use it myself and only made it as a little something to give out since a lot of people were talking about wanting one.

Anyway for those who encountered the limit of how many accounts they could create per IP address there is a way around it. When you create too many accounts from one IP address then google start giving you a captcha image which says “Sorry, we are unable to handle your request at this time. Please try again later.”

Make the captcha request from one IP address but then submit the signup information from a different IP. Google will only block the IP address that is used to submit the data and the IP address is only blocked from making a request to the captcha, not from submitting signup data. Therefore with just two IP addresses you can make unlimited gmail accounts. There is currently no cross checking to make sure the account used to request the captcha is the same as the account submitting the signup information.

So mod the script and go make your unlimited accounts :)

I couldn’t remember where I got this tip from because it was quite a long time ago but have since had a good smack round the back of the head since I wasn’t meant to out it.  Props goes out to Seocracy.

Recommend: These icons link to social bookmarking sites where readers can share and discover new web pages.
  • Digg
  • del.icio.us
  • Slashdot
Next Page »