Automatic login script for a website on windows machine?

后端 未结 5 2501
悲哀的现实
悲哀的现实 2020-12-12 16:27

I saw some guy had a file (I guess a batch file). On clicking of the batch file he was able to log in to multiple sites. (Perhaps it was done using VB.)

I looked for

5条回答
  •  盖世英雄少女心
    2020-12-12 17:02

    The code below does just that. The below is a working example to log into a game. I made a similar file to log in into Yahoo and a kurzweilai.net forum.

    Just copy the login form from any webpage's source code. Add value= "your user name" and value = "your password". Normally the -input- elements in the source code do not have the value attribute, and sometime, you will see something like that: value=""

    Save the file as a html on a local machine double click it, or make a bat/cmd file to launch and close them as required.

        
        
    
        
        Ikariam Autologin
        
        
        

    Note that -script- is just -script-. I found there is no need to specify that is is JavaScript. It works anyway. I also found out that a bare-bones version that contains just two input filds: userName and password also work. But I left a hidded input field etc. just in case. Yahoo mail has a lot of hidden fields. Some are to do with password encryption, and it counts login attempts.

    Security warnings and other staff, like Mark of the Web to make it work smoothly in IE are explained here:

    http://happy-snail.webs.com/autologinintogames.htm

提交回复
热议问题