📜 ⬆️ ⬇️

How freaks lead to the site of 100% of users for a minimum of deneK.

Once, I helped AvaxHome.ru in the development of the engine, and we had a case: our users, going to the site, redirected to no one knows where ... for a long time ... for a long time they were tormented.

Now I tell you how very simple it is, you can bring many users to the site. ( This is very mean ).
But at the minimum cost, you get maximum users. The coolest cheat, which only can be.

Instruments :
1. Flash
2. Minimum knowledge in Flash
3. 2 $
4. Mail (for registration)
5. Site (which we will promote)

What to do :
1. We go and register in the banner of exchange networks where Flash banners are supported.
2. After registration, install Flash and create a banner for your site (any banner)
3. Now the trick itself:
')
We will use the function in Flash that redirects to the page. We insert it into the banner and it turns out something like:

(this is not a real function - an example. Write yourself)

function RedirectTo (Link)
{
redirect (Link);
}

Thus, any user who will watch this banner will automatically go to your link.

Problem:
Most banners of exchange networks check banners before putting them out => they will notice it.

Decision :
2 Additions to the script

1. Make an if with which we will say that this function will only work starting with a certain number. Approximately the number when this banner is already on the sites, and will be tested.
2. To make it so that NOT everyone goes to the site, but only a certain percentage of users. Then it will take more time to track.

Example:

function RedirectTo (Link)
{
if (todayMonth> 3) // If the month is March + :)
{
redirect2 (Link);
}
elseif (todayDay> 15) // If you are already here => We are still in March. Let this hack start working the day after tomorrow
{
redirect2 (Link); // Making a redirect to a function that excludes 90% of users, and redirect, only the remaining 10
}

}

function redirect2 (Link)
{
// Check for a random number

if (rand (9) == 1) // If a random number == 1, then we redirect. ten%
{
redirect (Link); // Making a real redirect to another page.
}

}

And that ... we have a lot of visits to the site, with minimal cost. (Very mean).

The article is not in order to do this, but most likely to admins to know what to fear!
PS do not lay out in comments ActionScript Sorts - rub!

Source: https://habr.com/ru/post/11828/


All Articles