Plenty of people use DMR (Double Meta Refresh) in a
So what's the problem... ?
It's SLOW... it adds a redirect and your ROI takes a hit as the offerpage takes longer to load.
Is there a way to cloak the referer without a DMR?
Yes 
Take a look at the W3.org specification here
(or don't because it's boring, just read below)
If you add rel-noreferrer to your outgoing
(remember to change Redirect mode in Voluum to 302)
I don't believe you... prove it...
Ok copy the code below into demo.html
<!DOCTYPE html> <html> <head> <title>rel=noreferrer Demo</title> </head> <body> <h1><a href='offerpage.html'>Standard link</a></h1> <br> <h1><a href='offerpage.html' rel='noreferrer'>rel=noreferrer link</a></h1> </body>
<!DOCTYPE html> <html> <head> <title>rel=noreferrer Demo: Display Referer</title> </head> <body> <h1> Your referrer is *drum roll please*...<br><br> <script>document.write(document.referrer)</script><br> ^ is it blank :) ?<br> <h3><a href='offerpage.html'>click here to test it actually shows referrer by loading offerpage.html from offerpage.html</a></h3> </h1> </body>
(I use this on 100% of my campaigns)
this might not work in older versions of browsers and should be double checked but thx for the idea
i also recommend the https blanker

Yep not for older browsers, but helpful for newer ones.
Built the meta tag version (https://w3c.github.io/webappsec-refe...-delivery-meta) of this into Prosper202 Pro as an addition to the system we had before a few months ago.
It's in the personal settings section if you want to turn it on.
Wow buddy thanks for sharing this! Will help out a lot of people for sure.
Amy
This method is working. Tested it now with
Checked it with an old Safari browser and is not working. However with new browsers this method works 100%
Thank you again Mykeyfocus
Could add a JS check to replace link to DMR for older browsers so this method would always work
This is awesome. Is there any way to code it into the back button script? It doesn't seem to work for me
Great tip! Can't believe I didn't know about that.
A smart way to use this would be with a browser-based redirect in your tracker. Detect modern browsers and send them to the rel=noreferrer page for much quicker load times and hence higher ROIs.
Only minor possible concern: if someone was to spoof their useragent, they could persuade your funnel to send them through the rel=noreferrer route with a noncompliant browser. However, if they're doing that they're already going through your funnel anyway and hence can see everything as they go...
Could do the agent checking on the PHP side to leave less breadcrumbs (so they wouldn't know to spoof the UA)
Give me a few days, I'll code some funky JavaScript to test the rel noreferrer and if its not supported then use alternative link
will keep me busy at the airport in a few days 
Probably only good for new mobile phones, especially Iphones. HTML5 is not yet supported on many browsers on desktop... You'll probably be missing out on alot of old mobile user agents and tablets.
But you can always just setup that one as a "primary" and then a good ol' javascript click and/or meta refresh as fallbacks...
Thanks for taking the time to write this out for the community. I found out about this about a year ago when I was doing mobile. It blanked out about 80% of the traffic I tested it on. At the time, I had the idea of making a redirect like this:
Lander w/ rel=no referrer ---> PHP Script that checks for referrer---> Either 1)Offer or 2) HTTPS before Offer depending on if it had a referrer or not.
I think a script like this would have minimal impact on speed but if someone knows a better way, I'd be interested in hearing that too.
Guys,
i was optimizing an sweep offer named "win iphone 6 US" and my AM told me that use DMR to hide your lander because if publisher will caught your LP then they'll ban you and you can't run their offer. so i used
Also my AM is telling me that nowdays almost all offer need to cloak or hide LP otherwise if publisher caught your LP and they'll not pay.
Here the problem is for newbie like me don't know much about cloaking but still using
Is it happening to all of you guys? if yes then how you cloak your LP successfully? because if anyone (offer publisher or AM) want to find your LP then dosen't matter how much you hide they'll know and will not pay you if they don't want to pay and give you a shitty excuse your LP get caught 
I don't see any solution of this because as my AM said me you need to cloak almost any offer you run it means i can't run any offer? even i can't do affiliate anymore and should be quit. i don't have unlimited budget to play in blind and in the end loose all money.
help me friends what should i do now?
@shakedown - that's a genius solution. Like it.
You'll still have an extra loading step so it won't be quite as fast as going straight to the offer, but it should still be pretty fast.
@acjhonrosya - If you were using DMR and you'd set it up correctly, the publisher found your LP through other means. They can still use spy tools, for example!
To be honest, that entire situation sounds pretty fishy to me, and your AM's claim that you always need to hide your angles from publishers is DEFINITELY not true. Can you start a new thread on this? That'll help everyone give you more detailed information without derailing this current thread.
yes i'm sorry for interrupting here.
Already opened saperate theread here http://stmforum.com/forum/showthread...om-Aff-Network
Thanks.
Ok, as promised here's a proof of concept code which checks to see if the rel=noreferrer blanks the referrer or not and then redirects accordingly to
From some searching and some tinkering i've got it to work by...
<!DOCTYPE html> <head> <title>rel=noreferrer Demo with checking</title> </head> <body> <!-- Invisible iFrame which is used to check referrer from CTA link --> <iframe id='ifr' name='f' src='about:blank' style='height:1px;width:1px;display:none'></iframe> <!-- blank.html is just an empty barebones html file --> <!-- when CTA BUTTON is clicked blank.html is opened in iFrame --> <a href='blank.html' rel='noreferrer' target='f'>CTA BUTTON</a> <!-- Remove *** rel='noreferrer' *** above to simulate lack of browser support--> <script> // Execute this when iframe has loaded blank.html after clicking CTA button document.getElementById('ifr').onload = function(){ // If the referrer is longer than 0 in length, ie: not blank. (Faster than checking === '') if (document.getElementById('ifr').contentDocument.referrer.length > 0){ // Referrer NOT blank => DMR Voluum Link // Set up a new direct linked campaign in Voluum with DMR and use the campaign link below window.location = 'http://VOLUUMLINK/DMR'; }else{ // Referrer IS blank => Use Voluum click URL window.location = 'http://VOLUUMLINK/CLICK'; } } </script> </body> </html>
<head>
<script> function load() {
var sendIt = '<form id=yourForm method=POST action=\'www.wherever'>' + '<inputs ...'</form>';
top.frames[0].document.body.innerHTML=sendIt;
top.frames[0].document.getElementById('dynForm').submit();}
</script>
</head>
<body onload="load()">
< iframe src="about:blank" id="noreferer">< /iframe>
</body>
May be faster overall...probably not, who knows. It definitely solves the about:blank vs blank.html issue though (blank will work with that).
The blank version wipes the ref clean in all browsers, so there'd be no reason to fork the route after using it.
Also, this is awesome dude
5 bucks says jennatalia knew about this three years ago...
I've come across like 15 holy sh-t this is awesome's recently of which there was like 1 he didn't know about in like 2002
This is great. DMR literally cuts my revenue in half on pops.
You've also got the "meta" no referrer tag to play with...
https://w3c.github.io/webappsec-referrer-policy/
Look at 4.2
So I've wondered if this will work with redirect code? Here's some sample code from a whatsapp lander (its malaysian)
So basically I have to add rel='noreferrer' after the
@mykeyfocus thanks for the solution!!
After trying to implement mykeyfocus’ iframe-solution (from the comments) - and out how to actually test that it blanked the ref out correctly - it looks like I finally solved it (thanks for the suggestions @vortex!).
My problem was that the ‘referrer domain’ in
It’s all blanked in voluum now but somehow it still shows up on that offerpage (when the rel=noreferrer IS activated - not in the DMR-camp) (if I run traffic to a camp where the offer is a link to a second camp I can also see the ref in the data of the second camp).
I’m curious how that is possible? Since when I uploaded just the demo.html + offerpage.html it was blanked out all fine. Can voluum somehow do some magic since the test lander was added to the voluum campaign?
Glad you've made a post here to ask! We did make some progress but tech stuff is really not my strong suit.
I'll ping mykeyfocus to see if we can get you a reply soon.
Amy