通过脚本修改 Hotmail 中的名字和姓氏
我想编写一个脚本来登录 hotmail 并更改名字和姓氏。我正在考虑使用 Perl,尽管我认为任何语言都可以。
我如何知道要提出哪些请求?我猜我可以手动执行更改请求,确定正在向服务器发送/从服务器发送哪些http请求,确定正在发送什么模式,然后尝试生成类似的模式(替换我想要的更改)我的剧本。
我查看了 ethereal,但收到一条消息“安装程序已损坏”。接下来我将看看“高级 http 数据包嗅探器” - 有人有使用此工具的经验吗?
I would like to write a script that logs into hotmail and changes the first and last name. I am thinking of perl for this, although I imagine that any language would do.
How do I find out what requests to make? I'm guessing that I can do the change requests manually, determine what http requests are being sent to/from the server, determine what pattern is being sent, and then attempt to generate a similar pattern (substituting in the changes I want) in my script.
I took a look at ethereal, but I get a message "the installer is corrupted". I'm going to look at "Advanced http packet sniffer" next - anyone have experience with this tool?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您可以使用 Perl (或任何具有支持 HTTP(S) 模块的语言)。并且您可以使用人们已经创建的库。例如 WWW::Hotmail 或 Hotwayd。还可以在 CPAN 中搜索更多此类模块。
Yes you can use Perl (or any languages with modules that support HTTP(S) ). And you can use libraries already made by people. Eg WWW::Hotmail or Hotwayd. Search CPAN for more of those modules as well.