本文介绍了如何通过脚本将登录凭据发送到Hotmail?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想编写一个脚本来将我的用户名和密码发送到hotmail,以便我无需登录页面即可登录。由于各种原因,我不想使用自动登录选项。我看了一下源代码,以试图理解Hotmail如何将凭据发送到服务器以进行验证,但是我无法从源代码的尾巴中脱颖而出。感谢您的帮助。

I want to make a script to send my username and password to hotmail so I can be logged in without going through the login page. I don't want to use the "sign me in automatically" option for various reasons. I took a look at the source code to figure try to understand how Hotmail sends the credentials to the server for validation, but I cannot make heads from tails from the source code. Any help is appreciated.

我阅读了提出了类似的要求,但出于不同的目的-尽管给出的答案不是我想要的。

I read a post here asking something very similar, but for different purpose--though the answer given is not what I'm looking for.

推荐答案

使用Firefox,我只是在位置框中创建了一个名为hm
的书签,粘贴在下面的代码中,
当我加载hotmail页面时,我只是单击书签。

Using firefox I just create a bookmark called hmin the "location" box paste in the code below,when I load the hotmail page I just click on the bookmark.

javascript:%20document.getElementsByName('login').item(0).value='yourname@hotmail.co.uk';%20document.getElementsByName('passwd').item(0).value='yourpass';%20document.getElementsByName('SI').item(0).click();%20void(0);

这篇关于如何通过脚本将登录凭据发送到Hotmail?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-05 01:48