user13971808
user13971808

Reputation:

How can I obfuscate an EXE file?

I have an EXE file. It comes from a Qt C++ Visual Studio project. I would like to obfuscate this EXE. The main reason is that my URLs (for version files, API etc.) that I use in the program and any other strings can be easily edited with a HeX editor. Thanks for your help.

Upvotes: 2

Views: 14638

Answers (3)

Dave Woods
Dave Woods

Reputation: 1

Eziriz .NET Reactor seems to do a good job of obfuscating dll files and it will combine them.

Limitation is it will not function on .exe files, only .net files.

Upvotes: 0

Stefan P
Stefan P

Reputation: 1

You can easily reverse UPX Packer. With the -d Option!

Semantic Design might be interesting.

For DLLs you can try: Free Obfuscator

Upvotes: 0

user13971808
user13971808

Reputation:

I used UPX packer and it works well.

Upvotes: 1

Related Questions