├── .gitignore ├── LICENSE.md ├── README.md ├── cmd └── main.go ├── docs └── README.md ├── exampleenv ├── go.mod ├── go.sum └── internal ├── binaryparser.go ├── detectengine.go ├── executioner.go ├── hashlib.go ├── peunpack.go └── utils.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsha/florentino/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsha/florentino/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsha/florentino/HEAD/README.md -------------------------------------------------------------------------------- /cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsha/florentino/HEAD/cmd/main.go -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsha/florentino/HEAD/docs/README.md -------------------------------------------------------------------------------- /exampleenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsha/florentino/HEAD/exampleenv -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsha/florentino/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsha/florentino/HEAD/go.sum -------------------------------------------------------------------------------- /internal/binaryparser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsha/florentino/HEAD/internal/binaryparser.go -------------------------------------------------------------------------------- /internal/detectengine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsha/florentino/HEAD/internal/detectengine.go -------------------------------------------------------------------------------- /internal/executioner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsha/florentino/HEAD/internal/executioner.go -------------------------------------------------------------------------------- /internal/hashlib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsha/florentino/HEAD/internal/hashlib.go -------------------------------------------------------------------------------- /internal/peunpack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsha/florentino/HEAD/internal/peunpack.go -------------------------------------------------------------------------------- /internal/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsha/florentino/HEAD/internal/utils.go --------------------------------------------------------------------------------