gpt4 book ai didi

html - 提交 HTML 表单后重定向到页面

转载 作者:太空狗 更新时间:2023-10-29 15:27:57 25 4
gpt4 key购买 nike

我对 HTML 编码还很陌生。在互联网上搜索了数小时的方法后,我失败了,所以我来了。我在这里设置了一个 CSRF 概念验证页面,我希望它重定向到另一个页面,该页面将执行 CSRF 已实现的有效负载。

<html>
<body>
<form action="https://website.com/action.php?" method="POST">
<input type="hidden" name="fullname" value="john" />
<input type="hidden" name="address" value="street 2, 32 ave" />
<input type="submit" value="Submit request" />
</form>
</body>
</html>

所以在提交这个表单之后,它所做的就是重定向到这个页面

which looks like this,

但与其相反,我希望它重定向到另一个 URL 并提交该表单。

最佳答案

对于遇到同样问题的其他人,我自己解决了。

    <html>
<body>
<form target="_blank" action="https://website.com/action.php" method="POST">
<input type="hidden" name="fullname" value="Sam" />
<input type="hidden" name="city" value="Dubai&#32;" />
<input onclick="window.location.href = 'https://website.com/my-account';" type="submit" value="Submit request" />
</form>
</body>
</html>

我所要做的就是将 target="_blank"属性添加到表单内联以在新页面中打开响应并使用提交按钮上的 onclick 重定向其他页面。

关于html - 提交 HTML 表单后重定向到页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44221250/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com