Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/abadojack/gocensys
Go library for interacting with Censys
https://github.com/abadojack/gocensys
Last synced: about 7 hours ago
JSON representation
Go library for interacting with Censys
- Host: GitHub
- URL: https://github.com/abadojack/gocensys
- Owner: abadojack
- License: lgpl-3.0
- Created: 2016-06-28T21:29:18.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-10-25T19:22:49.000Z (about 8 years ago)
- Last Synced: 2024-06-20T11:59:59.480Z (5 months ago)
- Language: Go
- Homepage:
- Size: 16.6 KB
- Stars: 8
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-ip-search-engines - GoCensys
README
## gocensys
[![Build Status](https://travis-ci.org/abadojack/gocensys.svg?branch=master)](https://travis-ci.org/abadojack/gocensys) [![GoDoc](https://godoc.org/github.com/abadojack/gocensys?status.png)](http://godoc.org/github.com/abadojack/gocensys)
gocensys is a simple Go package for accessing the [Censys API](https://www.censys.io/api).
Successful API queries return native Go structs that can be used immediately,
with no need for type assertions.gocensys implements endpoints defined in the documentation: https://www.censys.io/api.
More detailed information about the behavior of each particular endpoint can be found at the official documentation.## Installation
$ go get -u github.com/abadojack/gocensys
## Usage
```Go
import "github.com/abadojack/gocensys"
```## Authentication
HTTP basic auth is required using the API ID and secret that are shown under [My Account](https://www.censys.io/account).
```Go
api := gocensys.NewCensysAPI("your-uid", "your-secret", nil)
```## Queries
Executing queries on an authenticated CensysAPI struct is simple.
```Go
queryJob, err := api.StartQueryJob("select p110.pop3.ssl_2.certificate.parsed.issuer.province from ipv4.20160708 limit 1000;")
if err != nil {
log.Fatal(err)
}fmt.Println(queryJob.JobID)
```## Licence
gocensys is free software licenced under the GNU LGPL licence. Details are provided in the LICENCE file.