Home > Technical & Creative Skills > Programming, Servers & Scripts

Can´t figure out this Lander (6)


09-21-2018 11:00 AM #1 eurosen (AMC Alumnus)
Can´t figure out this Lander

I am normally pretty good at figuring out a lander, but I cant crack this one.

Where is the offer url and how is it encrypted?

I must be overlooking something simple somewhere.

https://pastebin.com/3ivCLiuS


09-21-2018 11:11 AM #2 adserk (Member)

<script type="text/javascript">
function exit_a1() {
window.onbeforeunload = null, window.location = "https://" + getURLParameter("td") + "/click"
};
</script>
seems it's retrieving the ctr domain from the query parameter called "td"


09-21-2018 11:49 AM #3 eurosen (AMC Alumnus)

Thanks for your reply.

I have tried replacing the url but that stops the page from working.

The td parameter doesn´t seem to hold anything from what I can see.


09-21-2018 11:54 AM #4 erikgyepes (Moderator)

Looks like they pass the domain parameter as a token to lander. So you can try passing td as a token and your domain in it.


09-21-2018 12:09 PM #5 eurosen (AMC Alumnus)

Quote Originally Posted by erikgyepes View Post
Looks like they pass the domain parameter as a token to lander. So you can try passing td as a token and your domain in it.
Thanks, that did the trick.


09-21-2018 01:02 PM #6 xxf8xx (Member)

This is a common setup with Voluum. It's so you don't have to recode your click through domain into your lander every time your domain gets flagged.


Home > Technical & Creative Skills > Programming, Servers & Scripts