Adding pastebin matching + demo IOC

This commit is contained in:
Christopher Talib 2020-06-10 11:32:56 +02:00
parent fe01a9240f
commit 5d223c3886
2 changed files with 19 additions and 1 deletions

18
DEMO.md
View file

@ -15,6 +15,24 @@
}
```
```graphql
{
Node(func: has(nodes) ) {
uid
type
target
timestamp
nodes {
uid
type
full
hostnames
}
}
}
```
## Notes
* There is TOO MUCH junk data

View file

@ -157,7 +157,7 @@ func (m *Matcher) Run(wg *sync.WaitGroup, graphClient *dgo.Dgraph) {
wg.Add(1)
logrus.Info("Running matchers")
for _, target := range targets {
// go runPasteMatcher(target, graphClient)
go runPasteMatcher(target, graphClient)
go runCertstreamMatcher(target, graphClient)
go runShodanMatcher(target, graphClient)
}