optiv / Mangle

Mangle is a tool that manipulates aspects of compiled executables (.exe or DLL) to avoid detection from EDRs
MIT License
1.17k stars 153 forks source link

file go.mod #1

Closed andreluna closed 2 years ago

andreluna commented 2 years ago

Hi man, You not insert go.mod file in project.

andreluna commented 2 years ago

To solved I did:

`git clone git@github.com:optiv/Mangle.git cd Mangle

go mod init github.com/optiv/Mangle go get github.com/Binject/debug/pe go build Mangle.go`

Tylous commented 2 years ago

you shouldn't need a mod file. image

andreluna commented 2 years ago

Okay! Thks.