Alexa Cheat Website operation

Source: Internet
Author: User
Tags dsn

I was fortunate enough to find Alexa's working principle on the Internet, and then produce Meng Nian, make it a disadvantage!

Of
Alexa ranked in the previous two years, until now, have become a lot of webmaster pursuit of one of the goals, many of the webmaster requirements of their moderators installed Alexa toolbar, to improve their ranking of the site.
I was fortunate to see an article online, said the Alexa two DLL file AlxTB1.dll, AlxRes.dll, where AlxRes.dll put a lot of scripts, pictures, HTML and other code. Interested to know can go to google.com or baidu.com to search for "Alexa dll."

• Imagine: Let the user of the website install Alexa toolbar.
If your site provides a feature that users are online, to give users points, users with these scores, you can enjoy the services provided by your site, then you can set up such a mechanism: as long as the member installed Alexa toolbar, then online when the score will be not installed Alexa twice times, or more.

• Question: How to determine if the user has the Alexa toolbar installed?
To judge this problem, you can only do it through a web script, and then send the value to the server when the user logs in. After I grope, AlxRes.dll resources, such as scripts, can be accessed through a path, open the DLL with the editor, you can see all the scripts. By creating a new HTML page, we insert a <script&gt that references script resources between
<script language= "Javascript" src= "Res://alxres.dll/script/dsn.class.js" ></script>
Dsn.class.js is one of the scripting resources in AlxRes.dll, and now we're just looking for a function in this resource, so long as it works, I find a simpler one:

Function aborted ()
{
Return
}
Because this method is relatively simple, the call is not error prone. This is good to do, to determine whether the user side Install Alexa toolbar, write a script:

<script language= "Javascript" src= "Res://alxres.dll/script/dsn.class.js" ></script>
<script language= "Javascript" >
function Dotryalexa ()
{
Try
{
Aborted ();
return 1;
}
catch (E)
{
return 0;
}
}
</script>
... Here's a test:

<input type= "button" value= "Tryalexa" onclick= "alert (Dotryalexa ())" >
If installed, Tip 1, not installed on the tip 2.

Cheating
On the user login page, write the above script, put a hidden input field and a script in the page:

<input type= "hidden" id= "Isalexauser" Runat=server><script>document.getelementbyid ("IsAlexaUser"). Value=dotryalexa () </script>
After the user logs in, the value is saved to the online table in the database, or session ...

• Effect: If you can guarantee a daily 200 or so Alexa puppet on your site more frequent activities, more than 5,000 rankings.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.