├── .github └── dependabot.yml ├── .revive.toml ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── generator ├── dns_query.go ├── dns_query_test.go ├── ip_traffic.go ├── ip_traffic_test.go ├── rules.go └── rules_test.go ├── go.mod ├── go.sum ├── main.go └── vendor ├── github.com ├── alecthomas │ ├── template │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── exec.go │ │ ├── funcs.go │ │ ├── helper.go │ │ ├── parse │ │ │ ├── lex.go │ │ │ ├── node.go │ │ │ └── parse.go │ │ └── template.go │ └── units │ │ ├── COPYING │ │ ├── README.md │ │ ├── bytes.go │ │ ├── doc.go │ │ ├── si.go │ │ └── util.go ├── apex │ └── log │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── Readme.md │ │ ├── default.go │ │ ├── doc.go │ │ ├── entry.go │ │ ├── handlers │ │ └── cli │ │ │ └── cli.go │ │ ├── interface.go │ │ ├── levels.go │ │ ├── logger.go │ │ ├── pkg.go │ │ └── stack.go ├── asaskevich │ └── govalidator │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── arrays.go │ │ ├── converter.go │ │ ├── error.go │ │ ├── numerics.go │ │ ├── patterns.go │ │ ├── types.go │ │ ├── utils.go │ │ ├── validator.go │ │ └── wercker.yml ├── davecgh │ └── go-spew │ │ ├── LICENSE │ │ └── spew │ │ ├── bypass.go │ │ ├── bypasssafe.go │ │ ├── common.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── dump.go │ │ ├── format.go │ │ └── spew.go ├── google │ └── gonids │ │ ├── CONTRIBUTING │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lex.go │ │ ├── parser.go │ │ └── rule.go ├── pkg │ └── errors │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── errors.go │ │ └── stack.go ├── pmezard │ └── go-difflib │ │ ├── LICENSE │ │ └── difflib │ │ └── difflib.go └── stretchr │ └── testify │ ├── LICENSE │ └── assert │ ├── assertion_forward.go │ ├── assertion_forward.go.tmpl │ ├── assertions.go │ ├── doc.go │ ├── errors.go │ ├── forward_assertions.go │ └── http_assertions.go ├── gopkg.in └── alecthomas │ └── kingpin.v2 │ ├── .travis.yml │ ├── COPYING │ ├── README.md │ ├── actions.go │ ├── app.go │ ├── args.go │ ├── cmd.go │ ├── completions.go │ ├── doc.go │ ├── envar.go │ ├── flags.go │ ├── global.go │ ├── guesswidth.go │ ├── guesswidth_unix.go │ ├── model.go │ ├── parser.go │ ├── parsers.go │ ├── templates.go │ ├── usage.go │ ├── values.go │ ├── values.json │ └── values_generated.go └── modules.txt /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.revive.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/.revive.toml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/README.md -------------------------------------------------------------------------------- /generator/dns_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/generator/dns_query.go -------------------------------------------------------------------------------- /generator/dns_query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/generator/dns_query_test.go -------------------------------------------------------------------------------- /generator/ip_traffic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/generator/ip_traffic.go -------------------------------------------------------------------------------- /generator/ip_traffic_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/generator/ip_traffic_test.go -------------------------------------------------------------------------------- /generator/rules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/generator/rules.go -------------------------------------------------------------------------------- /generator/rules_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/generator/rules_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/main.go -------------------------------------------------------------------------------- /vendor/github.com/alecthomas/template/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/alecthomas/template/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/alecthomas/template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/alecthomas/template/README.md -------------------------------------------------------------------------------- /vendor/github.com/alecthomas/template/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/alecthomas/template/doc.go -------------------------------------------------------------------------------- /vendor/github.com/alecthomas/template/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/alecthomas/template/exec.go -------------------------------------------------------------------------------- /vendor/github.com/alecthomas/template/funcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/alecthomas/template/funcs.go -------------------------------------------------------------------------------- /vendor/github.com/alecthomas/template/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/alecthomas/template/helper.go -------------------------------------------------------------------------------- /vendor/github.com/alecthomas/template/parse/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/alecthomas/template/parse/lex.go -------------------------------------------------------------------------------- /vendor/github.com/alecthomas/template/parse/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/alecthomas/template/parse/node.go -------------------------------------------------------------------------------- /vendor/github.com/alecthomas/template/parse/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/alecthomas/template/parse/parse.go -------------------------------------------------------------------------------- /vendor/github.com/alecthomas/template/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/alecthomas/template/template.go -------------------------------------------------------------------------------- /vendor/github.com/alecthomas/units/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/alecthomas/units/COPYING -------------------------------------------------------------------------------- /vendor/github.com/alecthomas/units/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/alecthomas/units/README.md -------------------------------------------------------------------------------- /vendor/github.com/alecthomas/units/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/alecthomas/units/bytes.go -------------------------------------------------------------------------------- /vendor/github.com/alecthomas/units/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/alecthomas/units/doc.go -------------------------------------------------------------------------------- /vendor/github.com/alecthomas/units/si.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/alecthomas/units/si.go -------------------------------------------------------------------------------- /vendor/github.com/alecthomas/units/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/alecthomas/units/util.go -------------------------------------------------------------------------------- /vendor/github.com/apex/log/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/apex/log/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/apex/log/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/apex/log/Makefile -------------------------------------------------------------------------------- /vendor/github.com/apex/log/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/apex/log/Readme.md -------------------------------------------------------------------------------- /vendor/github.com/apex/log/default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/apex/log/default.go -------------------------------------------------------------------------------- /vendor/github.com/apex/log/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/apex/log/doc.go -------------------------------------------------------------------------------- /vendor/github.com/apex/log/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/apex/log/entry.go -------------------------------------------------------------------------------- /vendor/github.com/apex/log/handlers/cli/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/apex/log/handlers/cli/cli.go -------------------------------------------------------------------------------- /vendor/github.com/apex/log/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/apex/log/interface.go -------------------------------------------------------------------------------- /vendor/github.com/apex/log/levels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/apex/log/levels.go -------------------------------------------------------------------------------- /vendor/github.com/apex/log/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/apex/log/logger.go -------------------------------------------------------------------------------- /vendor/github.com/apex/log/pkg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/apex/log/pkg.go -------------------------------------------------------------------------------- /vendor/github.com/apex/log/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/apex/log/stack.go -------------------------------------------------------------------------------- /vendor/github.com/asaskevich/govalidator/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/asaskevich/govalidator/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/asaskevich/govalidator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/asaskevich/govalidator/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/asaskevich/govalidator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/asaskevich/govalidator/README.md -------------------------------------------------------------------------------- /vendor/github.com/asaskevich/govalidator/arrays.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/asaskevich/govalidator/arrays.go -------------------------------------------------------------------------------- /vendor/github.com/asaskevich/govalidator/converter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/asaskevich/govalidator/converter.go -------------------------------------------------------------------------------- /vendor/github.com/asaskevich/govalidator/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/asaskevich/govalidator/error.go -------------------------------------------------------------------------------- /vendor/github.com/asaskevich/govalidator/numerics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/asaskevich/govalidator/numerics.go -------------------------------------------------------------------------------- /vendor/github.com/asaskevich/govalidator/patterns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/asaskevich/govalidator/patterns.go -------------------------------------------------------------------------------- /vendor/github.com/asaskevich/govalidator/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/asaskevich/govalidator/types.go -------------------------------------------------------------------------------- /vendor/github.com/asaskevich/govalidator/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/asaskevich/govalidator/utils.go -------------------------------------------------------------------------------- /vendor/github.com/asaskevich/govalidator/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/asaskevich/govalidator/validator.go -------------------------------------------------------------------------------- /vendor/github.com/asaskevich/govalidator/wercker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/asaskevich/govalidator/wercker.yml -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/davecgh/go-spew/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/bypass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/davecgh/go-spew/spew/bypass.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/bypasssafe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/davecgh/go-spew/spew/bypasssafe.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/davecgh/go-spew/spew/common.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/davecgh/go-spew/spew/config.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/davecgh/go-spew/spew/doc.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/dump.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/davecgh/go-spew/spew/dump.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/davecgh/go-spew/spew/format.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/spew.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/davecgh/go-spew/spew/spew.go -------------------------------------------------------------------------------- /vendor/github.com/google/gonids/CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/google/gonids/CONTRIBUTING -------------------------------------------------------------------------------- /vendor/github.com/google/gonids/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/google/gonids/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/gonids/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/google/gonids/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/gonids/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/google/gonids/lex.go -------------------------------------------------------------------------------- /vendor/github.com/google/gonids/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/google/gonids/parser.go -------------------------------------------------------------------------------- /vendor/github.com/google/gonids/rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/google/gonids/rule.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/pkg/errors/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/pkg/errors/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/pkg/errors/README.md -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/pkg/errors/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/pkg/errors/errors.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/pkg/errors/stack.go -------------------------------------------------------------------------------- /vendor/github.com/pmezard/go-difflib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/pmezard/go-difflib/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pmezard/go-difflib/difflib/difflib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/pmezard/go-difflib/difflib/difflib.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/stretchr/testify/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertion_forward.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/stretchr/testify/assert/assertion_forward.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertion_forward.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/stretchr/testify/assert/assertion_forward.go.tmpl -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/stretchr/testify/assert/assertions.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/stretchr/testify/assert/doc.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/stretchr/testify/assert/errors.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/forward_assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/stretchr/testify/assert/forward_assertions.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/http_assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/github.com/stretchr/testify/assert/http_assertions.go -------------------------------------------------------------------------------- /vendor/gopkg.in/alecthomas/kingpin.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/gopkg.in/alecthomas/kingpin.v2/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/alecthomas/kingpin.v2/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/gopkg.in/alecthomas/kingpin.v2/COPYING -------------------------------------------------------------------------------- /vendor/gopkg.in/alecthomas/kingpin.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/gopkg.in/alecthomas/kingpin.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/alecthomas/kingpin.v2/actions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/gopkg.in/alecthomas/kingpin.v2/actions.go -------------------------------------------------------------------------------- /vendor/gopkg.in/alecthomas/kingpin.v2/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/gopkg.in/alecthomas/kingpin.v2/app.go -------------------------------------------------------------------------------- /vendor/gopkg.in/alecthomas/kingpin.v2/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/gopkg.in/alecthomas/kingpin.v2/args.go -------------------------------------------------------------------------------- /vendor/gopkg.in/alecthomas/kingpin.v2/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/gopkg.in/alecthomas/kingpin.v2/cmd.go -------------------------------------------------------------------------------- /vendor/gopkg.in/alecthomas/kingpin.v2/completions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/gopkg.in/alecthomas/kingpin.v2/completions.go -------------------------------------------------------------------------------- /vendor/gopkg.in/alecthomas/kingpin.v2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/gopkg.in/alecthomas/kingpin.v2/doc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/alecthomas/kingpin.v2/envar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/gopkg.in/alecthomas/kingpin.v2/envar.go -------------------------------------------------------------------------------- /vendor/gopkg.in/alecthomas/kingpin.v2/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/gopkg.in/alecthomas/kingpin.v2/flags.go -------------------------------------------------------------------------------- /vendor/gopkg.in/alecthomas/kingpin.v2/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/gopkg.in/alecthomas/kingpin.v2/global.go -------------------------------------------------------------------------------- /vendor/gopkg.in/alecthomas/kingpin.v2/guesswidth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/gopkg.in/alecthomas/kingpin.v2/guesswidth.go -------------------------------------------------------------------------------- /vendor/gopkg.in/alecthomas/kingpin.v2/guesswidth_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/gopkg.in/alecthomas/kingpin.v2/guesswidth_unix.go -------------------------------------------------------------------------------- /vendor/gopkg.in/alecthomas/kingpin.v2/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/gopkg.in/alecthomas/kingpin.v2/model.go -------------------------------------------------------------------------------- /vendor/gopkg.in/alecthomas/kingpin.v2/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/gopkg.in/alecthomas/kingpin.v2/parser.go -------------------------------------------------------------------------------- /vendor/gopkg.in/alecthomas/kingpin.v2/parsers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/gopkg.in/alecthomas/kingpin.v2/parsers.go -------------------------------------------------------------------------------- /vendor/gopkg.in/alecthomas/kingpin.v2/templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/gopkg.in/alecthomas/kingpin.v2/templates.go -------------------------------------------------------------------------------- /vendor/gopkg.in/alecthomas/kingpin.v2/usage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/gopkg.in/alecthomas/kingpin.v2/usage.go -------------------------------------------------------------------------------- /vendor/gopkg.in/alecthomas/kingpin.v2/values.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/gopkg.in/alecthomas/kingpin.v2/values.go -------------------------------------------------------------------------------- /vendor/gopkg.in/alecthomas/kingpin.v2/values.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/gopkg.in/alecthomas/kingpin.v2/values.json -------------------------------------------------------------------------------- /vendor/gopkg.in/alecthomas/kingpin.v2/values_generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/gopkg.in/alecthomas/kingpin.v2/values_generated.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakewarren/suricata-rule-generator/HEAD/vendor/modules.txt --------------------------------------------------------------------------------