styx/README.md

156 lines
3.4 KiB
Markdown
Raw Normal View History

# Styx
## Install
```sh
go get -u gitlab.dcso.lolcat/LABS/styx
cd $GOPATH/src/gitlab.dcso.lolcat/LABS/styx
go build
./styx
```
### Example configuration:
```
certstream:
2020-02-19 10:03:49 +01:00
activated: true
pastebin:
2020-02-19 10:03:49 +01:00
activated: true
shodan:
2020-02-19 10:03:49 +01:00
activated: true
key: "SHODAN_KEY"
2020-02-12 16:54:14 +01:00
ports:
- 80
- 443
kafka:
2020-02-19 10:03:49 +01:00
activated: true
protocol: "tcp"
host: "localhost"
port: 9092
topic: "styx"
partition: 0
balboa:
2020-02-19 10:03:49 +01:00
url: http://127.0.0.1:8030
activated: true
elasticsearch:
2020-02-19 10:03:49 +01:00
activated: true
url: http://localhost:9200
index: "pastebin"
```
## Datastructure
### Meta
2020-02-10 10:36:36 +01:00
Node --[Edge]-- Node
2020-02-07 17:50:07 +01:00
```go
type Node struct {
ID string `json:"id"`
Type string `json:"type"`
Data string `json:"data"` // For plain Node, the data is the ID of another typed node or a unique value like a domain or a host name.
Created string `json:"created"`
Modified string `json:"modified"`
}
// Edge defines a relation between two nodes.
type Edge struct {
ID string `json:"id"`
NodeOneID string `json:"nodeOneID"`
NodeTwoID string `json:"nodeTwoID"`
Timestamp string `json:"timestamp"`
Source string `json:"source"`
}
```
### Certstream
2020-02-10 10:36:36 +01:00
Node --[Edge]-- CertNode --[Edge]-- CertStreamRaw
Node(domain) --[Edge]-- CertNode
2020-02-07 17:50:07 +01:00
```go
// CertStreamRaw is a wrapper around the stream function to unmarshall the
// data receive in a Go structure.
type CertStreamRaw struct {
ID string `json:"id"`
Type string `json:"type"`
Data CertStreamStruct `json:"data"`
Created string `json:"created"`
Modified string `json:"modified"`
}
// CertNode represents our custom struct of data extraction from CertStream.
type CertNode struct {
ID string `json:"id"`
Fingerprint string `json:"fingerprint"`
NotBefore string `json:"notBefore"`
NotAfter string `json:"notAfter"`
CN string `json:"cn"`
SourceName string `json:"sourceName"`
SerialNumber string `json:"serialNumber"`
BasicConstraints string `json:"basicConstraints"`
RawUUID string `json:"rawUUID"`
Chain []CertNode `json:"chainedTo"`
}
```
### Pastebin
2020-02-10 10:36:36 +01:00
Node --[Edge]-- PasteNode --[Edge]-- FullPaste
2020-02-07 17:50:07 +01:00
```go
// PasteNode is a node from PasteBin.
type PasteNode struct {
ID string `json:"id"`
Type string `json:"type"`
Data FullPaste `json:"data"`
Created string `json:"create"`
Modified string `json:"modified"`
}
// FullPaste wrapes meta and information from Pastebin.
type FullPaste struct {
Meta PasteMeta `json:"meta"`
Full string `json:"full"`
}
```
### Shodan
2020-02-07 17:50:07 +01:00
2020-02-10 10:36:36 +01:00
Node --[Edge]-- ShodanNode --[Edge]-- Node(s) (hostnames and domains)
2020-02-07 17:50:07 +01:00
```go
type ShodanNode struct {
ID string `json:"id"`
Type string `json:"type"`
Data *shodan.HostData `json:"data"`
Created string `json:"created"`
Modified string `json:"modified"`
}
```
### Balboa
Balboa enrichment happens on domains and hostnames extracted from Certstream
and Shodan streams and the node is created only if Balboa returns data.
2020-02-10 10:36:36 +01:00
Node --[Edge]-- ShodanNode --[Edge]-- Node (domain) --[Edge]-- BalboaNode
```go
type BalboaNode struct {
ID string `json:"id"`
Type string `json:"type"`
Data []balboa.Entries `json:"data"`
Created string `json:"created"`
Modified string `json:"modified"`
}
```