{"id":51772,"date":"2026-05-06T14:32:52","date_gmt":"2026-05-06T14:32:52","guid":{"rendered":"https:\/\/zero.redgem.net\/?p=51772"},"modified":"2026-05-06T14:32:52","modified_gmt":"2026-05-06T14:32:52","slug":"anonymous-ftp-access-detection","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=51772","title":{"rendered":"Anonymous FTP Access Detection_MSF:AUXILIARY-SCANNER-FTP-FTP_ANONYMOUS-"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-05-06T19:28:02&#8243;,&#8221;description&#8221;:&#8221;Detect anonymous read\/write FTP service access. Module Options msf use auxiliary\/scanner\/ftp\/ftpanonymous msf auxiliaryftpanonymous show actions &#8230;actions&#8230; msf auxiliaryftpanonymous set ACTION msf auxiliaryftpanonymous show options &#8230;show and set&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-05-06T19:01:18&#8243;,&#8221;modified&#8221;:&#8221;2026-05-06T19:01:18&#8243;,&#8221;type&#8221;:&#8221;metasploit&#8221;,&#8221;title&#8221;:&#8221;Anonymous FTP Access Detection&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;MSF:AUXILIARY-SCANNER-FTP-FTP_ANONYMOUS-&#8220;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-1999-0497&#8243;],&#8221;sourceData&#8221;:&#8221;# frozen_string_literal: true\\n\\n##\\n# This module requires Metasploit: https:\/\/metasploit.com\/download\\n# Current source: https:\/\/github.com\/rapid7\/metasploit-framework\\n##\\n\\nclass MetasploitModule \\u003c Msf::Auxiliary\\n  include Msf::Exploit::Remote::Ftp\\n  include Msf::Auxiliary::Scanner\\n  include Msf::Module::Deprecated\\n  moved_from &#8216;auxiliary\/scanner\/ftp\/anonymous&#8217;\\n\\n  def initialize\\n    super(\\n      &#8216;Name&#8217; =\\u003e &#8216;Anonymous FTP Access Detection&#8217;,\\n      &#8216;Description&#8217; =\\u003e &#8216;Detect anonymous (read\/write) FTP service access.&#8217;,\\n      &#8216;References&#8217; =\\u003e [\\n        [&#8216;URL&#8217;, &#8216;https:\/\/en.wikipedia.org\/wiki\/File_Transfer_Protocol#Anonymous_FTP&#8217;],\\n        [&#8216;CVE&#8217;, &#8216;1999-0497&#8217;],\\n      ],\\n      &#8216;Author&#8217; =\\u003e [\\n        &#8216;Matteo Cantoni \\u003cgoony[at]nothink.org\\u003e&#8217;,\\n        &#8216;g0tmi1k&#8217; # @g0tmi1k &#8211; additional features\\n      ],\\n      &#8216;License&#8217; =\\u003e MSF_LICENSE,\\n      &#8216;Notes&#8217; =\\u003e {\\n        &#8216;Stability&#8217; =\\u003e [CRASH_SAFE],\\n        &#8216;SideEffects&#8217; =\\u003e [IOC_IN_LOGS],\\n        &#8216;Reliability&#8217; =\\u003e []\\n      }\\n    )\\n\\n    register_options(\\n      [\\n        Opt::RPORT(21),\\n        OptBool.new(&#8216;STORE_LOOT&#8217;, [false, &#8216;Store the directory listing as loot&#8217;, true])\\n      ]\\n    )\\n  end\\n\\n  def run_host(target_host)\\n    res = connect_login(true, false)\\n\\n    if res\\n      dir = Rex::Text.rand_text_alpha(8)\\n      vprint_status(\\&#8221;Testing write access, creating test directory: #{dir}\\&#8221;)\\n      # Alt would be to use STOR\\n      write_check = send_cmd([&#8216;MKD&#8217;, dir], true)\\n\\n      if write_check \\u0026\\u0026 write_check =~ \/^2\/\\n        access_type = &#8216;Read\/Write&#8217;\\n        vprint_status(\\&#8221;Removing test directory: #{dir}\\&#8221;)\\n        send_cmd([&#8216;RMD&#8217;, dir], true)\\n      else\\n        access_type = &#8216;Read-only&#8217;\\n      end\\n\\n      print_good(\\&#8221;Anonymous #{access_type} access (#{@banner_version})\\&#8221;)\\n\\n      if datastore[&#8216;STORE_LOOT&#8217;]\\n        vprint_status(&#8216;Listing directory contents&#8217;)\\n        listing = send_cmd_data([&#8216;LS&#8217;], nil)\\n        if listing.nil?\\n          print_warning(&#8216;Could not retrieve directory listing (data connection failed)&#8217;)\\n        elsif listing[1].nil? || listing[1].empty?\\n          vprint_status(&#8216;Directory listing: (empty)&#8217;)\\n        else\\n          vprint_status(\\&#8221;Directory listing:\\\\n#{listing[1]}\\&#8221;)\\n          path = store_loot(&#8216;ftp.anonymous&#8217;, &#8216;text\/plain&#8217;, rhost, listing[1], &#8216;ftp_anonymous.txt&#8217;, &#8216;Anonymous FTP directory listing&#8217;)\\n          print_good(\\&#8221;Directory listing stored to: #{path}\\&#8221;)\\n        end\\n      end\\n\\n      report_vuln(\\n        host: rhost,\\n        port: rport,\\n        proto: &#8216;tcp&#8217;,\\n        sname: &#8216;ftp&#8217;,\\n        name: &#8216;Anonymous FTP Access&#8217;,\\n        info: \\&#8221;Anonymous FTP login accepted with #{access_type} access\\&#8221;,\\n        refs: references\\n      )\\n      register_creds(target_host, access_type)\\n    elsif banner\\n      print_warning(\\&#8221;FTP service, but no anonymous access (#{banner_version})\\&#8221;)\\n    else\\n      vprint_warning(&#8216;No FTP banner received&#8217;)\\n    end\\n  rescue ::Rex::TimeoutError, ::Rex::ConnectionError, ::EOFError, ::Errno::ECONNREFUSED =\\u003e e\\n    vprint_error(e.message)\\n    report_host(host: rhost)\\n  rescue ::Interrupt\\n    raise $ERROR_INFO\\n  ensure\\n    disconnect\\n  end\\n\\n  def register_creds(target_host, access_type)\\n    # Build service information\\n    service_data = {\\n      address: target_host,\\n      port: rport,\\n      service_name: &#8216;ftp&#8217;,\\n      protocol: &#8216;tcp&#8217;,\\n      workspace_id: myworkspace_id\\n    }\\n\\n    # Build credential information\\n    credential_data = {\\n      origin_type: :service,\\n      module_fullname: fullname,\\n      private_data: datastore[&#8216;FTPPASS&#8217;],\\n      private_type: :password,\\n      username: datastore[&#8216;FTPUSER&#8217;],\\n      workspace_id: myworkspace_id\\n    }\\n\\n    credential_data.merge!(service_data)\\n    credential_core = create_credential(credential_data)\\n\\n    # Assemble the options hash for creating the Metasploit::Credential::Login object\\n    login_data = {\\n      access_level: access_type,\\n      core: credential_core,\\n      last_attempted_at: DateTime.now,\\n      status: Metasploit::Model::Login::Status::SUCCESSFUL,\\n      workspace_id: myworkspace_id\\n    }\\n\\n    login_data.merge!(service_data)\\n    create_credential_login(login_data)\\n  end\\nend\\n&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/github.com\/rapid7\/metasploit-framework\/blob\/master\/modules\/auxiliary\/scanner\/ftp\/ftp_anonymous.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\/scanner\/ftp\/ftp_anonymous\/&#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-06T19:28:02&#8243;,&#8221;description&#8221;:&#8221;Detect anonymous read\/write FTP service access. Module Options msf use auxiliary\/scanner\/ftp\/ftpanonymous msf auxiliaryftpanonymous show actions &#8230;actions&#8230; msf auxiliaryftpanonymous set ACTION msf auxiliaryftpanonymous show options &#8230;show&#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-51772","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>Anonymous FTP Access Detection_MSF:AUXILIARY-SCANNER-FTP-FTP_ANONYMOUS- 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=51772\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Anonymous FTP Access Detection_MSF:AUXILIARY-SCANNER-FTP-FTP_ANONYMOUS- zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-05-06T19:28:02&#8243;,&#8221;description&#8221;:&#8221;Detect anonymous read\/write FTP service access. Module Options msf use auxiliary\/scanner\/ftp\/ftpanonymous msf auxiliaryftpanonymous show actions &#8230;actions&#8230; msf auxiliaryftpanonymous set ACTION msf auxiliaryftpanonymous show options &#8230;show...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=51772\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-05-06T14:32:52+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=51772#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=51772\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"Anonymous FTP Access Detection_MSF:AUXILIARY-SCANNER-FTP-FTP_ANONYMOUS-\",\"datePublished\":\"2026-05-06T14:32:52+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=51772\"},\"wordCount\":758,\"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=51772#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=51772\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=51772\",\"name\":\"Anonymous FTP Access Detection_MSF:AUXILIARY-SCANNER-FTP-FTP_ANONYMOUS- zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-05-06T14:32:52+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=51772#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=51772\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=51772#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Anonymous FTP Access Detection_MSF:AUXILIARY-SCANNER-FTP-FTP_ANONYMOUS-\"}]},{\"@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":"Anonymous FTP Access Detection_MSF:AUXILIARY-SCANNER-FTP-FTP_ANONYMOUS- 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=51772","og_locale":"en_US","og_type":"article","og_title":"Anonymous FTP Access Detection_MSF:AUXILIARY-SCANNER-FTP-FTP_ANONYMOUS- zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-05-06T19:28:02&#8243;,&#8221;description&#8221;:&#8221;Detect anonymous read\/write FTP service access. Module Options msf use auxiliary\/scanner\/ftp\/ftpanonymous msf auxiliaryftpanonymous show actions &#8230;actions&#8230; msf auxiliaryftpanonymous set ACTION msf auxiliaryftpanonymous show options &#8230;show...","og_url":"https:\/\/zero.redgem.net\/?p=51772","og_site_name":"zero redgem","article_published_time":"2026-05-06T14:32:52+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=51772#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=51772"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"Anonymous FTP Access Detection_MSF:AUXILIARY-SCANNER-FTP-FTP_ANONYMOUS-","datePublished":"2026-05-06T14:32:52+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=51772"},"wordCount":758,"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=51772#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=51772","url":"https:\/\/zero.redgem.net\/?p=51772","name":"Anonymous FTP Access Detection_MSF:AUXILIARY-SCANNER-FTP-FTP_ANONYMOUS- zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-05-06T14:32:52+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=51772#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=51772"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=51772#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"Anonymous FTP Access Detection_MSF:AUXILIARY-SCANNER-FTP-FTP_ANONYMOUS-"}]},{"@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\/51772","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=51772"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/51772\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=51772"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=51772"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=51772"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}