├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── feed_config.json ├── go.mod ├── helpers ├── helpers.go ├── ipNetGen.go ├── maxmind.go ├── network.go ├── network_test.go ├── threatIntel.go └── whois.go ├── images ├── azure_audit_enrich.png ├── azure_audit_enrich_dns.png ├── azure_audit_enrich_expand.png ├── azure_audit_enrich_ti.png ├── cloudtrail_parse.png ├── convert_CLF_logs.png ├── gz_parsing.png ├── json_line_logging.png ├── kv_firewall_logs.png ├── logo.png └── syslog_parsing.png ├── lbtypes └── typesMethods.go ├── main.go ├── parsers ├── parse_cef.go ├── parse_clf.go ├── parse_csv.go ├── parse_iis_w3c.go ├── parse_json.go ├── parse_json_multi.go ├── parse_kv.go ├── parse_raw.go └── parse_syslog.go ├── tldparserr ├── tld_data.go └── tld_parser.go ├── vars └── vars.go └── whois_license └── WHOIS_LICENSE /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeavanzato/LogBoost/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeavanzato/LogBoost/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeavanzato/LogBoost/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeavanzato/LogBoost/HEAD/README.md -------------------------------------------------------------------------------- /feed_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeavanzato/LogBoost/HEAD/feed_config.json -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeavanzato/LogBoost/HEAD/go.mod -------------------------------------------------------------------------------- /helpers/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeavanzato/LogBoost/HEAD/helpers/helpers.go -------------------------------------------------------------------------------- /helpers/ipNetGen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeavanzato/LogBoost/HEAD/helpers/ipNetGen.go -------------------------------------------------------------------------------- /helpers/maxmind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeavanzato/LogBoost/HEAD/helpers/maxmind.go -------------------------------------------------------------------------------- /helpers/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeavanzato/LogBoost/HEAD/helpers/network.go -------------------------------------------------------------------------------- /helpers/network_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeavanzato/LogBoost/HEAD/helpers/network_test.go -------------------------------------------------------------------------------- /helpers/threatIntel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeavanzato/LogBoost/HEAD/helpers/threatIntel.go -------------------------------------------------------------------------------- /helpers/whois.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeavanzato/LogBoost/HEAD/helpers/whois.go -------------------------------------------------------------------------------- /images/azure_audit_enrich.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeavanzato/LogBoost/HEAD/images/azure_audit_enrich.png -------------------------------------------------------------------------------- /images/azure_audit_enrich_dns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeavanzato/LogBoost/HEAD/images/azure_audit_enrich_dns.png -------------------------------------------------------------------------------- /images/azure_audit_enrich_expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeavanzato/LogBoost/HEAD/images/azure_audit_enrich_expand.png -------------------------------------------------------------------------------- /images/azure_audit_enrich_ti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeavanzato/LogBoost/HEAD/images/azure_audit_enrich_ti.png -------------------------------------------------------------------------------- /images/cloudtrail_parse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeavanzato/LogBoost/HEAD/images/cloudtrail_parse.png -------------------------------------------------------------------------------- /images/convert_CLF_logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeavanzato/LogBoost/HEAD/images/convert_CLF_logs.png -------------------------------------------------------------------------------- /images/gz_parsing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeavanzato/LogBoost/HEAD/images/gz_parsing.png -------------------------------------------------------------------------------- /images/json_line_logging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeavanzato/LogBoost/HEAD/images/json_line_logging.png -------------------------------------------------------------------------------- /images/kv_firewall_logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeavanzato/LogBoost/HEAD/images/kv_firewall_logs.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeavanzato/LogBoost/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/syslog_parsing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeavanzato/LogBoost/HEAD/images/syslog_parsing.png -------------------------------------------------------------------------------- /lbtypes/typesMethods.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeavanzato/LogBoost/HEAD/lbtypes/typesMethods.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeavanzato/LogBoost/HEAD/main.go -------------------------------------------------------------------------------- /parsers/parse_cef.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeavanzato/LogBoost/HEAD/parsers/parse_cef.go -------------------------------------------------------------------------------- /parsers/parse_clf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeavanzato/LogBoost/HEAD/parsers/parse_clf.go -------------------------------------------------------------------------------- /parsers/parse_csv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeavanzato/LogBoost/HEAD/parsers/parse_csv.go -------------------------------------------------------------------------------- /parsers/parse_iis_w3c.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeavanzato/LogBoost/HEAD/parsers/parse_iis_w3c.go -------------------------------------------------------------------------------- /parsers/parse_json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeavanzato/LogBoost/HEAD/parsers/parse_json.go -------------------------------------------------------------------------------- /parsers/parse_json_multi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeavanzato/LogBoost/HEAD/parsers/parse_json_multi.go -------------------------------------------------------------------------------- /parsers/parse_kv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeavanzato/LogBoost/HEAD/parsers/parse_kv.go -------------------------------------------------------------------------------- /parsers/parse_raw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeavanzato/LogBoost/HEAD/parsers/parse_raw.go -------------------------------------------------------------------------------- /parsers/parse_syslog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeavanzato/LogBoost/HEAD/parsers/parse_syslog.go -------------------------------------------------------------------------------- /tldparserr/tld_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeavanzato/LogBoost/HEAD/tldparserr/tld_data.go -------------------------------------------------------------------------------- /tldparserr/tld_parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeavanzato/LogBoost/HEAD/tldparserr/tld_parser.go -------------------------------------------------------------------------------- /vars/vars.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeavanzato/LogBoost/HEAD/vars/vars.go -------------------------------------------------------------------------------- /whois_license/WHOIS_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeavanzato/LogBoost/HEAD/whois_license/WHOIS_LICENSE --------------------------------------------------------------------------------