Cloaking ????

essex14

Junior Member
Joined
May 13, 2008
Messages
102
Reaction score
18
O.k When it comes to cloaking I am a total newbie.... I came across Travis Sago's page and noticed he cloaked some pages http://www.the-psp-pimp.com/pspdownload.html


I just would like to know how to do that but instead with my own target page..
Any suggestions thanks...
 
So How would I go about doing that ...... When you look at its page source it looks quite simple (really isnt)
 
Hey, I really recommend Power Link Generator by Mike Filsaime. It does what you are asking and it also tracks the number of times someone has clicked on the links, etc. Here's the members area so you can download it.

hxxp://powe*rlinkge*nerator.com***/PLG-***members**-area****.htm

(remove the asterisks)

Watch the tutorial video in the members area to see how it works and how to use it.

Hope that helps.
 
You're right, I totally didn't even click his link. I guess I never click on links by habit now.

Xim, the nooB for a day

not quite the answer he was looking for. The page is encrypted with javascript. The javascript looks to me like its decoded into an iframe.
 
There are many types of cloaking. What kind are you interested in?

hidden keyword text?
doorway pages that redirect?
IP delivery that feeds different pages to spiders and humans?
covering affiliate links?
 
IP delivery that feeds different pages to spiders and humans?

You are going to get a LOT of performance from this tactic. Of course the most advanced and updated IP delivery comes at a price...
 
Interested in the covering affiliate links! can u please help me

You can cover an affiliate link by create a file that redirects. I personally prefer PHP redirects because they've been shown to get past Internet Explorer's cookie blocking.

The code for a php redirect is:

Code:
<?php header("Location: PUT-YOUR-URL-HERE"); ?>

All you have to do is plug in your affiliate link and save that one line code as "product.php" and drive traffic to it. It will redirect instantaneously to your affiliate link and will prevent people from seeing initially that it is an affiliate link.

You can also do a frame redirect. These look good, but haven't stood up as well against cookie blocking. Here is the code for a frame redirect:

<html><head>

<title>TITLE YOU WANT TO APPEAR ON PAGE</title>

<script>window.status = ' ';</script></head><frameset rows="100%,*" frameborder="0" border="0">

<frame src="http://www.blackhatworld.com/blackhat-seo/cloaking-content-generators/PUT-YOUR-URL-HERE" marginheight="0" marginwidth="0" scrolling="auto" noresize>
<!-- Note: Make sure to leave quotation marks. -->

</frameset><noframes><p>Sorry, but it appears you are using a Web browser that does not support frames.</p></noframes></html>

Edit that in the title tag and where it shows the url to black hat world, then save it as "product.html" and drive traffic to it and they won't be able to see initially that it's an affiliate link.

Those are the two I prefer. I like them because they look like domain.com/product.php or domain.com/product.html and that's usually good enough for me. There are also Meta redirects and Javascript redirects.
 
Last edited:
Yes, along with a fair amount of danger if you're not smart about it. ;)

Could you recommend a good source on this topic? Maybe we could discuss it in private?
You know Im not completely noob on it, but im about to launch some cloaked sites and don?t want to get banned too quickly :D
 
This is a textbook example of someone going above and beyond in helping someone out.

Thanks Batman.

You can cover an affiliate link by create a file that redirects. I personally prefer PHP redirects because they've been shown to get past Internet Explorer's cookie blocking.

The code for a php redirect is:

Code:
<?php header("Location: PUT-YOUR-URL-HERE"); ?>

All you have to do is plug in your affiliate link and save that one line code as "product.php" and drive traffic to it. It will redirect instantaneously to your affiliate link and will prevent people from seeing initially that it is an affiliate link.

You can also do a frame redirect. These look good, but haven't stood up as well against cookie blocking. Here is the code for a frame redirect:



Edit that in the title tag and where it shows the url to black hat world, then save it as "product.html" and drive traffic to it and they won't be able to see initially that it's an affiliate link.

Those are the two I prefer. I like them because they look like domain.com/product.php or domain.com/product.html and that's usually good enough for me. There are also Meta redirects and Javascript redirects.
 
Back
Top