censu 0.1.6 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (61) hide show
  1. checksums.yaml +4 -4
  2. data/.rspec +3 -1
  3. data/.rubocop.yml +41 -35
  4. data/README.md +2 -2
  5. data/censys.gemspec +1 -1
  6. data/lib/censu.rb +2 -0
  7. data/lib/censys.rb +2 -0
  8. data/lib/censys/account.rb +23 -0
  9. data/lib/censys/account/quota.rb +17 -0
  10. data/lib/censys/api.rb +11 -2
  11. data/lib/censys/autonomous_system.rb +2 -0
  12. data/lib/censys/certificate.rb +2 -0
  13. data/lib/censys/data.rb +2 -0
  14. data/lib/censys/data/response.rb +2 -0
  15. data/lib/censys/data/result.rb +2 -2
  16. data/lib/censys/data/series.rb +2 -7
  17. data/lib/censys/data/series_list.rb +2 -0
  18. data/lib/censys/document.rb +2 -0
  19. data/lib/censys/document/has_asn.rb +2 -0
  20. data/lib/censys/document/has_http_response.rb +3 -1
  21. data/lib/censys/document/has_location.rb +2 -0
  22. data/lib/censys/document/has_services.rb +2 -0
  23. data/lib/censys/exceptions.rb +7 -10
  24. data/lib/censys/http_response.rb +2 -0
  25. data/lib/censys/ipv4.rb +2 -0
  26. data/lib/censys/location.rb +16 -10
  27. data/lib/censys/report.rb +2 -0
  28. data/lib/censys/report/metadata.rb +2 -0
  29. data/lib/censys/report/response.rb +2 -0
  30. data/lib/censys/search.rb +2 -0
  31. data/lib/censys/search/certificate.rb +2 -0
  32. data/lib/censys/search/ipv4.rb +2 -0
  33. data/lib/censys/search/metadata.rb +2 -0
  34. data/lib/censys/search/response.rb +2 -0
  35. data/lib/censys/search/result.rb +2 -0
  36. data/lib/censys/search/website.rb +2 -0
  37. data/lib/censys/version.rb +3 -2
  38. data/lib/censys/website.rb +2 -0
  39. data/spec/account_spec.rb +15 -0
  40. data/spec/censys_spec.rb +1 -2
  41. data/spec/data_spec.rb +4 -4
  42. data/spec/fixtures/vcr_cassettes/Censys_API/_account/should_return_an_Account.yml +47 -0
  43. data/spec/fixtures/vcr_cassettes/Censys_API/_data/result/{should_return_Result_response.yml → should_return_a_Data_Result.yml} +1 -1
  44. data/spec/fixtures/vcr_cassettes/Censys_API/_data/series/should_return_a_Data_Series.yml +53 -0
  45. data/spec/fixtures/vcr_cassettes/Censys_API/_data/series_list/{should_return_SeriesList_response.yml → should_return_a_Data_SeriesList.yml} +124 -107
  46. data/spec/fixtures/vcr_cassettes/Censys_API/_report/certificates/{should_return_certificate_response.yml → should_return_a_certificate_response.yml} +7 -7
  47. data/spec/fixtures/vcr_cassettes/Censys_API/_report/ipv4/{should_return_ipv4_response.yml → should_return_an_ipv4_response.yml} +10 -10
  48. data/spec/fixtures/vcr_cassettes/Censys_API/_report/websites/{should_return_website_response.yml → should_return_a_website_response.yml} +9 -9
  49. data/spec/fixtures/vcr_cassettes/Censys_API/_search/certificates/should_return_Certificate_response.yml +294 -351
  50. data/spec/fixtures/vcr_cassettes/Censys_API/_search/ipv4/should_return_IPv4_response.yml +396 -544
  51. data/spec/fixtures/vcr_cassettes/Censys_API/_search/websites/should_return_Website_response.yml +71 -71
  52. data/spec/fixtures/vcr_cassettes/Censys_API/_view/certificates/{should_return_Certificate_response.yml → should_return_a_Certificate_response.yml} +65 -68
  53. data/spec/fixtures/vcr_cassettes/Censys_API/_view/ipv4/should_return_IPv4_response.yml +95 -114
  54. data/spec/fixtures/vcr_cassettes/Censys_API/_view/ipv4/should_return_an_IPv4_response.yml +156 -0
  55. data/spec/fixtures/vcr_cassettes/Censys_API/_view/websites/{should_return_Website_response.yml → should_return_a_Website_response.yml} +504 -514
  56. data/spec/report_spec.rb +4 -4
  57. data/spec/search_spec.rb +1 -1
  58. data/spec/spec_helper.rb +8 -1
  59. data/spec/view_spec.rb +6 -6
  60. metadata +26 -18
  61. data/spec/fixtures/vcr_cassettes/Censys_API/_data/series/should_return_Series_response.yml +0 -130
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Censys
2
4
  class HTTPResponse
3
5
  #
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'censys/document'
2
4
  require 'censys/document/has_services'
3
5
  require 'censys/document/has_location'
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Censys
2
4
  class Location
3
5
  # @return [String]
@@ -12,6 +14,9 @@ module Censys
12
14
  # @return [String]
13
15
  attr_reader :country
14
16
 
17
+ # @return [String]
18
+ attr_reader :country_code
19
+
15
20
  # @return [String]
16
21
  attr_reader :continent
17
22
 
@@ -38,16 +43,17 @@ module Censys
38
43
  def initialize(attributes)
39
44
  @attributes = attributes
40
45
 
41
- @postal_code = self['postal_code']
42
- @city = self['city']
43
- @province = self['province']
44
- @country = self['country']
45
- @continent = self['continent']
46
- @registered_country = self['registered_country']
47
- @registered_country_code = self['registered_country_code']
48
- @timezone = self['timezone']
49
- @latitude = self['latitude']
50
- @longitude = self['longitude']
46
+ @city = self['city']
47
+ @continent = self['continent']
48
+ @country = self['country']
49
+ @country_code = self['country_code']
50
+ @latitude = self['latitude']
51
+ @longitude = self['longitude']
52
+ @postal_code = self['postal_code']
53
+ @province = self['province']
54
+ @registered_country = self['registered_country']
55
+ @registered_country_code = self['registered_country_code']
56
+ @timezone = self['timezone']
51
57
  end
52
58
 
53
59
  private
@@ -1 +1,3 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'censys/report/response'
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Censys
2
4
  module Report
3
5
  class Metadata
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'censys/report/metadata'
2
4
 
3
5
  module Censys
@@ -1 +1,3 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'censys/search/response'
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'censys/search/result'
2
4
 
3
5
  module Censys
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'censys/search/result'
2
4
  require 'censys/document/has_location'
3
5
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Censys
2
4
  module Search
3
5
  class Metadata
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'censys/search/metadata'
2
4
  require 'censys/search/ipv4'
3
5
  require 'censys/search/website'
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Censys
2
4
  module Search
3
5
  class Result
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'censys/search/result'
2
4
 
3
5
  module Censys
@@ -1,4 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Censys
2
- # censys version
3
- VERSION = "0.1.6".freeze
4
+ VERSION = "0.2.0"
4
5
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'censys/document'
2
4
  require 'censys/document/has_services'
3
5
  require 'censys/document/has_location'
@@ -0,0 +1,15 @@
1
+ # frozen_string_literal: true
2
+
3
+ describe Censys::API do
4
+ before(:context) do
5
+ @api = Censys::API.new
6
+ end
7
+
8
+ describe "#account", :vcr do
9
+ it "should return an Account" do
10
+ account = @api.account
11
+ expect(account).to be_a(Censys::Account)
12
+ expect(account.quota).to be_a(Censys::Account::Quota)
13
+ end
14
+ end
15
+ end
@@ -1,5 +1,4 @@
1
- require 'spec_helper'
2
- require 'censys'
1
+ # frozen_string_literal: true
3
2
 
4
3
  describe Censys do
5
4
  it "should have a VERSION constant" do
@@ -1,4 +1,4 @@
1
- require 'spec_helper'
1
+ # frozen_string_literal: true
2
2
 
3
3
  describe Censys::API do
4
4
  before(:context) do
@@ -7,7 +7,7 @@ describe Censys::API do
7
7
 
8
8
  describe "#data", :vcr do
9
9
  context "series_list" do
10
- it "should return SeriesList response" do
10
+ it "should return a Data::SeriesList" do
11
11
  data = @api.data
12
12
  expect(data).to be_a(Censys::Data::SeriesList)
13
13
  expect(data.primary_series).to be_a(Hash)
@@ -16,7 +16,7 @@ describe Censys::API do
16
16
  end
17
17
 
18
18
  context "series" do
19
- it "should return Series response" do
19
+ it "should return a Data::Series" do
20
20
  series = @api.data(series: "22-ssh-banner-full_ipv4")
21
21
  expect(series).to be_a(Censys::Data::Series)
22
22
  expect(series.id).to eq("22-ssh-banner-full_ipv4")
@@ -31,7 +31,7 @@ describe Censys::API do
31
31
  end
32
32
 
33
33
  context "result" do
34
- it "should return Result response" do
34
+ it "should return a Data::Result" do
35
35
  result = @api.data(series: "22-ssh-banner-full_ipv4", result: "20150930T0056")
36
36
  expect(result).to be_a(Censys::Data::Result)
37
37
  expect(result.id).to eq("20150930T0056")
@@ -0,0 +1,47 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://www.censys.io/api/v1/account
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept-Encoding:
11
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
12
+ Accept:
13
+ - "*/*"
14
+ User-Agent:
15
+ - Ruby
16
+ Host:
17
+ - www.censys.io
18
+ Authorization:
19
+ - "<CENSORED>"
20
+ response:
21
+ status:
22
+ code: 200
23
+ message: OK
24
+ headers:
25
+ Content-Type:
26
+ - application/json
27
+ Access-Control-Allow-Origin:
28
+ - "*"
29
+ Strict-Transport-Security:
30
+ - max-age=31536000; includeSubDomains; preload
31
+ X-Cloud-Trace-Context:
32
+ - e081ed1fa61c81d0125383286c993e2b
33
+ Date:
34
+ - Thu, 13 Sep 2018 11:26:14 GMT
35
+ Server:
36
+ - Google Frontend
37
+ Content-Length:
38
+ - '311'
39
+ body:
40
+ encoding: UTF-8
41
+ string: '{"api_secret": "<CENSORED>", "first_login": "2018-03-02 03:45:39",
42
+ "quota": {"used": 44, "resets_at": "2018-10-02 03:19:37", "allowance": 250},
43
+ "api_id": "<CENSORED>", "last_login": "2018-09-13 11:26:14.014084", "login":
44
+ "<CENSORED>", "email": "<CENSORED>"}'
45
+ http_version:
46
+ recorded_at: Thu, 13 Sep 2018 11:26:14 GMT
47
+ recorded_with: VCR 4.0.0
@@ -96,6 +96,6 @@ http_interactions:
96
96
  "file_type": "json", "compressed_sha256_fingerprint": null, "compression_type":
97
97
  "lz4", "size": 21707}, "timestamp": "20150930T005634", "id": "20150930T0056",
98
98
  "metadata": null}'
99
- http_version:
99
+ http_version:
100
100
  recorded_at: Sun, 17 Dec 2017 23:16:29 GMT
101
101
  recorded_with: VCR 4.0.0
@@ -0,0 +1,53 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://www.censys.io/api/v1/data/22-ssh-banner-full_ipv4
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept-Encoding:
11
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
12
+ Accept:
13
+ - "*/*"
14
+ User-Agent:
15
+ - Ruby
16
+ Host:
17
+ - www.censys.io
18
+ Authorization:
19
+ - "<CENSORED>"
20
+ response:
21
+ status:
22
+ code: 200
23
+ message: OK
24
+ headers:
25
+ Content-Type:
26
+ - application/json
27
+ Access-Control-Allow-Origin:
28
+ - "*"
29
+ Strict-Transport-Security:
30
+ - max-age=31536000; includeSubDomains; preload
31
+ X-Cloud-Trace-Context:
32
+ - 035b8117ea7de4a4776adc8e4f8c6d00
33
+ Date:
34
+ - Thu, 13 Sep 2018 11:25:57 GMT
35
+ Server:
36
+ - Google Frontend
37
+ Content-Length:
38
+ - '796'
39
+ body:
40
+ encoding: UTF-8
41
+ string: '{"protocol": "ssh", "description": "This dataset is composed of a ZMap
42
+ TCP SYN scan on port 22 and a ZGrab SSH Banner Grab\r\nfor the for responsive
43
+ hosts. The connection is terminated after a banner has been\r\nreceived. We
44
+ do not currently capture SSH host keys, but we are planning to add this\r\nfunctionality
45
+ in the future.", "destination": "full_ipv4", "results": {"historical": [{"timestamp":
46
+ "20170705T001914", "id": "20170705T0019", "details_url": "https://www.censys.io/api/v1/data/22-ssh-banner-full_ipv4/20170705T0019"}],
47
+ "latest": {"timestamp": "20170705T001914", "id": "20170705T0019", "details_url":
48
+ "https://www.censys.io/api/v1/data/22-ssh-banner-full_ipv4/20170705T0019"}},
49
+ "port": 22, "subprotocol": "banner", "id": "22-ssh-banner-full_ipv4", "name":
50
+ "22-ssh-banner-full_ipv4"}'
51
+ http_version:
52
+ recorded_at: Thu, 13 Sep 2018 11:25:57 GMT
53
+ recorded_with: VCR 4.0.0
@@ -27,40 +27,51 @@ http_interactions:
27
27
  Access-Control-Allow-Origin:
28
28
  - "*"
29
29
  Strict-Transport-Security:
30
- - max-age=15768000; includeSubDomains; preload
30
+ - max-age=31536000; includeSubDomains; preload
31
31
  X-Cloud-Trace-Context:
32
- - b078497d92c2bcdb818e8c092dc764d4
32
+ - 5529ddd177949331ace67af24f234430
33
33
  Date:
34
- - Sun, 17 Dec 2017 13:29:17 GMT
34
+ - Thu, 13 Sep 2018 11:26:00 GMT
35
35
  Server:
36
36
  - Google Frontend
37
37
  Content-Length:
38
- - '35691'
38
+ - '37045'
39
39
  body:
40
40
  encoding: UTF-8
41
- string: '{"primary_series": {"Alexa Top 1 Million Snapshots": {"description":
42
- "This dataset contains the latest information we know about each domain the
43
- Alexa Top 1 Million. Each record describes a single Alexa domain and matches
44
- the data that is available in the Top Million Websites search index. All protocols
45
- are updated daily.", "details_url": "https://www.censys.io/api/v1/data/domain",
46
- "latest_result": {"timestamp": "20171217T000306", "name": "20171217T0003",
47
- "details_url": "https://www.censys.io/api/v1/data/domain/20171217T0003"},
48
- "id": "domain", "name": "Alexa Top 1 Million Snapshots"}, "IPv4 Snapshots":
49
- {"description": "This dataset contains the latest information we know about
50
- each public host in the IPv4 address space. Each record describes a single
51
- host and matches the data that is available in the IPv4 search index. All
52
- protocols are updated at least weekly.", "details_url": "https://www.censys.io/api/v1/data/ipv4",
53
- "latest_result": {"timestamp": "20171216T063143", "name": "20171216T0631",
54
- "details_url": "https://www.censys.io/api/v1/data/ipv4/20171216T0631"}, "id":
55
- "ipv4", "name": "IPv4 Snapshots"}, "All X.509 Certificates": {"description":
56
- "This datasets consists of the X.509 certificates we''ve seen in Censys. Each
57
- record contains the raw certificate and parsed data (from ZGrab). Records
58
- are identical to what is found in the certificate search index.", "details_url":
59
- "https://www.censys.io/api/v1/data/certificates", "latest_result": {"timestamp":
60
- "20171215T133617", "name": "20171215T1336", "details_url": "https://www.censys.io/api/v1/data/certificates/20171215T1336"},
61
- "id": "certificates", "name": "All X.509 Certificates"}}, "raw_series": {"22-ssh-banner-full_ipv4":
62
- {"port": 22, "subprotocol": "banner", "protocol": "ssh", "name": "22-ssh-banner-full_ipv4",
63
- "details_url": "https://www.censys.io/api/v1/data/22-ssh-banner-full_ipv4",
41
+ string: '{"primary_series": {"Alexa Top 1 Million Snapshots (Deprecated Format)":
42
+ {"description": "The Censys Websites dataset provides data about the common
43
+ services (e.g., HTTP, HTTPS, SMTP) running on the Alexa Top Million domains.
44
+ This data series is produced by our older data infrastructure and is deprecated.",
45
+ "details_url": "https://www.censys.io/api/v1/data/domain", "latest_result":
46
+ null, "id": "domain", "name": "Alexa Top 1 Million Snapshots (Deprecated Format)"},
47
+ "Alexa Top 1 Million Snapshots": {"description": "The Censys Websites dataset
48
+ provides data about the common services (e.g., HTTP, HTTPS, SMTP) running
49
+ on the Alexa Top Million domains. This data series is produced by our newer
50
+ data infrastructure and will replace the (deprecated) ''domain'' series.",
51
+ "details_url": "https://www.censys.io/api/v1/data/domain_2018", "latest_result":
52
+ null, "id": "domain_2018", "name": "Alexa Top 1 Million Snapshots"}, "All
53
+ X.509 Certificates (Deprecated Format)": {"description": "The Censys Certificates
54
+ dataset contains parsed data about known X.509 certificates. This data series
55
+ is produced by our older datainfrastructure and is deprecated.", "details_url":
56
+ "https://www.censys.io/api/v1/data/certificates", "latest_result": null, "id":
57
+ "certificates", "name": "All X.509 Certificates (Deprecated Format)"}, "IPv4
58
+ Snapshots (Deprecated Format)": {"description": "The Censys IPv4 dataset provides
59
+ data about the services (e.g., HTTP, SMTP, MySQL) running on all publicly-accessible
60
+ IPv4 hosts. This data series is produced by our older data infrastructure
61
+ and is deprecated.", "details_url": "https://www.censys.io/api/v1/data/ipv4",
62
+ "latest_result": null, "id": "ipv4", "name": "IPv4 Snapshots (Deprecated Format)"},
63
+ "IPv4 Snapshots": {"description": "The Censys IPv4 dataset provides data about
64
+ the services (e.g., HTTP, SMTP, MySQL) running on all publicly-accessible
65
+ IPv4 hosts. This data series is produced by our newer data infrastructure
66
+ and will replace the (deprecated) ''ipv4'' series.", "details_url": "https://www.censys.io/api/v1/data/ipv4_2018",
67
+ "latest_result": null, "id": "ipv4_2018", "name": "IPv4 Snapshots"}, "All
68
+ X.509 Certificates": {"description": "The Censys Certificates dataset contains
69
+ parsed data about known X.509 certificates. This data series is produced by
70
+ our newer data infrastructure and will replace the (deprecated) ''certificates''
71
+ series.", "details_url": "https://www.censys.io/api/v1/data/certificates_2018",
72
+ "latest_result": null, "id": "certificates_2018", "name": "All X.509 Certificates"}},
73
+ "raw_series": {"22-ssh-banner-full_ipv4": {"port": 22, "subprotocol": "banner",
74
+ "protocol": "ssh", "name": "22-ssh-banner-full_ipv4", "details_url": "https://www.censys.io/api/v1/data/22-ssh-banner-full_ipv4",
64
75
  "latest_result": {"timestamp": "20170705T001914", "name": "20170705T0019",
65
76
  "details_url": "https://www.censys.io/api/v1/data/22-ssh-banner-full_ipv4/20170705T0019"},
66
77
  "destination": "full_ipv4", "id": "22-ssh-banner-full_ipv4", "description":
@@ -70,35 +81,35 @@ http_interactions:
70
81
  keys, but we are planning to add this\r\nfunctionality in the future."}, "25-smtp-starttls-alexa_top1mil":
71
82
  {"port": 25, "subprotocol": "starttls", "protocol": "smtp", "name": "25-smtp-starttls-alexa_top1mil",
72
83
  "details_url": "https://www.censys.io/api/v1/data/25-smtp-starttls-alexa_top1mil",
73
- "latest_result": {"timestamp": "20171216T124315", "name": "20171216T1243",
74
- "details_url": "https://www.censys.io/api/v1/data/25-smtp-starttls-alexa_top1mil/20171216T1243"},
84
+ "latest_result": {"timestamp": "20180813T123633", "name": "20180813T1236",
85
+ "details_url": "https://www.censys.io/api/v1/data/25-smtp-starttls-alexa_top1mil/20180813T1236"},
75
86
  "destination": "alexa_top1mil", "id": "25-smtp-starttls-alexa_top1mil", "description":
76
87
  "This dataset is composed of the MX dns lookups for each domain on the Alexa
77
88
  Top Million and an SMTP and StartTLS handshake with those servers. Data is
78
89
  keyed by Alexa domain."}, "110-pop3-starttls-full_ipv4": {"port": 110, "subprotocol":
79
90
  "starttls", "protocol": "pop3", "name": "110-pop3-starttls-full_ipv4", "details_url":
80
91
  "https://www.censys.io/api/v1/data/110-pop3-starttls-full_ipv4", "latest_result":
81
- {"timestamp": "20171217T001643", "name": "20171217T0016", "details_url": "https://www.censys.io/api/v1/data/110-pop3-starttls-full_ipv4/20171217T0016"},
92
+ {"timestamp": "20180813T052318", "name": "20180813T0523", "details_url": "https://www.censys.io/api/v1/data/110-pop3-starttls-full_ipv4/20180813T0523"},
82
93
  "destination": "full_ipv4", "id": "110-pop3-starttls-full_ipv4", "description":
83
94
  "This dataset is composed of a ZMap TCP SYN scan on port 110 against the public\r\nIPv4
84
95
  address space and a POP3 banner grab, STARTTLS initiation, and normal TLS\r\nhandshake.
85
96
  This is our priamry scan for finding POP3 servers and measuring STARTTLS\r\nadoption."},
86
97
  "2323-telnet-banner-full_ipv4": {"port": 2323, "subprotocol": "banner", "protocol":
87
98
  "telnet", "name": "2323-telnet-banner-full_ipv4", "details_url": "https://www.censys.io/api/v1/data/2323-telnet-banner-full_ipv4",
88
- "latest_result": {"timestamp": "20171213T223111", "name": "20171213T2231",
89
- "details_url": "https://www.censys.io/api/v1/data/2323-telnet-banner-full_ipv4/20171213T2231"},
99
+ "latest_result": {"timestamp": "20180808T230412", "name": "20180808T2304",
100
+ "details_url": "https://www.censys.io/api/v1/data/2323-telnet-banner-full_ipv4/20180808T2304"},
90
101
  "destination": "full_ipv4", "id": "2323-telnet-banner-full_ipv4", "description":
91
102
  null}, "443-https-ssl_3-full_ipv4": {"port": 443, "subprotocol": "ssl_3",
92
103
  "protocol": "https", "name": "443-https-ssl_3-full_ipv4", "details_url": "https://www.censys.io/api/v1/data/443-https-ssl_3-full_ipv4",
93
- "latest_result": {"timestamp": "20171213T225405", "name": "20171213T2254",
94
- "details_url": "https://www.censys.io/api/v1/data/443-https-ssl_3-full_ipv4/20171213T2254"},
104
+ "latest_result": {"timestamp": "20180808T232317", "name": "20180808T2323",
105
+ "details_url": "https://www.censys.io/api/v1/data/443-https-ssl_3-full_ipv4/20180808T2323"},
95
106
  "destination": "full_ipv4", "id": "443-https-ssl_3-full_ipv4", "description":
96
107
  "This dataset is composed of a ZMap TCP SYN scan on port 443 against the public\r\nIPv4
97
108
  address space and an SSLv3 handshake with responsive hosts."}, "443-https-heartbleed-full_ipv4":
98
109
  {"port": 443, "subprotocol": "heartbleed", "protocol": "https", "name": "443-https-heartbleed-full_ipv4",
99
110
  "details_url": "https://www.censys.io/api/v1/data/443-https-heartbleed-full_ipv4",
100
- "latest_result": {"timestamp": "20171213T004144", "name": "20171213T0041",
101
- "details_url": "https://www.censys.io/api/v1/data/443-https-heartbleed-full_ipv4/20171213T0041"},
111
+ "latest_result": {"timestamp": "20180808T013251", "name": "20180808T0132",
112
+ "details_url": "https://www.censys.io/api/v1/data/443-https-heartbleed-full_ipv4/20180808T0132"},
102
113
  "destination": "full_ipv4", "id": "443-https-heartbleed-full_ipv4", "description":
103
114
  "This dataset is composed of TCP SYN scan on port 443 against the public\r\nIPv4
104
115
  address space and a typical looking TLS handshake and safe check for whether
@@ -107,21 +118,21 @@ http_interactions:
107
118
  "1911-fox-device_id-full_ipv4": {"port": 1911, "subprotocol": "device_id",
108
119
  "protocol": "fox", "name": "1911-fox-device_id-full_ipv4", "details_url":
109
120
  "https://www.censys.io/api/v1/data/1911-fox-device_id-full_ipv4", "latest_result":
110
- {"timestamp": "20171211T120101", "name": "20171211T1201", "details_url": "https://www.censys.io/api/v1/data/1911-fox-device_id-full_ipv4/20171211T1201"},
121
+ {"timestamp": "20180813T121808", "name": "20180813T1218", "details_url": "https://www.censys.io/api/v1/data/1911-fox-device_id-full_ipv4/20180813T1218"},
111
122
  "destination": "full_ipv4", "id": "1911-fox-device_id-full_ipv4", "description":
112
123
  "This dataset is composed of a TCP SYN scan on port 1911 and then Niagara
113
124
  Tridium Fox handshake."}, "443-https-dhe-full_ipv4": {"port": 443, "subprotocol":
114
125
  "dhe", "protocol": "https", "name": "443-https-dhe-full_ipv4", "details_url":
115
126
  "https://www.censys.io/api/v1/data/443-https-dhe-full_ipv4", "latest_result":
116
- {"timestamp": "20171210T231706", "name": "20171210T2317", "details_url": "https://www.censys.io/api/v1/data/443-https-dhe-full_ipv4/20171210T2317"},
127
+ {"timestamp": "20180812T235253", "name": "20180812T2352", "details_url": "https://www.censys.io/api/v1/data/443-https-dhe-full_ipv4/20180812T2352"},
117
128
  "destination": "full_ipv4", "id": "443-https-dhe-full_ipv4", "description":
118
129
  "This dataset is composed of TCP SYN scan on port 443 against the public\r\nIPv4
119
130
  address space and a TLS handshake that only offers Diffie-Hellman \r\ncipher
120
131
  suites."}, "0-icmp-echo_request-full_ipv4": {"port": null, "subprotocol":
121
132
  "echo_request", "protocol": "icmp", "name": "0-icmp-echo_request-full_ipv4",
122
133
  "details_url": "https://www.censys.io/api/v1/data/0-icmp-echo_request-full_ipv4",
123
- "latest_result": {"timestamp": "20171215T231608", "name": "20171215T2316",
124
- "details_url": "https://www.censys.io/api/v1/data/0-icmp-echo_request-full_ipv4/20171215T2316"},
134
+ "latest_result": {"timestamp": "20180810T231454", "name": "20180810T2314",
135
+ "details_url": "https://www.censys.io/api/v1/data/0-icmp-echo_request-full_ipv4/20180810T2314"},
125
136
  "destination": "full_ipv4", "id": "0-icmp-echo_request-full_ipv4", "description":
126
137
  "Raw ZMap output from ICMP echo request scan of the public IPv4 address space.\r\n"},
127
138
  "465-smtps-ssl_2-full_ipv4": {"port": 465, "subprotocol": "ssl_2", "protocol":
@@ -131,19 +142,19 @@ http_interactions:
131
142
  "destination": "full_ipv4", "id": "465-smtps-ssl_2-full_ipv4", "description":
132
143
  null}, "22-ssh-v2-full_ipv4": {"port": 22, "subprotocol": "v2", "protocol":
133
144
  "ssh", "name": "22-ssh-v2-full_ipv4", "details_url": "https://www.censys.io/api/v1/data/22-ssh-v2-full_ipv4",
134
- "latest_result": {"timestamp": "20171213T001607", "name": "20171213T0016",
135
- "details_url": "https://www.censys.io/api/v1/data/22-ssh-v2-full_ipv4/20171213T0016"},
145
+ "latest_result": {"timestamp": "20180808T005121", "name": "20180808T0051",
146
+ "details_url": "https://www.censys.io/api/v1/data/22-ssh-v2-full_ipv4/20180808T0051"},
136
147
  "destination": "full_ipv4", "id": "22-ssh-v2-full_ipv4", "description": null},
137
148
  "20000-dnp3-status-full_ipv4": {"port": 20000, "subprotocol": "status", "protocol":
138
149
  "dnp3", "name": "20000-dnp3-status-full_ipv4", "details_url": "https://www.censys.io/api/v1/data/20000-dnp3-status-full_ipv4",
139
- "latest_result": {"timestamp": "20171216T133249", "name": "20171216T1332",
140
- "details_url": "https://www.censys.io/api/v1/data/20000-dnp3-status-full_ipv4/20171216T1332"},
150
+ "latest_result": {"timestamp": "20180811T124730", "name": "20180811T1247",
151
+ "details_url": "https://www.censys.io/api/v1/data/20000-dnp3-status-full_ipv4/20180811T1247"},
141
152
  "destination": "full_ipv4", "id": "20000-dnp3-status-full_ipv4", "description":
142
153
  "This dataset is composed of a DNP3 scan on port on port 20000 that detects
143
154
  whether a device speaks the DNP3 protocol. "}, "102-s7-szl-full_ipv4": {"port":
144
155
  102, "subprotocol": "szl", "protocol": "s7", "name": "102-s7-szl-full_ipv4",
145
156
  "details_url": "https://www.censys.io/api/v1/data/102-s7-szl-full_ipv4", "latest_result":
146
- {"timestamp": "20171213T123907", "name": "20171213T1239", "details_url": "https://www.censys.io/api/v1/data/102-s7-szl-full_ipv4/20171213T1239"},
157
+ {"timestamp": "20180808T125011", "name": "20180808T1250", "details_url": "https://www.censys.io/api/v1/data/102-s7-szl-full_ipv4/20180808T1250"},
147
158
  "destination": "full_ipv4", "id": "102-s7-szl-full_ipv4", "description": null},
148
159
  "110-pop3-ssl_2-full_ipv4": {"port": 110, "subprotocol": "ssl_2", "protocol":
149
160
  "pop3", "name": "110-pop3-ssl_2-full_ipv4", "details_url": "https://www.censys.io/api/v1/data/110-pop3-ssl_2-full_ipv4",
@@ -153,7 +164,7 @@ http_interactions:
153
164
  null}, "25-smtp-dhe_export-1%_sample_ipv4": {"port": 25, "subprotocol": "dhe_export",
154
165
  "protocol": "smtp", "name": "25-smtp-dhe_export-1%_sample_ipv4", "details_url":
155
166
  "https://www.censys.io/api/v1/data/25-smtp-dhe_export-1%_sample_ipv4", "latest_result":
156
- {"timestamp": "20171216T141506", "name": "20171216T1415", "details_url": "https://www.censys.io/api/v1/data/25-smtp-dhe_export-1%_sample_ipv4/20171216T1415"},
167
+ {"timestamp": "20180813T141517", "name": "20180813T1415", "details_url": "https://www.censys.io/api/v1/data/25-smtp-dhe_export-1%_sample_ipv4/20180813T1415"},
157
168
  "destination": "1%_sample_ipv4", "id": "25-smtp-dhe_export-1%_sample_ipv4",
158
169
  "description": "This dataset is composed of a ZMap TCP SYN scan on port 25
159
170
  against a random 1% sample\r\nof the IPv4 address space and an SMTP Banner
@@ -178,8 +189,8 @@ http_interactions:
178
189
  Details on our Heartbleed check can be found at \r\nhttps://jhalderm.com/pub/papers/heartbleed-imc14.pdf.
179
190
  "}, "80-http-get-full_ipv4": {"port": 80, "subprotocol": "get", "protocol":
180
191
  "http", "name": "80-http-get-full_ipv4", "details_url": "https://www.censys.io/api/v1/data/80-http-get-full_ipv4",
181
- "latest_result": {"timestamp": "20171214T081504", "name": "20171214T0815",
182
- "details_url": "https://www.censys.io/api/v1/data/80-http-get-full_ipv4/20171214T0815"},
192
+ "latest_result": {"timestamp": "20180809T084704", "name": "20180809T0847",
193
+ "details_url": "https://www.censys.io/api/v1/data/80-http-get-full_ipv4/20180809T0847"},
183
194
  "destination": "full_ipv4", "id": "80-http-get-full_ipv4", "description":
184
195
  "This dataset is composed of a ZMap TCP SYN scan on port 80 against the public\r\nIPv4
185
196
  address space and a GET / HTTP request for the root page (e.g., http://google.com).\r\nNote:
@@ -194,28 +205,28 @@ http_interactions:
194
205
  null}, "995-pop3s-rsa_export-full_ipv4": {"port": 995, "subprotocol": "rsa_export",
195
206
  "protocol": "pop3s", "name": "995-pop3s-rsa_export-full_ipv4", "details_url":
196
207
  "https://www.censys.io/api/v1/data/995-pop3s-rsa_export-full_ipv4", "latest_result":
197
- {"timestamp": "20160426T150810", "name": "20160426T1508", "details_url": "https://www.censys.io/api/v1/data/995-pop3s-rsa_export-full_ipv4/20160426T1508"},
208
+ {"timestamp": "20180118T154404", "name": "20180118T1544", "details_url": "https://www.censys.io/api/v1/data/995-pop3s-rsa_export-full_ipv4/20180118T1544"},
198
209
  "destination": "full_ipv4", "id": "995-pop3s-rsa_export-full_ipv4", "description":
199
210
  "This dataset is composed of a ZMap TCP SYN scan on port 995 against the public\r\nIPv4
200
211
  address space and TLS handshake with responsive hosts that only offer\r\nexport-grade
201
212
  RSA ciphers."}, "1900-upnp-discovery-full_ipv4": {"port": 1900, "subprotocol":
202
213
  "discovery", "protocol": "upnp", "name": "1900-upnp-discovery-full_ipv4",
203
214
  "details_url": "https://www.censys.io/api/v1/data/1900-upnp-discovery-full_ipv4",
204
- "latest_result": {"timestamp": "20171211T020656", "name": "20171211T0206",
205
- "details_url": "https://www.censys.io/api/v1/data/1900-upnp-discovery-full_ipv4/20171211T0206"},
215
+ "latest_result": {"timestamp": "20180813T023822", "name": "20180813T0238",
216
+ "details_url": "https://www.censys.io/api/v1/data/1900-upnp-discovery-full_ipv4/20180813T0238"},
206
217
  "destination": "full ipv4", "id": "1900-upnp-discovery-full_ipv4", "description":
207
218
  null}, "993-imaps-dhe_export-full_ipv4": {"port": 993, "subprotocol": "dhe_export",
208
219
  "protocol": "imaps", "name": "993-imaps-dhe_export-full_ipv4", "details_url":
209
220
  "https://www.censys.io/api/v1/data/993-imaps-dhe_export-full_ipv4", "latest_result":
210
- {"timestamp": "20171217T041452", "name": "20171217T0414", "details_url": "https://www.censys.io/api/v1/data/993-imaps-dhe_export-full_ipv4/20171217T0414"},
221
+ {"timestamp": "20180814T041501", "name": "20180814T0415", "details_url": "https://www.censys.io/api/v1/data/993-imaps-dhe_export-full_ipv4/20180814T0415"},
211
222
  "destination": "full_ipv4", "id": "993-imaps-dhe_export-full_ipv4", "description":
212
223
  "This dataset is composed of a ZMap TCP SYN scan on port 993 against the public\r\nIPv4
213
224
  address space and TLS handshake with responsive hosts in which we only\r\noffer
214
225
  Diffie-Hellman export cipher suites."}, "443-https-dhe_export-alexa_top1mil":
215
226
  {"port": 443, "subprotocol": "dhe_export", "protocol": "https", "name": "443-https-dhe_export-alexa_top1mil",
216
227
  "details_url": "https://www.censys.io/api/v1/data/443-https-dhe_export-alexa_top1mil",
217
- "latest_result": {"timestamp": "20171216T110837", "name": "20171216T1108",
218
- "details_url": "https://www.censys.io/api/v1/data/443-https-dhe_export-alexa_top1mil/20171216T1108"},
228
+ "latest_result": {"timestamp": "20180814T111128", "name": "20180814T1111",
229
+ "details_url": "https://www.censys.io/api/v1/data/443-https-dhe_export-alexa_top1mil/20180814T1111"},
219
230
  "destination": "alexa_top1mil", "id": "443-https-dhe_export-alexa_top1mil",
220
231
  "description": "This dataset is composed of the DNS lookups for each domain
221
232
  on the Alexa Top\r\nMillion and a TLS handshake with responsive hosts that
@@ -238,8 +249,8 @@ http_interactions:
238
249
  address space and a HTTP CONNECT to a test service and GET / of our test site."},
239
250
  "80-http-get-alexa_top1mil": {"port": 80, "subprotocol": "get", "protocol":
240
251
  "http", "name": "80-http-get-alexa_top1mil", "details_url": "https://www.censys.io/api/v1/data/80-http-get-alexa_top1mil",
241
- "latest_result": {"timestamp": "20171216T131604", "name": "20171216T1316",
242
- "details_url": "https://www.censys.io/api/v1/data/80-http-get-alexa_top1mil/20171216T1316"},
252
+ "latest_result": {"timestamp": "20180813T132025", "name": "20180813T1320",
253
+ "details_url": "https://www.censys.io/api/v1/data/80-http-get-alexa_top1mil/20180813T1320"},
243
254
  "destination": "alexa_top1mil", "id": "80-http-get-alexa_top1mil", "description":
244
255
  "This dataset is composed of the DNS lookups for each domain on the Alexa
245
256
  Top\r\nMillion and a ZGrab GET / HTTP request for the root page (e.g., http://google.com).\r\nNote:
@@ -259,15 +270,15 @@ http_interactions:
259
270
  null}, "993-imaps-rsa_export-full_ipv4": {"port": 993, "subprotocol": "rsa_export",
260
271
  "protocol": "imaps", "name": "993-imaps-rsa_export-full_ipv4", "details_url":
261
272
  "https://www.censys.io/api/v1/data/993-imaps-rsa_export-full_ipv4", "latest_result":
262
- {"timestamp": "20160425T133521", "name": "20160425T1335", "details_url": "https://www.censys.io/api/v1/data/993-imaps-rsa_export-full_ipv4/20160425T1335"},
273
+ {"timestamp": "20180118T083136", "name": "20180118T0831", "details_url": "https://www.censys.io/api/v1/data/993-imaps-rsa_export-full_ipv4/20180118T0831"},
263
274
  "destination": "full_ipv4", "id": "993-imaps-rsa_export-full_ipv4", "description":
264
275
  "This dataset is composed of a ZMap TCP SYN scan on port 993 against the public\r\nIPv4
265
276
  address space and TLS handshake with responsive hosts that only offer\r\nexport-grade
266
277
  RSA ciphers."}, "443-https-heartbleed-alexa_top1mil": {"port": 443, "subprotocol":
267
278
  "heartbleed", "protocol": "https", "name": "443-https-heartbleed-alexa_top1mil",
268
279
  "details_url": "https://www.censys.io/api/v1/data/443-https-heartbleed-alexa_top1mil",
269
- "latest_result": {"timestamp": "20171216T141542", "name": "20171216T1415",
270
- "details_url": "https://www.censys.io/api/v1/data/443-https-heartbleed-alexa_top1mil/20171216T1415"},
280
+ "latest_result": {"timestamp": "20180813T141840", "name": "20180813T1418",
281
+ "details_url": "https://www.censys.io/api/v1/data/443-https-heartbleed-alexa_top1mil/20180813T1418"},
271
282
  "destination": "alexa_top1mil", "id": "443-https-heartbleed-alexa_top1mil",
272
283
  "description": "This dataset is composed of the DNS lookups for each domain
273
284
  on the Alexa Top\r\nMillion and a safe check for whether the host\r\nis vulnerable
@@ -275,60 +286,60 @@ http_interactions:
275
286
  "443-https-rsa_export-alexa_top1mil": {"port": 443, "subprotocol": "rsa_export",
276
287
  "protocol": "https", "name": "443-https-rsa_export-alexa_top1mil", "details_url":
277
288
  "https://www.censys.io/api/v1/data/443-https-rsa_export-alexa_top1mil", "latest_result":
278
- {"timestamp": "20171216T140827", "name": "20171216T1408", "details_url": "https://www.censys.io/api/v1/data/443-https-rsa_export-alexa_top1mil/20171216T1408"},
289
+ {"timestamp": "20180813T140809", "name": "20180813T1408", "details_url": "https://www.censys.io/api/v1/data/443-https-rsa_export-alexa_top1mil/20180813T1408"},
279
290
  "destination": "alexa_top1mil", "id": "443-https-rsa_export-alexa_top1mil",
280
291
  "description": "This dataset is composed of the DNS lookups for each domain
281
292
  on the Alexa Top\r\nMillion and a TLS handshake with responsive hosts that
282
293
  only offers\r\nexport-grade RSA ciphers."}, "443-https-tls-full_ipv4": {"port":
283
294
  443, "subprotocol": "tls", "protocol": "https", "name": "443-https-tls-full_ipv4",
284
295
  "details_url": "https://www.censys.io/api/v1/data/443-https-tls-full_ipv4",
285
- "latest_result": {"timestamp": "20171215T100527", "name": "20171215T1005",
286
- "details_url": "https://www.censys.io/api/v1/data/443-https-tls-full_ipv4/20171215T1005"},
296
+ "latest_result": {"timestamp": "20180810T103418", "name": "20180810T1034",
297
+ "details_url": "https://www.censys.io/api/v1/data/443-https-tls-full_ipv4/20180810T1034"},
287
298
  "destination": "full_ipv4", "id": "443-https-tls-full_ipv4", "description":
288
299
  "This dataset is composed of TCP SYN scan on port 443 against the public\r\nIPv4
289
300
  address space and a typical looking TLS handshake that offers Chrome cipher
290
301
  suites.\r\nThis is our primary scan finding HTTPS sites."}, "47808-bacnet-device_id-full_ipv4":
291
302
  {"port": 47808, "subprotocol": "device_id", "protocol": "bacnet", "name":
292
303
  "47808-bacnet-device_id-full_ipv4", "details_url": "https://www.censys.io/api/v1/data/47808-bacnet-device_id-full_ipv4",
293
- "latest_result": {"timestamp": "20171215T120056", "name": "20171215T1200",
294
- "details_url": "https://www.censys.io/api/v1/data/47808-bacnet-device_id-full_ipv4/20171215T1200"},
304
+ "latest_result": {"timestamp": "20180810T121736", "name": "20180810T1217",
305
+ "details_url": "https://www.censys.io/api/v1/data/47808-bacnet-device_id-full_ipv4/20180810T1217"},
295
306
  "destination": "full_ipv4", "id": "47808-bacnet-device_id-full_ipv4", "description":
296
307
  "This dataset is composed of a BACNET UDP scan on port on port 47808 and then
297
308
  queries for additional information."}, "143-imap-starttls-full_ipv4": {"port":
298
309
  143, "subprotocol": "starttls", "protocol": "imap", "name": "143-imap-starttls-full_ipv4",
299
310
  "details_url": "https://www.censys.io/api/v1/data/143-imap-starttls-full_ipv4",
300
- "latest_result": {"timestamp": "20171210T224754", "name": "20171210T2247",
301
- "details_url": "https://www.censys.io/api/v1/data/143-imap-starttls-full_ipv4/20171210T2247"},
311
+ "latest_result": {"timestamp": "20180812T231751", "name": "20180812T2317",
312
+ "details_url": "https://www.censys.io/api/v1/data/143-imap-starttls-full_ipv4/20180812T2317"},
302
313
  "destination": "full_ipv4", "id": "143-imap-starttls-full_ipv4", "description":
303
314
  "This dataset is composed of a ZMap TCP SYN scan on port 143 against the public\r\nIPv4
304
315
  address space and a POP3 banner grab, STARTTLS initiation, and normal TLS\r\nhandshake."},
305
316
  "53-dns-lookup-full_ipv4": {"port": 53, "subprotocol": "lookup", "protocol":
306
317
  "dns", "name": "53-dns-lookup-full_ipv4", "details_url": "https://www.censys.io/api/v1/data/53-dns-lookup-full_ipv4",
307
- "latest_result": {"timestamp": "20171214T230425", "name": "20171214T2304",
308
- "details_url": "https://www.censys.io/api/v1/data/53-dns-lookup-full_ipv4/20171214T2304"},
318
+ "latest_result": {"timestamp": "20180812T234809", "name": "20180812T2348",
319
+ "details_url": "https://www.censys.io/api/v1/data/53-dns-lookup-full_ipv4/20180812T2348"},
309
320
  "destination": "full_ipv4", "id": "53-dns-lookup-full_ipv4", "description":
310
321
  null}, "465-smtps-tls-full_ipv4": {"port": 465, "subprotocol": "tls", "protocol":
311
322
  "smtps", "name": "465-smtps-tls-full_ipv4", "details_url": "https://www.censys.io/api/v1/data/465-smtps-tls-full_ipv4",
312
- "latest_result": {"timestamp": "20171212T225232", "name": "20171212T2252",
313
- "details_url": "https://www.censys.io/api/v1/data/465-smtps-tls-full_ipv4/20171212T2252"},
323
+ "latest_result": {"timestamp": "20180807T232228", "name": "20180807T2322",
324
+ "details_url": "https://www.censys.io/api/v1/data/465-smtps-tls-full_ipv4/20180807T2322"},
314
325
  "destination": "full_ipv4", "id": "465-smtps-tls-full_ipv4", "description":
315
326
  null}, "443-https_www-tls-alexa_top1mil": {"port": 443, "subprotocol": "tls",
316
327
  "protocol": "https_www", "name": "443-https_www-tls-alexa_top1mil", "details_url":
317
328
  "https://www.censys.io/api/v1/data/443-https_www-tls-alexa_top1mil", "latest_result":
318
- {"timestamp": "20171216T113140", "name": "20171216T1131", "details_url": "https://www.censys.io/api/v1/data/443-https_www-tls-alexa_top1mil/20171216T1131"},
329
+ {"timestamp": "20180813T113209", "name": "20180813T1132", "details_url": "https://www.censys.io/api/v1/data/443-https_www-tls-alexa_top1mil/20180813T1132"},
319
330
  "destination": "alexa_top1mil", "id": "443-https_www-tls-alexa_top1mil", "description":
320
331
  null}, "993-imaps-tls-full_ipv4": {"port": 993, "subprotocol": "tls", "protocol":
321
332
  "imaps", "name": "993-imaps-tls-full_ipv4", "details_url": "https://www.censys.io/api/v1/data/993-imaps-tls-full_ipv4",
322
- "latest_result": {"timestamp": "20171214T001814", "name": "20171214T0018",
323
- "details_url": "https://www.censys.io/api/v1/data/993-imaps-tls-full_ipv4/20171214T0018"},
333
+ "latest_result": {"timestamp": "20180809T004920", "name": "20180809T0049",
334
+ "details_url": "https://www.censys.io/api/v1/data/993-imaps-tls-full_ipv4/20180809T0049"},
324
335
  "destination": "full_ipv4", "id": "993-imaps-tls-full_ipv4", "description":
325
336
  "This dataset is composed of a ZMap TCP SYN scan on port 993 against the public\r\nIPv4
326
337
  address space and a TLS handshake and IMAP banner grab with responsive hosts.\r\nThis
327
338
  is our primary scan for measuring IMAPS deployment."}, "25-smtp-starttls-full_ipv4":
328
339
  {"port": 25, "subprotocol": "starttls", "protocol": "smtp", "name": "25-smtp-starttls-full_ipv4",
329
340
  "details_url": "https://www.censys.io/api/v1/data/25-smtp-starttls-full_ipv4",
330
- "latest_result": {"timestamp": "20171217T001304", "name": "20171217T0013",
331
- "details_url": "https://www.censys.io/api/v1/data/25-smtp-starttls-full_ipv4/20171217T0013"},
341
+ "latest_result": {"timestamp": "20180812T004712", "name": "20180812T0047",
342
+ "details_url": "https://www.censys.io/api/v1/data/25-smtp-starttls-full_ipv4/20180812T0047"},
332
343
  "destination": "full_ipv4", "id": "25-smtp-starttls-full_ipv4", "description":
333
344
  "This dataset is composed of a ZMap TCP SYN scan on port 25 against the public\r\nIPv4
334
345
  address space and an SMTP Banner Grab, STARTTLS handshake, and complete\r\nTLS
@@ -336,16 +347,16 @@ http_interactions:
336
347
  measuring the adoption of STARTTLS."}, "21-ftp-banner-full_ipv4": {"port":
337
348
  21, "subprotocol": "banner", "protocol": "ftp", "name": "21-ftp-banner-full_ipv4",
338
349
  "details_url": "https://www.censys.io/api/v1/data/21-ftp-banner-full_ipv4",
339
- "latest_result": {"timestamp": "20171211T223147", "name": "20171211T2231",
340
- "details_url": "https://www.censys.io/api/v1/data/21-ftp-banner-full_ipv4/20171211T2231"},
350
+ "latest_result": {"timestamp": "20180806T230503", "name": "20180806T2305",
351
+ "details_url": "https://www.censys.io/api/v1/data/21-ftp-banner-full_ipv4/20180806T2305"},
341
352
  "destination": "full_ipv4", "id": "21-ftp-banner-full_ipv4", "description":
342
353
  "This dataset is composed of a ZMap TCP SYN scan of the IPv4 address space\r\non
343
354
  port 21 and a ZGrab FTP Banner Grab for the for responsive hosts.\r\nThe connection
344
355
  is terminated after a banner has been received."}, "443-https-dhe_export-1%_sample_ipv4":
345
356
  {"port": 443, "subprotocol": "dhe_export", "protocol": "https", "name": "443-https-dhe_export-1%_sample_ipv4",
346
357
  "details_url": "https://www.censys.io/api/v1/data/443-https-dhe_export-1%_sample_ipv4",
347
- "latest_result": {"timestamp": "20171217T041458", "name": "20171217T0414",
348
- "details_url": "https://www.censys.io/api/v1/data/443-https-dhe_export-1%_sample_ipv4/20171217T0414"},
358
+ "latest_result": {"timestamp": "20180813T041522", "name": "20180813T0415",
359
+ "details_url": "https://www.censys.io/api/v1/data/443-https-dhe_export-1%_sample_ipv4/20180813T0415"},
349
360
  "destination": "1%_sample_ipv4", "id": "443-https-dhe_export-1%_sample_ipv4",
350
361
  "description": "This dataset is composed of a ZMap TCP SYN scan on port 443
351
362
  against a random 1% sample\r\nof the IPv4 address space and a TLS handshake
@@ -353,80 +364,86 @@ http_interactions:
353
364
  suites."}, "443-https-rsa_export-1%_sample_ipv4": {"port": 443, "subprotocol":
354
365
  "rsa_export", "protocol": "https", "name": "443-https-rsa_export-1%_sample_ipv4",
355
366
  "details_url": "https://www.censys.io/api/v1/data/443-https-rsa_export-1%_sample_ipv4",
356
- "latest_result": {"timestamp": "20171217T041459", "name": "20171217T0414",
357
- "details_url": "https://www.censys.io/api/v1/data/443-https-rsa_export-1%_sample_ipv4/20171217T0414"},
367
+ "latest_result": {"timestamp": "20180813T041524", "name": "20180813T0415",
368
+ "details_url": "https://www.censys.io/api/v1/data/443-https-rsa_export-1%_sample_ipv4/20180813T0415"},
358
369
  "destination": "1%_sample_ipv4", "id": "443-https-rsa_export-1%_sample_ipv4",
359
370
  "description": "This dataset is composed of a ZMap TCP SYN scan on port 443
360
371
  against a random 1% sample\r\nof the IPv4 address space and a TLS handshake
361
372
  with responsive hosts that only offers\r\nexport-grade RSA ciphers."}, "502-modbus-device_id-full_ipv4":
362
373
  {"port": 502, "subprotocol": "device_id", "protocol": "modbus", "name": "502-modbus-device_id-full_ipv4",
363
374
  "details_url": "https://www.censys.io/api/v1/data/502-modbus-device_id-full_ipv4",
364
- "latest_result": {"timestamp": "20171217T080113", "name": "20171217T0801",
365
- "details_url": "https://www.censys.io/api/v1/data/502-modbus-device_id-full_ipv4/20171217T0801"},
375
+ "latest_result": {"timestamp": "20180812T083421", "name": "20180812T0834",
376
+ "details_url": "https://www.censys.io/api/v1/data/502-modbus-device_id-full_ipv4/20180812T0834"},
366
377
  "destination": "full_ipv4", "id": "502-modbus-device_id-full_ipv4", "description":
367
378
  "This dataset is composed of a ZMap TCP SYN scan on port 502 against the public\r\nIPv4
368
379
  address space and a modbus MEI DEVICE ID query with responsive hosts."}, "445-smb-banner-full_ipv4":
369
380
  {"port": 445, "subprotocol": "banner", "protocol": "smb", "name": "445-smb-banner-full_ipv4",
370
381
  "details_url": "https://www.censys.io/api/v1/data/445-smb-banner-full_ipv4",
371
- "latest_result": {"timestamp": "20171213T210120", "name": "20171213T2101",
372
- "details_url": "https://www.censys.io/api/v1/data/445-smb-banner-full_ipv4/20171213T2101"},
382
+ "latest_result": {"timestamp": "20180808T213428", "name": "20180808T2134",
383
+ "details_url": "https://www.censys.io/api/v1/data/445-smb-banner-full_ipv4/20180808T2134"},
373
384
  "destination": "full_ipv4", "id": "445-smb-banner-full_ipv4", "description":
374
385
  null}, "995-pop3s-tls-full_ipv4": {"port": 995, "subprotocol": "tls", "protocol":
375
386
  "pop3s", "name": "995-pop3s-tls-full_ipv4", "details_url": "https://www.censys.io/api/v1/data/995-pop3s-tls-full_ipv4",
376
- "latest_result": {"timestamp": "20171216T001637", "name": "20171216T0016",
377
- "details_url": "https://www.censys.io/api/v1/data/995-pop3s-tls-full_ipv4/20171216T0016"},
387
+ "latest_result": {"timestamp": "20180811T005002", "name": "20180811T0050",
388
+ "details_url": "https://www.censys.io/api/v1/data/995-pop3s-tls-full_ipv4/20180811T0050"},
378
389
  "destination": "full_ipv4", "id": "995-pop3s-tls-full_ipv4", "description":
379
390
  "This dataset is composed of a ZMap TCP SYN scan on port 995 against the public\r\nIPv4
380
391
  address space and a TLS handshake and POP3 banner grab.\r\nThis is our primary
381
392
  scan for measuring POP3S deployment."}, "443-https-rsa_export-full_ipv4":
382
393
  {"port": 443, "subprotocol": "rsa_export", "protocol": "https", "name": "443-https-rsa_export-full_ipv4",
383
394
  "details_url": "https://www.censys.io/api/v1/data/443-https-rsa_export-full_ipv4",
384
- "latest_result": {"timestamp": "20171214T223729", "name": "20171214T2237",
385
- "details_url": "https://www.censys.io/api/v1/data/443-https-rsa_export-full_ipv4/20171214T2237"},
395
+ "latest_result": {"timestamp": "20180809T231031", "name": "20180809T2310",
396
+ "details_url": "https://www.censys.io/api/v1/data/443-https-rsa_export-full_ipv4/20180809T2310"},
386
397
  "destination": "full_ipv4", "id": "443-https-rsa_export-full_ipv4", "description":
387
398
  "This dataset is composed of a ZMap TCP SYN scan on port 80 against the public\r\nIPv4
388
399
  address space and TLS handshake with responsive hosts that only offers\r\nexport-grade
389
400
  RSA ciphers."}, "443-https-ssl_3-alexa_top1mil": {"port": 443, "subprotocol":
390
401
  "ssl_3", "protocol": "https", "name": "443-https-ssl_3-alexa_top1mil", "details_url":
391
402
  "https://www.censys.io/api/v1/data/443-https-ssl_3-alexa_top1mil", "latest_result":
392
- {"timestamp": "20171216T150904", "name": "20171216T1509", "details_url": "https://www.censys.io/api/v1/data/443-https-ssl_3-alexa_top1mil/20171216T1509"},
403
+ {"timestamp": "20180813T150842", "name": "20180813T1508", "details_url": "https://www.censys.io/api/v1/data/443-https-ssl_3-alexa_top1mil/20180813T1508"},
393
404
  "destination": "alexa_top1mil", "id": "443-https-ssl_3-alexa_top1mil", "description":
394
405
  "This dataset is composed of the DNS lookups for each domain on the Alexa
395
406
  Top\r\nMillion and an SSLv3 handshake with responsive hosts."}, "80-http_www-get-alexa_top1mil":
396
407
  {"port": 80, "subprotocol": "get", "protocol": "http_www", "name": "80-http_www-get-alexa_top1mil",
397
408
  "details_url": "https://www.censys.io/api/v1/data/80-http_www-get-alexa_top1mil",
398
- "latest_result": {"timestamp": "20171216T160533", "name": "20171216T1605",
399
- "details_url": "https://www.censys.io/api/v1/data/80-http_www-get-alexa_top1mil/20171216T1605"},
409
+ "latest_result": {"timestamp": "20180813T163656", "name": "20180813T1636",
410
+ "details_url": "https://www.censys.io/api/v1/data/80-http_www-get-alexa_top1mil/20180813T1636"},
400
411
  "destination": "alexa_top1mil", "id": "80-http_www-get-alexa_top1mil", "description":
401
- null}, "443-https-dhe_export-full_ipv4": {"port": 443, "subprotocol": "dhe_export",
402
- "protocol": "https", "name": "443-https-dhe_export-full_ipv4", "details_url":
403
- "https://www.censys.io/api/v1/data/443-https-dhe_export-full_ipv4", "latest_result":
404
- {"timestamp": "20171214T223715", "name": "20171214T2237", "details_url": "https://www.censys.io/api/v1/data/443-https-dhe_export-full_ipv4/20171214T2237"},
412
+ null}, "1433-mssql -banner-full_ipv4": {"port": 1433, "subprotocol": "banner",
413
+ "protocol": "mssql ", "name": "1433-mssql -banner-full_ipv4", "details_url":
414
+ "https://www.censys.io/api/v1/data/1433-mssql -banner-full_ipv4", "latest_result":
415
+ {"timestamp": "20180524T151307", "name": "20180524T1513", "details_url": "https://www.censys.io/api/v1/data/1433-mssql
416
+ -banner-full_ipv4/20180524T1513"}, "destination": "full_ipv4", "id": "1433-mssql
417
+ -banner-full_ipv4", "description": null}, "443-https-dhe_export-full_ipv4":
418
+ {"port": 443, "subprotocol": "dhe_export", "protocol": "https", "name": "443-https-dhe_export-full_ipv4",
419
+ "details_url": "https://www.censys.io/api/v1/data/443-https-dhe_export-full_ipv4",
420
+ "latest_result": {"timestamp": "20180809T230840", "name": "20180809T2308",
421
+ "details_url": "https://www.censys.io/api/v1/data/443-https-dhe_export-full_ipv4/20180809T2308"},
405
422
  "destination": "full_ipv4", "id": "443-https-dhe_export-full_ipv4", "description":
406
423
  "This dataset is composed of TCP SYN scan on port 443 against the public\r\nIPv4
407
424
  address space and a TLS handshake with responsive hosts that only offers export-grade
408
425
  Diffie-Hellman \r\ncipher suites."}, "443-https-dhe-alexa_top1mil": {"port":
409
426
  443, "subprotocol": "dhe", "protocol": "https", "name": "443-https-dhe-alexa_top1mil",
410
427
  "details_url": "https://www.censys.io/api/v1/data/443-https-dhe-alexa_top1mil",
411
- "latest_result": {"timestamp": "20171216T123943", "name": "20171216T1239",
412
- "details_url": "https://www.censys.io/api/v1/data/443-https-dhe-alexa_top1mil/20171216T1239"},
428
+ "latest_result": {"timestamp": "20180813T123937", "name": "20180813T1239",
429
+ "details_url": "https://www.censys.io/api/v1/data/443-https-dhe-alexa_top1mil/20180813T1239"},
413
430
  "destination": "alexa_top1mil", "id": "443-https-dhe-alexa_top1mil", "description":
414
431
  "This dataset is composed of the DNS lookups for each domain on the Alexa
415
432
  Top\r\nMillion and a TLS handshake (on port 443) that only offers Diffie-Hellman
416
433
  cipher suites."}, "23-telnet-banner-full_ipv4": {"port": 23, "subprotocol":
417
434
  "banner", "protocol": "telnet", "name": "23-telnet-banner-full_ipv4", "details_url":
418
435
  "https://www.censys.io/api/v1/data/23-telnet-banner-full_ipv4", "latest_result":
419
- {"timestamp": "20171213T000150", "name": "20171213T0001", "details_url": "https://www.censys.io/api/v1/data/23-telnet-banner-full_ipv4/20171213T0001"},
436
+ {"timestamp": "20180808T003450", "name": "20180808T0034", "details_url": "https://www.censys.io/api/v1/data/23-telnet-banner-full_ipv4/20180808T0034"},
420
437
  "destination": "full_ipv4", "id": "23-telnet-banner-full_ipv4", "description":
421
438
  null}, "8080-http-get-full_ipv4": {"port": 8080, "subprotocol": "get", "protocol":
422
439
  "http", "name": "8080-http-get-full_ipv4", "details_url": "https://www.censys.io/api/v1/data/8080-http-get-full_ipv4",
423
- "latest_result": {"timestamp": "20171215T225328", "name": "20171215T2253",
424
- "details_url": "https://www.censys.io/api/v1/data/8080-http-get-full_ipv4/20171215T2253"},
440
+ "latest_result": {"timestamp": "20180810T232217", "name": "20180810T2322",
441
+ "details_url": "https://www.censys.io/api/v1/data/8080-http-get-full_ipv4/20180810T2322"},
425
442
  "destination": "full_ipv4", "id": "8080-http-get-full_ipv4", "description":
426
443
  null}, "443-https-tls-alexa_top1mil": {"port": 443, "subprotocol": "tls",
427
444
  "protocol": "https", "name": "443-https-tls-alexa_top1mil", "details_url":
428
445
  "https://www.censys.io/api/v1/data/443-https-tls-alexa_top1mil", "latest_result":
429
- {"timestamp": "20171216T103132", "name": "20171216T1031", "details_url": "https://www.censys.io/api/v1/data/443-https-tls-alexa_top1mil/20171216T1031"},
446
+ {"timestamp": "20180814T103207", "name": "20180814T1032", "details_url": "https://www.censys.io/api/v1/data/443-https-tls-alexa_top1mil/20180814T1032"},
430
447
  "destination": "alexa_top1mil", "id": "443-https-tls-alexa_top1mil", "description":
431
448
  "This dataset is composed of the DNS lookups for each domain on the Alexa
432
449
  Top\r\nMillion and a typical looking TLS handshake that offers Chrome cipher
@@ -438,17 +455,17 @@ http_interactions:
438
455
  "destination": "full_ipv4", "id": "995-pop3s-ssl_2-full_ipv4", "description":
439
456
  null}, "7547-cwmp-get-full_ipv4": {"port": 7547, "subprotocol": "get", "protocol":
440
457
  "cwmp", "name": "7547-cwmp-get-full_ipv4", "details_url": "https://www.censys.io/api/v1/data/7547-cwmp-get-full_ipv4",
441
- "latest_result": {"timestamp": "20171213T223618", "name": "20171213T2236",
442
- "details_url": "https://www.censys.io/api/v1/data/7547-cwmp-get-full_ipv4/20171213T2236"},
458
+ "latest_result": {"timestamp": "20180808T230941", "name": "20180808T2309",
459
+ "details_url": "https://www.censys.io/api/v1/data/7547-cwmp-get-full_ipv4/20180808T2309"},
443
460
  "destination": "full_ipv4", "id": "7547-cwmp-get-full_ipv4", "description":
444
461
  "This dataset is composed of a ZMap TCP SYN scan on port 7457 against the
445
462
  public\r\nIPv4 address space and CPE WAN Management Protocol (CWMP) GET /."},
446
463
  "8888-http-get-full_ipv4": {"port": 8888, "subprotocol": "get", "protocol":
447
464
  "http", "name": "8888-http-get-full_ipv4", "details_url": "https://www.censys.io/api/v1/data/8888-http-get-full_ipv4",
448
- "latest_result": {"timestamp": "20171210T223213", "name": "20171210T2232",
449
- "details_url": "https://www.censys.io/api/v1/data/8888-http-get-full_ipv4/20171210T2232"},
465
+ "latest_result": {"timestamp": "20180812T230635", "name": "20180812T2306",
466
+ "details_url": "https://www.censys.io/api/v1/data/8888-http-get-full_ipv4/20180812T2306"},
450
467
  "destination": "full_ipv4", "id": "8888-http-get-full_ipv4", "description":
451
468
  null}}}'
452
469
  http_version:
453
- recorded_at: Sun, 17 Dec 2017 13:29:17 GMT
470
+ recorded_at: Thu, 13 Sep 2018 11:26:00 GMT
454
471
  recorded_with: VCR 4.0.0