Skip to content

Commit ecfe962

Browse files
committed
remove deprecated google driver
Fixes #9
1 parent 26bc05e commit ecfe962

4 files changed

Lines changed: 1 addition & 233 deletions

File tree

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ OPTIONS:
3535
-dns
3636
check for DNS records to determine if domain is registered
3737
-driver string
38-
driver(s) to use [censys, crtsh, google, http, smtp] (default "http")
38+
driver(s) to use [censys, crtsh, http, smtp] (default "http")
3939
-json
4040
print the graph as json, can be used for graph in web UI
4141
-parallel uint
@@ -70,7 +70,6 @@ CertGraph has multiple options for querying SSL certificates. The driver is resp
7070

7171
* **crtsh** this driver searches Certificate Transparency logs via [crt.sh](https://crt.sh/). No packets are sent to any of the domains when using this driver
7272

73-
* **google** this is another Certificate Transparency driver that behaves like *crtsh* but uses the [Google Certificate Transparency Lookup Tool](https://transparencyreport.google.com/https/certificates)
7473

7574
## Example
7675

certgraph.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ import (
1818
"github.com/lanrat/certgraph/driver"
1919
"github.com/lanrat/certgraph/driver/censys"
2020
"github.com/lanrat/certgraph/driver/crtsh"
21-
"github.com/lanrat/certgraph/driver/google"
2221
"github.com/lanrat/certgraph/driver/http"
2322
"github.com/lanrat/certgraph/driver/multi"
2423
"github.com/lanrat/certgraph/driver/smtp"
@@ -209,8 +208,6 @@ func getDriverSingle(name string) (driver.Driver, error) {
209208
var err error
210209
var d driver.Driver
211210
switch name {
212-
case "google":
213-
d, err = google.Driver(50, config.savePath, config.includeCTSubdomains, config.includeCTExpired)
214211
case "crtsh":
215212
d, err = crtsh.Driver(1000, config.timeout, config.savePath, config.includeCTSubdomains, config.includeCTExpired)
216213
case "http":

driver/censys/censys.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
// Package censys file implements a client to search Censys's CT database
22
// Certificate Transparency search
3-
// https://transparencyreport.google.com/https/certificates
43
//
54
// As the API is unofficial and has been reverse engineered it may stop working
65
// at any time and comes with no guarantees.

driver/google/google.go

Lines changed: 0 additions & 227 deletions
This file was deleted.

0 commit comments

Comments
 (0)