├── README.md ├── cmd └── psobf │ └── main.go ├── go.mod ├── internal └── obfuscator │ ├── banners.go │ ├── io.go │ ├── levels.go │ ├── pipeline.go │ ├── profiles.go │ ├── random.go │ ├── runner.go │ └── types.go ├── pkg └── psobf │ └── obfuscate.go └── static ├── poc.gif └── poc2.gif /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaurusOmar/psobf/HEAD/README.md -------------------------------------------------------------------------------- /cmd/psobf/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaurusOmar/psobf/HEAD/cmd/psobf/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/TaurusOmar/psobf 2 | 3 | go 1.24.4 4 | -------------------------------------------------------------------------------- /internal/obfuscator/banners.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaurusOmar/psobf/HEAD/internal/obfuscator/banners.go -------------------------------------------------------------------------------- /internal/obfuscator/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaurusOmar/psobf/HEAD/internal/obfuscator/io.go -------------------------------------------------------------------------------- /internal/obfuscator/levels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaurusOmar/psobf/HEAD/internal/obfuscator/levels.go -------------------------------------------------------------------------------- /internal/obfuscator/pipeline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaurusOmar/psobf/HEAD/internal/obfuscator/pipeline.go -------------------------------------------------------------------------------- /internal/obfuscator/profiles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaurusOmar/psobf/HEAD/internal/obfuscator/profiles.go -------------------------------------------------------------------------------- /internal/obfuscator/random.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaurusOmar/psobf/HEAD/internal/obfuscator/random.go -------------------------------------------------------------------------------- /internal/obfuscator/runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaurusOmar/psobf/HEAD/internal/obfuscator/runner.go -------------------------------------------------------------------------------- /internal/obfuscator/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaurusOmar/psobf/HEAD/internal/obfuscator/types.go -------------------------------------------------------------------------------- /pkg/psobf/obfuscate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaurusOmar/psobf/HEAD/pkg/psobf/obfuscate.go -------------------------------------------------------------------------------- /static/poc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaurusOmar/psobf/HEAD/static/poc.gif -------------------------------------------------------------------------------- /static/poc2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaurusOmar/psobf/HEAD/static/poc2.gif --------------------------------------------------------------------------------