简体   繁体   English

从站点“ a”登录到Outlook发布表单

[英]Posting a Form from Site 'a' Login to Outlook

http://tildencoil.artesiandesign.net/ http://tildencoil.artesiandesign.net/

This is the site which I am having a problem with. 这是我遇到问题的网站。 I am trying to post from the login hover menu in the top right to the outlook form linked from directly clicking on login. 我试图从右上角的登录悬停菜单中发布到直接单击登录链接的Outlook表单。 I can provide code if necessary, unless there is a simple way that the community knows of. 如有必要,我可以提供代码,除非社区知道一种简单的方法。 If you need more information just ask. 如果您需要更多信息,请询问。 Thanks for any help! 谢谢你的帮助! I appreciate it! 我很感激!

As it seems there is no CSRF tokens (typical MS ;p) you can POST the values directly to the owaauth.dll (untested as do not have login). 似乎没有CSRF令牌(典型的MS; p),您可以将值直接过帐到owaauth.dll(未经登录,请进行试用)。

<form action="https://smtp2.tilden-coil.com/owa/auth/owaauth.dll" method="POST">

<input type="hidden" name="destination" value="https://smtp2.tilden-coil.com/owa//">
<input type="hidden" name="flags" value="0">
<input type="hidden" name="forcedownlevel" value="0">

<label for="username">User name:</label>
<input id="username" name="username" type="text"/>
<label for="password">Password:</label>
<input id="password" name="password" type="password">

<input type="submit" value="Submit">
</form>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM