Class: Aquatone::Collectors::Censys

Inherits:
Aquatone::Collector show all
Defined in:
lib/aquatone/collectors/censys.rb

Constant Summary collapse

API_BASE_URI =
"https://www.censys.io/api/v1".freeze
API_RESULTS_PER_PAGE =
100.freeze
DEFAULT_PAGES_TO_PROCESS =
10.freeze

Constants inherited from Aquatone::Collector

Aquatone::Collector::DEFAULT_PRIORITY

Instance Attribute Summary

Attributes inherited from Aquatone::Collector

#domain, #hosts

Instance Method Summary collapse

Methods inherited from Aquatone::Collector

cli_options, descendants, #execute!, #initialize, meta, meta=, priority, sluggified_name

Constructor Details

This class inherits a constructor from Aquatone::Collector

Instance Method Details

#next_page?(page, body) ⇒ Boolean

Returns:

  • (Boolean)


80
81
82
# File 'lib/aquatone/collectors/censys.rb', line 80

def next_page?(page, body)
    page <= pages_to_process && body["metadata"]["pages"] && API_RESULTS_PER_PAGE * page < body["metadata"]["count"].to_i
end

#pages_to_processObject



84
85
86
87
88
89
# File 'lib/aquatone/collectors/censys.rb', line 84

def pages_to_process
  if has_cli_option?("censys-pages")
    return get_cli_option("censys-pages").to_i
  end
  DEFAULT_PAGES_TO_PROCESS
end

#request_censys_page(page = 1) ⇒ Object



22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# File 'lib/aquatone/collectors/censys.rb', line 22

def request_censys_page(page=1)
    # Initial version only supporting Censys Certificates API

    # Censys expects Basic Auth for requests.
    auth = {
        :username => get_key('censys_id'),
        :password => get_key('censys_secret')
    }

    # Define this is JSON content
    headers = {
      'Content-Type' => 'application/json',
      'Accept' => 'application/json'
    }

    # The post body itself, as JSON
    query = {
        'query'   => url_escape("#{domain.name}"),
        'page'    => page,
        'fields'  => [ "parsed.names", "parsed.extensions.subject_alt_name.dns_names" ],
        'flatten' => true
    }

    # Search API documented at https://censys.io/api/v1/docs/search
    response = post_request(
        "#{API_BASE_URI}/search/certificates",
        query.to_json,
        {
            :basic_auth => auth,
            :headers => headers
        }
    )

    if response.code != 200
        failure(response.parsed_response["error"] || "Censys API encountered error: #{response.code}")
    end

    # If nothing returned from Censys, return:
    return unless response.parsed_response["results"]

    response.parsed_response["results"].each do |result|

      next unless result["parsed.extensions.subject_alt_name.dns_names"]
      result["parsed.extensions.subject_alt_name.dns_names"].each do |altdns|
          add_host(altdns) if altdns.end_with?(".#{domain.name}")
      end

      next unless result["parsed.names"]
      result["parsed.names"].each do |parsedname|
          add_host(parsedname) if parsedname.end_with?(".#{domain.name}")
      end
    end

    # Get the next page of results
    request_censys_page(page + 1) if next_page?(page, response.parsed_response)

end

#runObject



18
19
20
# File 'lib/aquatone/collectors/censys.rb', line 18

def run
  request_censys_page
end