diff --git a/DEMO.md b/DEMO.md index 853f347..b37bb4a 100644 --- a/DEMO.md +++ b/DEMO.md @@ -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 diff --git a/matcher/main.go b/matcher/main.go index ef2cebc..508d7ac 100644 --- a/matcher/main.go +++ b/matcher/main.go @@ -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) }