Fix readme

This commit is contained in:
Christopher Talib 2020-02-10 10:36:36 +01:00
parent 40bfc4b01d
commit e634636768

View file

@ -12,7 +12,7 @@ go build
### Meta ### Meta
Node --<Edge>-- Node Node --[Edge]-- Node
```go ```go
type Node struct { type Node struct {
@ -37,8 +37,8 @@ type Edge struct {
### Certstream ### Certstream
Node --<Edge>-- CertNode --<Edge>-- CertStreamRaw Node --[Edge]-- CertNode --[Edge]-- CertStreamRaw
Node(domain) --<Edge>-- CertNode Node(domain) --[Edge]-- CertNode
```go ```go
@ -70,7 +70,7 @@ type CertNode struct {
### Pastebin ### Pastebin
Node --<Edge>-- PasteNode --<Edge>-- FullPaste Node --[Edge]-- PasteNode --[Edge]-- FullPaste
```go ```go
// PasteNode is a node from PasteBin. // PasteNode is a node from PasteBin.
@ -91,7 +91,7 @@ type FullPaste struct {
### Shodan ### Shodan
Node --<Edge>-- ShodanNode --<Edge>-- Node(s) (hostnames and domains) Node --[Edge]-- ShodanNode --[Edge]-- Node(s) (hostnames and domains)
```go ```go
type ShodanNode struct { type ShodanNode struct {
@ -108,7 +108,7 @@ type ShodanNode struct {
Balboa enrichment happens on domains and hostnames extracted from Certstream Balboa enrichment happens on domains and hostnames extracted from Certstream
and Shodan streams and the node is created only if Balboa returns data. and Shodan streams and the node is created only if Balboa returns data.
Node --<Edge>-- ShodanNode --<Edge>-- Node (domain) --<Edge>-- BalboaNode Node --[Edge]-- ShodanNode --[Edge]-- Node (domain) --[Edge]-- BalboaNode
```go ```go
type BalboaNode struct { type BalboaNode struct {