Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added UDP Output to be consumed by Logstash #45

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,8 @@ github_access_tokens: # provide at least one token
- 'token two'
webhook: '' # URL to a POST webhook.
webhook_payload: '' # Payload to POST to the webhook URL
logstash: '' # IP Address for Logstash Instance (UDP)
logstash_port: '' # Listen Packet Port
blacklisted_extensions: [] # list of extensions to ignore
blacklisted_paths: [] # list of paths to ignore
blacklisted_entropy_extensions: [] # additional extensions to ignore for entropy checks
Expand Down
3 changes: 3 additions & 0 deletions config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ github_access_tokens:
- ''
webhook: '' # URL to which the payload is POSTed

logstash: '' # IP Address for Logstash Instance (UDP)
logstash_port: '' # Listen Packet Port

# This default payload will work for Slack and MatterMost.
# Consult your webhook API for additional configurations.
webhook_payload: |
Expand Down
6 changes: 6 additions & 0 deletions core/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ type Config struct {
GitHubAccessTokens []string `yaml:"github_access_tokens"`
Webhook string `yaml:"webhook,omitempty"`
WebhookPayload string `yaml:"webhook_payload,omitempty"`
Logstash string `yaml:"logstash,omitempty"`
LogstashPort string `yaml:"logstash_port,omitempty"`
BlacklistedExtensions []string `yaml:"blacklisted_extensions"`
BlacklistedPaths []string `yaml:"blacklisted_paths"`
BlacklistedEntropyExtensions []string `yaml:"blacklisted_entropy_extensions"`
Expand Down Expand Up @@ -72,6 +74,10 @@ func ParseConfig(options *Options) (*Config, error) {
if len(config.Webhook) > 0 {
config.Webhook = os.ExpandEnv(config.Webhook)
}

if len(config.Logstash) > 0 {
config.Logstash = os.ExpandEnv(config.Logstash)
}

return config, nil
}
Expand Down
20 changes: 19 additions & 1 deletion core/log.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package core
import (
"fmt"
"net/http"
"net"
"os"
"regexp"
"strings"
Expand Down Expand Up @@ -66,7 +67,24 @@ func (l *Logger) Log(level int, format string, args ...interface{}) {
payload := fmt.Sprintf(session.Config.WebhookPayload, text)
http.Post(session.Config.Webhook, "application/json", strings.NewReader(payload))
}


if session.Config.Logstash != "" {
text := colorStrip(fmt.Sprintf(format, args...))
payload := fmt.Sprintf(session.Config.Logstash, text)
pc, err := net.ListenPacket("udp4", ":" + session.Config.LogstashPort)
if err != nil {
panic(err)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think it should panic out "just" because the logstash session has an error.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's fair, I can get those removed and pushed to the branch.

}
defer pc.Close()

addr,err := net.ResolveUDPAddr("udp4", session.Config.Logstash)
if err != nil {
panic(err)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Probably also not panic because of a logstash connection

}

pc.WriteTo([]byte(payload), addr)
}

if level == FATAL {
os.Exit(1)
}
Expand Down
2 changes: 2 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
module github.com/eth0izzle/shhgit

go 1.14

require (
github.com/fatih/color v1.7.0
github.com/google/go-github v17.0.0+incompatible
Expand Down
29 changes: 29 additions & 0 deletions logstash/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Logstash Configuration

## 1. Install ElasticSearch, Kibana, and Logstash
- Follow the instructions on Elastic's website: https://www.elastic.co/guide/en/elastic-stack-get-started/current/get-started-elastic-stack.html

## 2. Configure Logstash

In the folder logstash/config/01-shhgit-pipeline.conf is a working example with a few Grok rules to process the incoming messages from shhgit. These Grok rules are imperfect, but should provide a starting point to improve upon.

- 01-shhgit-pipeline.conf should be placed in the Logstash /etc/logstash/conf.d directory.
- Update the output elasticsearch to point to your elasticsearch cluster

## 3. Configure Kibana

### Configure Pattern
- Click the gear icon (management) in the lower left
- Click Kibana -> Index Patters
- Click Create New Index Pattern
- Type "shhgit-*" into the input box, then click Next Step

### Import Dashboard
In your web browser go to Kibana's IP using port 5601 (ex: 192.168.0.1:5601)
- Click Management -> Saved Objects
- You can import the dashboard found in the dashboard folder via the Import button in the top-right corner.
- shhgit Dashboard

## TODO
- Clean up Grok Rules
- Add additional Grok Rules
100 changes: 100 additions & 0 deletions logstash/config/01-shhgit-pipeline.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,100 @@
input {
udp {
port => 8080
}
}

filter {

if "Matching file" in [message] {
grok {
match => { "message" => "\[%{GREEDYDATA:location}\] Matching %{WORD:type} %{URIPATHPARAM:path} for %{GREEDYDATA:reason}\"" }
}
}

if "match for" in [message] {
grok {
match => { "message" => "\[%{GREEDYDATA:location}\] %{NUMBER:number} match for %{GREEDYDATA:reason} in %{WORD:type} %{URIPATHPARAM:path}: %{URIPROTO:uriproto}://(?:%{USER:user}(?::%{GREEDYDATA:password}[^@]*)?@)?(?:%{URIHOST:urihost})?(?:%{URIPATHPARAM:uripathparam})?" }
}
}

if "Potential secret" in [message] {
grok {
match => { "message" => "\[%{GREEDYDATA:location}\] %{GREEDYDATA:reason} in %{URIPATHPARAM:path} =%{SPACE}%{GREEDYDATA:secret}\"" }
}
}

if "matches for" in [message] {
grok {
match => { "message" => "\[%{GREEDYDATA:location}\] %{NUMBER:number} matches for %{GREEDYDATA:reason} in %{WORD:type} %{GREEDYDATA:paths}\"" }
}
}

if "Google OAuth Key" in [message] {
grok {
match => { "message" => "\[%{GREEDYDATA:location}\] %{NUMBER:number} matches for %{GREEDYDATA:reason} in %{WORD:type} %{GREEDYDATA:paths}\"" }
}
}

if "Google Cloud API Key" in [message] {
grok {
match => { "message" => "\[%{GREEDYDATA:location}\] %{NUMBER:number} match for %{GREEDYDATA:reason} in %{WORD:type} %{URIPATHPARAM:path}:%{SPACE}%{GREEDYDATA:key}\"" }
}
}

mutate {
split => {"paths" => "," }
}

if "Cloning in to" in [message] {
grok
{
match => { "message" => "\[%{GREEDYDATA:location}\] Cloning in to %{URIPATH:path}\"" }
add_tag => ["cloning"]
}
}

if "Failed to" in [message] {
grok
{
match => { "message" => "\"%{GREEDYDATA:errorMessage}\"" }
add_tag => ["failed"]
}
}

if "Cloning failed" in [message] {
grok
{
match => { "message" => "\"%{GREEDYDATA:errorMessage}\"" }
add_tag => ["failed"]
}
}

if "started. Loaded" in [message] {
grok
{
match => { "message" => "\"%{GREEDYDATA:errorMessage}\"" }
add_tag => ["info"]
}
}

if "calls remain" in [message] {
grok
{
match => { "message" => "\"%{GREEDYDATA:errorMessage}\"" }
add_tag => ["info"]
}
}

mutate {
rename => { "[message]" => "[original]"}
}
}

output {
elasticsearch {
id => "shhgit"
hosts => ["localhost:9200"]
index => "shhgit-%{+YYYY.MM.dd}"
}
}
13 changes: 13 additions & 0 deletions logstash/dashboard/shhgit_dashboard.ndjson

Large diffs are not rendered by default.