├── .gitignore ├── Readme.md ├── go.mod ├── main.go └── pkg ├── general ├── args.go ├── file.go └── info.go ├── results ├── clean.go ├── enrichment.go └── extraction.go └── struct ├── configuration.go └── results.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsecuredcom/ffufPostprocessing/HEAD/.gitignore -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsecuredcom/ffufPostprocessing/HEAD/Readme.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsecuredcom/ffufPostprocessing/HEAD/go.mod -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsecuredcom/ffufPostprocessing/HEAD/main.go -------------------------------------------------------------------------------- /pkg/general/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsecuredcom/ffufPostprocessing/HEAD/pkg/general/args.go -------------------------------------------------------------------------------- /pkg/general/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsecuredcom/ffufPostprocessing/HEAD/pkg/general/file.go -------------------------------------------------------------------------------- /pkg/general/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsecuredcom/ffufPostprocessing/HEAD/pkg/general/info.go -------------------------------------------------------------------------------- /pkg/results/clean.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsecuredcom/ffufPostprocessing/HEAD/pkg/results/clean.go -------------------------------------------------------------------------------- /pkg/results/enrichment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsecuredcom/ffufPostprocessing/HEAD/pkg/results/enrichment.go -------------------------------------------------------------------------------- /pkg/results/extraction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsecuredcom/ffufPostprocessing/HEAD/pkg/results/extraction.go -------------------------------------------------------------------------------- /pkg/struct/configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsecuredcom/ffufPostprocessing/HEAD/pkg/struct/configuration.go -------------------------------------------------------------------------------- /pkg/struct/results.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsecuredcom/ffufPostprocessing/HEAD/pkg/struct/results.go --------------------------------------------------------------------------------