Black Hat Forum
Go Back   Black Hat Forum > Black Hat SEO Forum > Black Hat SEO

Black Hat SEO Black Hat Search Engine Optimization. Discuss ways to improve your sites ways using Black Hat SEO tactics!

Search
 
Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 03-12-2008, 03:58 PM
Junior Member
 
Join Date: Nov 2007
Location: Raleigh, NC
Posts: 165
Thanks: 15
Thanked 33 Times in 11 Posts
Activity: 32%
Longevity: 32%
Today: 1/5
Default How do you hide referrers from your CPA network

I have a site that has the following html code:

<frameset rows="100%,*" border="0">

<frame src="MY AFFILIATE ID" frameborder="0" />
<frame frameborder="0" noresize />

</frameset>

I'm trying to understand whether the CPA network will know where my traffic is coming from. I'm basically loading the CPA networks offer landing page into a frame on my site. Is this the best way to hide referrers?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 03-12-2008, 04:15 PM
Registered Member
 
Join Date: Mar 2008
Posts: 58
Thanks: 0
Thanked 0 Times in 0 Posts
Activity: 0%
Longevity: 23%
Today: 0/5
Default Re: How do you hide referrers from your CPA network

They still see where it comes from.

You can do it this way.

Don't put your affiliate link into the source. Create a php file on your server (get a free one if you need one. Look in my signature if you need some free hosting) and put this code in the index.php file

<?php
$header = "Location: YOUR AFFILIATE LINK\n";
$header = "Referer: \n";
header($header);
?>

I haven't tested it yet but it should work

Last edited by stephan; 03-12-2008 at 04:18 PM..
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 03-12-2008, 04:22 PM
Registered Member
 
Join Date: Mar 2008
Posts: 58
Thanks: 0
Thanked 0 Times in 0 Posts
Activity: 0%
Longevity: 23%
Today: 0/5
Default Re: How do you hide referrers from your CPA network

Just played with the code and it doesn't work. Will keep playing and let you know.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 03-12-2008, 04:52 PM
BANNED
 
Join Date: Feb 2008
Posts: 106
Thanks: 1
Thanked 2 Times in 2 Posts
Activity: 0%
Longevity: 26%
Today: 0/5
Default Re: How do you hide referrers from your CPA network

You could use this meta refresh:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns=" http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Refresh" content="0;URL=http://www.afflink.com">
<title>Title</title>
</head>
<body>
</body>
</html>

That should work, as far as I understand. This was taken from Ruck's blog btw.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 03-12-2008, 05:16 PM
Registered Member
 
Join Date: Mar 2008
Posts: 51
Thanks: 7
Thanked 0 Times in 0 Posts
Activity: 7%
Longevity: 24%
Today: 0/5
Default Re: How do you hide referrers from your CPA network

how about refresh in php?

header( 'refresh: 1; url=http://urlgoeshere' );
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 03-12-2008, 05:29 PM
Newbie
 
Join Date: Feb 2008
Posts: 48
Thanks: 0
Thanked 0 Times in 0 Posts
Activity: 1%
Longevity: 25%
Today: 0/5
Default Re: How do you hide referrers from your CPA network

meta refresh works i was hoping this guys php code would work above (not the refresh one) but it doesnt a php solution would rock my world
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 03-12-2008, 05:48 PM
Registered Member
 
Join Date: Mar 2008
Posts: 51
Thanks: 7
Thanked 0 Times in 0 Posts
Activity: 7%
Longevity: 24%
Today: 0/5
Default Re: How do you hide referrers from your CPA network

what? my method won't work?

originally i used to use:

<?
header("Location:http://www.affiliatelinkgoeshere");
?>

but switched to

<?
header( 'refresh: 1; url=http://www.affiliatelinkgoeshere' );
?>

then looked at the http header plugin from firefox to see and less info was passed with the 2nd method.

hope i'm right. right?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 03-12-2008, 05:54 PM
Pryda's Avatar
Jr. VIP
 
Join Date: Sep 2007
Posts: 165
Thanks: 3
Thanked 12 Times in 5 Posts
Activity: 7%
Longevity: 39%
Today: 1/5
Default Re: How do you hide referrers from your CPA network

Try http://cloakedlink.com
It auto-generates a page with a meta refresh for your link.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 03-12-2008, 07:20 PM
Jr. VIP
 
Join Date: Feb 2008
Posts: 148
Thanks: 27
Thanked 4 Times in 3 Posts
Activity: 30%
Longevity: 26%
Today: 1/5
Default Re: How do you hide referrers from your CPA network

What about an image redirect or php redirect to another php file on your server, and inside the php file it will be...


<?php
header('Location: http://anonym.to/?http://www.youraff...5-54321');
?>

Would that remove the referrer??
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10 (permalink)  
Old 03-12-2008, 08:07 PM
Junior Member
 
Join Date: Nov 2007
Location: Raleigh, NC
Posts: 165
Thanks: 15
Thanked 33 Times in 11 Posts
Activity: 32%
Longevity: 32%
Today: 1/5
Default Re: How do you hide referrers from your CPA network

I just checked out Ruck's blog at

hxxp://cashtactics.net/01/07/sneaky-links-meta-refresh-vs-php-redirect/

It gives me everything i needed to know about hiding the referrer!!

Thanks alot people.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #11 (permalink)  
Old 03-12-2008, 09:06 PM
Jr. VIP
 
Join Date: Feb 2008
Posts: 148
Thanks: 27
Thanked 4 Times in 3 Posts
Activity: 30%
Longevity: 26%
Today: 1/5
Default Re: How do you hide referrers from your CPA network

So will the meta refresh work if you were to use the forum image stuffing technique?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #12 (permalink)  
Old 03-13-2008, 06:51 PM
Junior Member
 
Join Date: Nov 2007
Location: Raleigh, NC
Posts: 165
Thanks: 15
Thanked 33 Times in 11 Posts
Activity: 32%
Longevity: 32%
Today: 1/5
Default Re: How do you hide referrers from your CPA network

Hello all,

I just tested this with a CPA network of mine that actually shows the referrer information in my panel and I found that it no longer shows the referrer information of people coming to my site. So this WORKS!!!!


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns=" http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Refresh" content="0;URL=AFFILIATE URL HERE">
<title>SITE TITLE HERE</title>
</head>
<body>
</body>
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #13 (permalink)  
Old 03-13-2008, 09:23 PM
genomicist's Avatar
Jr. VIP
 
Join Date: Dec 2007
Posts: 42
Thanks: 1
Thanked 3 Times in 1 Post
Activity: 2%
Longevity: 31%
Today: 0/5
Default Re: How do you hide referrers from your CPA network

Quote:
Originally Posted by black_ice007 View Post
Hello all,

I just tested this with a CPA network of mine that actually shows the referrer information in my panel and I found that it no longer shows the referrer information of people coming to my site. So this WORKS!!!!


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns=" http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Refresh" content="0;URL=AFFILIATE URL HERE">
<title>SITE TITLE HERE</title>
</head>
<body>
</body>
Do you mind sharing which CPA network you were able to test this out with? I'm trying to use this code as well, but I don't know how to test to see if it's working.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #14 (permalink)  
Old 03-13-2008, 09:54 PM
Jr. VIP
 
Join Date: Dec 2007
Location: Cali
Posts: 202
Thanks: 14
Thanked 12 Times in 9 Posts
Activity: 30%
Longevity: 32%
Today: 1/5
Default Re: How do you hide referrers from your CPA network

theres a guy who wrote a detailed blog about it.
Code:
slightlyshadyseo.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #15 (permalink)  
Old 03-13-2008, 10:18 PM