github上有两个可以对Golang生成的exe进行混淆

1、https://github.com/boy-hack/go-strip

使用方法:

go-strip -f binary.exe -a -output new.exe
new.exe即是混淆后的二进制文件

 

2、https://github.com/burrowers/garble

这个一开始以为是对代码进行混淆,但是似乎也是对生成的二进制文件进行混淆

使用方法,在编译时输入:

set GO111MODULE=on
go get mvdan.cc/garble
garble -literals build 包名

相关文章:

  • 2021-12-22
  • 2021-12-21
  • 2021-12-31
  • 2021-10-11
  • 2022-03-04
猜你喜欢
  • 2021-10-30
  • 2022-12-23
  • 2021-09-02
  • 2022-12-23
  • 2021-09-27
  • 2021-12-10
  • 2021-08-08
相关资源
相似解决方案