Skip to content

Latest commit

 

History

History
17 lines (15 loc) · 439 Bytes

README.md

File metadata and controls

17 lines (15 loc) · 439 Bytes

Certificate Transparency

Retrieves the entries from all supported known CT logs, submitted after a configured date.

Run

Compile and run with golang:

go run app/ct/*.go --config config/ct.yml 

Build and run as follows

$ docker build -t ct -f app/ct/Dockerfile .
$ docker run -d \ 
  --name gollector-ct \ 
  -v config:/config \ 
  ct --config /config/ct.yml 
```