Y T Nuke  
Results 1 to 39 of 39
Here is a simple way to hide your real traffic source and show your CPA ...
  1. #1
    metalcolin is offline Newbies
    Join Date
    Sep 2008
    Location
    US
    Posts
    30
    Reputation
    13
    Thanks
    20
    Thanked 64 Times in 9 Posts

    Default How To Easily Fake The Referrer When Using Double Meta Refresh

    Here is a simple way to hide your real traffic source and show your CPA a fake referrer. I am going to assume you already know how to implement double meta refresh to blank your traffic source, if not please see http://www.blackhatworld.com/blackha...redirects.html

    Ok you know how to make your referrer blank which is great but some (or most) CPA's want to know how you get your traffic, if you don't your aff manager might give you some shit if you bring in serious money. Plus I hate to have to SLOW DOWN on how much I milk an offer just bc I get traffic from a source they don't like.

    A very simple way of faking your referrer is to set up a selective page redirect using simple javascript on a genuine landing page. Here is the code:

    HTML Code:
    <script language=Javascript>
    var ref;
    ref=document.referrer;
    
    if (ref.replace("YOUR_REFERRER.com","") != ref)
    {
    window.location.href='http://www.Genuinely .com';
    }
    //=====Code By: metalcolin=====
    if (ref.replace("YOUR_REFERRER_2.com","") != ref)
    {
    window.location.href='http://YOUR_CPA_OFFER.com';
    }
    //===== metalcolin ======
    if (ref.replace("http://YOUR_REFERRER_3.com","") != ref)
    {
    window.location.href='http://www.YOUR_CPA_OFFER.com';
    }
    //=====
    </script>
    This is how you do it, you set up your basic double meta to point to your landing page and configure your javascript to redirect the traffic coming from your 2nd redirects ONLY (important). For example, in the 'YOUR_REFERRER.com' you put in the FULL url of your 2nd meta refresh which will only redirect the traffic that comes from that source and it will leave the referrer as your landing page for your CPA network to see (which is what you want).

    When someone from the CPA Network comes to check out your landing page they will NOT be redirected and everything looks perfectly legit

    Some reputation points or thanks would be appreciated....

    BTW, what are the rep points good for anyway? .. Serious question, im new here so i don't know.

  2. The Following 24 Users Say Thank You to metalcolin For This Useful Post:

    bhstudent (12-26-2011), bocahtua (05-17-2009), captainbrian (10-17-2008), capvirgo (05-27-2009), crazyflx (12-17-2009), EzBreezy (12-17-2009), financhill (12-24-2009), gfawkes (12-21-2009), gileakh (01-06-2009), guguchiao (01-13-2009), Insighttrader (12-24-2009), jp_30 (12-31-2011), lilman (10-21-2008), lolhuh (02-13-2012), MrNoob (10-04-2008), Nookie Monster (12-31-2011), plouyd (12-15-2008), ppcgod (01-03-2010), sendlerad (10-04-2008), teenmoney (10-05-2008), viptravis (10-04-2008), Wizzoid (12-23-2008), z3zim4 (05-12-2010)

  3. #2
    mikie46 is offline BANNED
    Join Date
    Aug 2008
    Posts
    909
    Reputation
    98
    Thanks
    185
    Thanked 750 Times in 214 Posts

    Default Re: How To Easily Fake The Referrer When Using Double Meta Refresh

    Hi, when you say landing page do you mean from Google PPC -> landing page? Can you use it for that?

  4. #3
    metalcolin is offline Newbies
    Join Date
    Sep 2008
    Location
    US
    Posts
    30
    Reputation
    13
    Thanks
    20
    Thanked 64 Times in 9 Posts

    Default Re: How To Easily Fake The Referrer When Using Double Meta Refresh

    I just realized I forgot something. You will need to have double meta refresh and two redirects. Sounds like a Lot but it will do the deal 100%.

    HTML Code:
    <script language=Javascript>
    var ref;
    ref=document.referrer;
    
    if (ref.replace("","") != ref)
    {
    window.location.href='http://YOUR_LANDING_PAGE.com';
    }
    //=====Code By: metalcolin=====
    if (ref.replace("","") != ref)
    {
    window.location.href='';
    }
    //===== metalcolin ======
    if (ref.replace("","") != ref)
    {
    window.location.href='';
    }
    //=====
    </script>
    Basically you would put this one in your 3rd page pointing to the selective redirect (landing page) since the double meta wont leave a referrer. I'll post a more detailed outline to drive the point home. Let me know if this helps.

  5. The Following 4 Users Say Thank You to metalcolin For This Useful Post:

    blackmagicmaster (12-11-2008), mystery (10-09-2008), sendlerad (10-04-2008), Surgeon (12-28-2008)

  6. #4
    metalcolin is offline Newbies
    Join Date
    Sep 2008
    Location
    US
    Posts
    30
    Reputation
    13
    Thanks
    20
    Thanked 64 Times in 9 Posts

    Default Re: How To Easily Fake The Referrer When Using Double Meta Refresh

    Quote Originally Posted by mikie46 View Post
    Hi, when you say landing page do you mean from Google PPC -> landing page? Can you use it for that?
    Yes exactly. Something you would make for a PPC or even a real ppc page that you already use for that iffer, if you do.

  7. #5
    natjay is offline Newbies
    Join Date
    Jul 2008
    Posts
    4
    Reputation
    10
    Thanks
    2
    Thanked 2 Times in 2 Posts

    Default Re: How To Easily Fake The Referrer When Using Double Meta Refresh

    This reminds me of something I saw over at the Slightly Shady SEO blog.

  8. #6
    metalcolin is offline Newbies
    Join Date
    Sep 2008
    Location
    US
    Posts
    30
    Reputation
    13
    Thanks
    20
    Thanked 64 Times in 9 Posts

    Default Re: How To Easily Fake The Referrer When Using Double Meta Refresh

    Alright, here is the fixed version.


    You will have 4 PAGES all together which will perform redirects. Pages 1 and 2 will do the initial redirecting to clear the referrer. Page 3 is an intermediary to create a referrer from one of your whitehat domains and finally Page 4 will pass the referrer on to your CPA Network AND it will act as a front for how legitimate your practices are in the case someone visits it without going throug the redirects.

    This is how it all will look,

    PAGE 1:

    Code:
    <?php
    
            echo "<meta http-equiv=\"refresh\" content=\"0;url=http://www.YOURDOMAIN.com/PAGE2.php\">";
    
    ?>
    PAGE 2:

    Code:
    <?php
    
        $referer = $_SERVER['HTTP_REFERER'];
    
        if($referer == "")
    
        {
    
            echo "<meta http-equiv=\"refresh\" content=\"0;url=http://www.YOURDOMAIN.com/PAGE3.htm\">";    
    
        }
    
    ?>
    PAGE 3:

    Code:
    <script type="text/javascript">
    <!--
    window.location = "http://www.YOURDOMAIN.com/PAGE4.htm"
    //-->
    </script>
    PAGE 4:

    Code:
    <script language=Javascript>
    var ref;
    ref=document.referrer;
    
    if (ref.replace("lokuloku.org/re1.htm","") != ref)
    {
    window.location.href='http://www.google.com';
    }
    //=====Code By: metalcolin=====
    if (ref.replace("YOUR_REFERRER_2.com","") != ref)
    {
    window.location.href='http://YOUR_CPA_OFFER.com';
    }
    //===== metalcolin ======
    if (ref.replace("http://YOUR_REFERRER_3.com","") != ref)
    {
    window.location.href='http://www.YOUR_CPA_OFFER.com';
    }
    //=====
    </script>
    You can see the working version here: lokulo*ku*0rg/URL1.php

    The final landing page is lokulo*ku*0rg/re2.htm if you go to this url without going to URL1.php you will see the landing page.

    Sorry for the confusion, again could someone tell me what the reputation points count towards?

  9. The Following 11 Users Say Thank You to metalcolin For This Useful Post:

    almir (10-04-2008), Bastian (10-04-2008), charles (11-06-2008), Chris Devon (10-04-2008), Gambit (02-19-2012), Kobain (10-07-2008), pewep (08-03-2009), sendlerad (10-04-2008), uzzi69 (03-01-2009), viptravis (10-04-2008), z3zim4 (05-12-2010)

  10. #7
    almir's Avatar
    almir is offline Power Member
    Join Date
    Jul 2008
    Posts
    673
    Reputation
    16
    Thanks
    330
    Thanked 178 Times in 110 Posts

    Default Re: How To Easily Fake The Referrer When Using Double Meta Refresh

    If this works, you could make thousands with it. People are selling all kinds of BS, and if it works, some "guru" will implement this in his "extremelly power" script with few BS add ons, and sell it here for 500-1000 $, and act as a king of blackhat coding later

  11. #8
    metalcolin is offline Newbies
    Join Date
    Sep 2008
    Location
    US
    Posts
    30
    Reputation
    13
    Thanks
    20
    Thanked 64 Times in 9 Posts

    Default Re: How To Easily Fake The Referrer When Using Double Meta Refresh

    Quote Originally Posted by almir View Post
    If this works, you could make thousands with it. People are selling all kinds of BS, and if it works, some "guru" will implement this in his "extremelly power" script with few BS add ons, and sell it here for 500-1000 $, and act as a king of blackhat coding later
    Yea that's always been my problem. I never monetize on anything, I guess i don't much see the great value in it since i've been using it for a while(not so much lately though). Wanna sell it for me? We'll split it 50/50 lol

  12. #9
    almir's Avatar
    almir is offline Power Member
    Join Date
    Jul 2008
    Posts
    673
    Reputation
    16
    Thanks
    330
    Thanked 178 Times in 110 Posts

    Default Re: How To Easily Fake The Referrer When Using Double Meta Refresh

    its easy, you just have to say at least twice a day that you are the best, the most handsome, and have more brilliant brain on the earth. If you add a talk about someone else as an amateur, thats better.

    Than sales will come, and people will love you because they have sent few hundreds to your way. Remember, that's a privilege They will run behind you, from thread to thread expressing their loyalty, and confirming how big and unique you are

    On that point you just need a crown
    Last edited by almir; 10-04-2008 at 05:07 AM.

  13. The Following User Says Thank You to almir For This Useful Post:

    wagooza (12-26-2009)

  14. #10
    metalcolin is offline Newbies
    Join Date
    Sep 2008
    Location
    US
    Posts
    30
    Reputation
    13
    Thanks
    20
    Thanked 64 Times in 9 Posts

    Default Re: How To Easily Fake The Referrer When Using Double Meta Refresh

    Quote Originally Posted by Genjutsu View Post
    you do realize that this can all be accomplished with 2 redirects? I posted the code quite some time ago.
    Erase the referrer and create a new one? Can you point me to it? That would save me loads of time.

  15. #11
    metalcolin is offline Newbies
    Join Date
    Sep 2008
    Location
    US
    Posts
    30
    Reputation
    13
    Thanks
    20
    Thanked 64 Times in 9 Posts

    Default Re: How To Easily Fake The Referrer When Using Double Meta Refresh

    Nvermind, I missed the link in your post, disregard the last post.

    you do realize that this can all be accomplished with 2 redirects? I posted the code quite some time ago.

  16. #12
    charles is offline $$$
    Join Date
    Aug 2008
    Posts
    132
    Reputation
    10
    Thanks
    97
    Thanked 151 Times in 34 Posts

    Default Re: How To Easily Fake The Referrer When Using Double Meta Refresh

    Also, what if the user has decided to disable Javascript?

  17. #13
    metalcolin is offline Newbies
    Join Date
    Sep 2008
    Location
    US
    Posts
    30
    Reputation
    13
    Thanks
    20
    Thanked 64 Times in 9 Posts

    Default Re: How To Easily Fake The Referrer When Using Double Meta Refresh

    Quote Originally Posted by Genjutsu View Post
    you do realize that this can all be accomplished with 2 redirects? I posted the code quite some time ago.

    http://www.blackhatworld.com/blackha...tml#post236640
    I tried using these two php redirects and they redirect fine except the final site gives me a 405 method post error. I tried pointing to my domains and even to ggoggle, same thing. I'm not sure if I'm missing something...

  18. #14
    metalcolin is offline Newbies
    Join Date
    Sep 2008
    Location
    US
    Posts
    30
    Reputation
    13
    Thanks
    20
    Thanked 64 Times in 9 Posts

    Default Re: How To Easily Fake The Referrer When Using Double Meta Refresh

    FXdomains, but the error it comes from the final page (my cpa offer) which isn't hosted by me. I also tried pointing it to ggoogle.

    I'll try it with another host if the issue is with my host. Either way, don't worry about it I'll try to figure it out, I'm assuming if you got it to work then it just might be the host, might even just need to chmod or... something.

  19. #15
    metalcolin is offline Newbies
    Join Date
    Sep 2008
    Location
    US
    Posts
    30
    Reputation
    13
    Thanks
    20
    Thanked 64 Times in 9 Posts

    Default Re: How To Easily Fake The Referrer When Using Double Meta Refresh

    Well that's what I thought too, but for some reason every once in a while it happens to leak the referrer (don't ask me how or why). I mean you could technically use just the two or even to play it semi-safe 3, but i dont want to post it and then get people banned from their networks. This way I know the ref won't get passed, but anyone is free to modify as they wish.

  20. #16
    Join Date
    May 2008
    Location
    In a bright place-----------------------------------------------------------------------------------
    Posts
    285
    Reputation
    293
    Thanks
    234
    Thanked 846 Times in 122 Posts

    Default Re: How To Easily Fake The Referrer When Using Double Meta Refresh

    Hi,

    This is just what I was wanting to learn how to do...BUT:

    I used the lokulolu links to test the demo as it was set up on your domain.

    And I found:

    Firefox 2.0.0.17 - click on ur1.php - end up on g00gle.c0m - check LIve Http headers - G00gle.c0m sees re2.htm as referrer - Happy!

    Opera 9.52 - click on url1.php ---> get redirected to url2.php - does not move beyond that - and, of course, url2.php is blank, so the person using Opera never ends up on afflink

    Chrome - exactly the same as Opera

    IE 7.0 - click on url1.php --> end up on re2.htm (landing page), so, once again, user never reaches the afflink (update: had IE 7.0 set to allow Sun Java - changed it to also allow Java VM - still reaches re2.htm)

    Not too sure if my testing is wonky - but would be particularly worried about IE7 users not reaching my afflink - Opera and Chrome don't yet really seem to have a large enough percentage of internet users for it to bother me - but would be fantastic to have a solution for ALL browsers.

    Any thoughts? Some error in the code that could maybe be fixed? Or could the error be on the demo pages on lokulolu?

    Thanks in advance anyway for what looks like a good method!

  21. #17
    Morpheus's Avatar
    Morpheus is offline Newbie
    Join Date
    Jul 2008
    Posts
    37
    Reputation
    10
    Thanks
    28
    Thanked 10 Times in 8 Posts

    Default Re: How To Easily Fake The Referrer When Using Double Meta Refresh

    JohnsonDaniel,

    I haven't tested metalcolin's method (what you're referring to). I can say that Genjutsu's method (he linked to it earlier in this thread) seems to work perfectly for me. I tested it in IE6, IE7, FireFox 3.0.3, and Safari 3.1 (those are all I have installed). I would recommend you try Genjutsu's method for doing this.

  22. #18
    Carnagge's Avatar
    Carnagge is offline Registered Member
    Join Date
    Dec 2007
    Posts
    82
    Reputation
    10
    Thanks
    51
    Thanked 8 Times in 8 Posts

    Default Re: How To Easily Fake The Referrer When Using Double Meta Refresh

    I will give it a try cause it looks really interesting. Thanks in advance

  23. #19
    captainbrian's Avatar
    captainbrian is offline Registered Member
    Join Date
    Sep 2008
    Location
    New Jersey, U.S.
    Posts
    74
    Reputation
    23
    Thanks
    18
    Thanked 21 Times in 7 Posts

    Default Re: How To Easily Fake The Referrer When Using Double Meta Refresh

    this is nice, can i have multiple sites get refreshed to having no source? I want to do this with multiple sites.. is there any way to make this easier?

  24. #20
    donnieo is offline Newbie
    Join Date
    Dec 2006
    Posts
    43
    Reputation
    10
    Thanks
    0
    Thanked 6 Times in 4 Posts

    Default Re: How To Easily Fake The Referrer When Using Double Meta Refresh

    You can also use sessions to pass yourself hidden variables and do referrer checking with php so the code is not so visible (like with javascript).

  25. #21
    cashcow's Avatar
    cashcow is offline Junior Member
    Join Date
    Sep 2008
    Posts
    158
    Reputation
    10
    Thanks
    12
    Thanked 21 Times in 9 Posts

    Default Re: How To Easily Fake The Referrer When Using Double Meta Refresh

    Quote Originally Posted by Morpheus View Post
    JohnsonDaniel,

    I haven't tested metalcolin's method (what you're referring to). I can say that Genjutsu's method (he linked to it earlier in this thread) seems to work perfectly for me. I tested it in IE6, IE7, FireFox 3.0.3, and Safari 3.1 (those are all I have installed). I would recommend you try Genjutsu's method for doing this.
    I second that. Genjutsu's method is totally brilliant!

  26. #22
    krush is offline BANNED
    Join Date
    Mar 2007
    Posts
    9
    Reputation
    10
    Thanks
    1
    Thanked 2 Times in 1 Post

    Default Re: How To Easily Fake The Referrer When Using Double Meta Refresh

    So this one isn't perfect then?
    I'll pay someone to set this up for me.

  27. #23
    Join Date
    Dec 2008
    Location
    www.blackhatworld.com
    Age
    27
    Posts
    589
    Reputation
    20
    Thanks
    223
    Thanked 929 Times in 104 Posts

    Default Re: How To Easily Fake The Referrer When Using Double Meta Refresh

    clocking is the best way to create traffic and huge money in very quick time pure black hatter only know all the advance tactics to use it carefully and very effectively cheers

  28. #24
    longor is offline Newbies
    Join Date
    Nov 2008
    Posts
    1
    Reputation
    10
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: How To Easily Fake The Referrer When Using Double Meta Refresh

    It seems a very good technique, but can I used this on blogspot ?? Thanks in advance

  29. #25
    alcapon3's Avatar
    alcapon3 is offline Junior Member
    Join Date
    Dec 2008
    Posts
    180
    Reputation
    28
    Thanks
    85
    Thanked 45 Times in 33 Posts

    Default Re: How To Easily Fake The Referrer When Using Double Meta Refresh

    I tried this on wordpress, but half my blog loads before it is redirected to the affiliate link. In IE the last redirect doesn't work. My 3rd file is linked to the affiliate for the time being.

  30. #26
    chobo's Avatar
    chobo is offline Regular Member
    Join Date
    Dec 2008
    Age
    22
    Posts
    230
    Reputation
    15
    Thanks
    56
    Thanked 25 Times in 20 Posts

    Default Re: How To Easily Fake The Referrer When Using Double Meta Refresh

    Was intersted in faking my referrers, which method is the correct way to do so?

    genjustu's or the original poster?

  31. #27
    Syowred is offline BANNED
    Join Date
    Jun 2008
    Posts
    53
    Reputation
    10
    Thanks
    21
    Thanked 15 Times in 6 Posts

    Default Re: How To Easily Fake The Referrer When Using Double Meta Refresh

    Quote Originally Posted by chobo View Post
    Was intersted in faking my referrers, which method is the correct way to do so?

    genjustu's or the original poster?
    Go with either really, but Genjustu's code saves them from sitting through 2 more redirects. Less load time = fewer clicks leaving from boredom.

  32. #28
    marco2379's Avatar
    marco2379 is offline Junior Member
    Join Date
    Feb 2008
    Posts
    129
    Reputation
    12
    Thanks
    50
    Thanked 93 Times in 27 Posts

    Default Re: How To Easily Fake The Referrer When Using Double Meta Refresh

    Am I missing something here, I have been using Gen's method with the 2 redirects, and I've even tried forcing a form post with Body onLoad, but all they seem to do is blank out the referrer (which is good) even better would be to be able to have the referrer as my whitehat site. Is there any method that actually replaces the referrer instead of just erasing it? I'm trying to get this done without javascript because that is too easy for any AM to turn off to see whats going on.

  33. #29
    KenWingJitsu is offline Regular Member
    Join Date
    Apr 2008
    Posts
    268
    Reputation
    10
    Thanks
    91
    Thanked 47 Times in 30 Posts

    Default Re: How To Easily Fake The Referrer When Using Double Meta Refresh

    Interesting and fascinating thread

  34. #30
    CapitalVentures is offline Newbies
    Join Date
    Dec 2008
    Posts
    8
    Reputation
    10
    Thanks
    15
    Thanked 9 Times in 2 Posts

    Default Re: How To Easily Fake The Referrer When Using Double Meta Refresh

    smart bh's gettin paid on this here

  35. #31
    ultimatium1 is offline Junior Member
    Join Date
    Oct 2008
    Posts
    107
    Reputation
    10
    Thanks
    5
    Thanked 18 Times in 7 Posts

    Default Re: How To Easily Fake The Referrer When Using Double Meta Refresh

    Quote Originally Posted by donnieo View Post
    You can also use sessions to pass yourself hidden variables and do referrer checking with php so the code is not so visible (like with javascript).
    Why would you need sessions for such a task?

    All you need is $_SERVER['HTTP_REFERER'];

  36. #32
    borislw's Avatar
    borislw is offline Newbies
    Join Date
    May 2009
    Posts
    21
    Reputation
    10
    Thanks
    4
    Thanked 0 Times in 0 Posts

    Default Re: How To Easily Fake The Referrer When Using Double Meta Refresh

    Hi, thks, your thread had helped me alot

  37. #33
    samplestate is offline BANNED
    Join Date
    Oct 2009
    Posts
    16
    Reputation
    20
    Thanks
    1
    Thanked 25 Times in 6 Posts

    Default Re: How To Easily Fake The Referrer When Using Double Meta Refresh

    Don;t know if it's better but I found this PHP version on a forum: http://cashcowhq.com/showthread.php/...aces?p=6#post6

  38. #34
    Khaos is offline Newbies
    Join Date
    Dec 2009
    Posts
    1
    Reputation
    10
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: How To Easily Fake The Referrer When Using Double Meta Refresh

    I've used proxy sites to trick some sites, not sure if it works for all site though.

  39. #35
    ejrussell is offline Junior Member
    Join Date
    May 2010
    Posts
    154
    Reputation
    11
    Thanks
    28
    Thanked 7 Times in 7 Posts

    Default Re: How To Easily Fake The Referrer When Using Double Meta Refresh

    This is an excellent tutorial on referrers. Thank you.

  40. #36
    Korsar is offline Newbies
    Join Date
    Dec 2011
    Posts
    15
    Reputation
    10
    Thanks
    0
    Thanked 2 Times in 1 Post

    Default Re: How To Easily Fake The Referrer When Using Double Meta Refresh

    smart

  41. #37
    alexboxx is offline Newbies
    Join Date
    Dec 2011
    Posts
    15
    Reputation
    10
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: How To Easily Fake The Referrer When Using Double Meta Refresh

    Thanks

  42. #38
    socks5proxies is offline Regular Member
    Join Date
    Dec 2011
    Posts
    270
    Reputation
    25
    Thanks
    6
    Thanked 393 Times in 164 Posts

    Default Re: How To Easily Fake The Referrer When Using Double Meta Refresh

    it's useful thank you

  43. #39
    Rushdie's Avatar
    Rushdie is offline SEO Expert - VlP
    Join Date
    Feb 2009
    Location
    Poland
    Posts
    1,086
    Reputation
    486
    Thanks
    479
    Thanked 1,348 Times in 184 Posts

    Default Re: How To Easily Fake The Referrer When Using Double Meta Refresh

    on what browsers it doesnt work at the moment guys?

Natural Slow Link Building


SEO Blasts - High quality link building service

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
  SEnukeX SEO Software
Proudly Powered by Hostwinds.com Web Hosting Click Here For Exclusive BHW Discounts!

Cheap Web Hosting


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76