MRXTO09 Posted April 16, 2014 Posted April 16, 2014 (edited) i want ,to prevent decompilation, compile my autoit script obfuscated get the binary code of the file and run the binary data with autoit script is possible? Edited April 16, 2014 by MRXTO09
JohnOne Posted April 16, 2014 Posted April 16, 2014 First, you cannot prevent decompilation. Second. Run('path\to\your\script.exe') AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
Unc3nZureD Posted April 16, 2014 Posted April 16, 2014 So, you want the following: - Compile your script obfuscated - Compile another script which will contain embedded your original script - Run from memory your original script, with the help of the second exe Now here's how to decompile it: - Decompile the main executable, which contains the embedded - FileWrite the embedded code to any random place, because you can alter the script - Now decompile the FileWrited script, which is your original obfuscated exe - Deobfuscate script - Job done There's no way to prevent decompilation. You can only make decompilation harder & longer.
MRXTO09 Posted April 16, 2014 Author Posted April 16, 2014 (edited) So, you want the following: - Compile your script obfuscated - Compile another script which will contain embedded your original script - Run from memory your original script, with the help of the second exe Now here's how to decompile it: - Decompile the main executable, which contains the embedded - FileWrite the embedded code to any random place, because you can alter the script - Now decompile the FileWrited script, which is your original obfuscated exe - Deobfuscate script - Job done There's no way to prevent decompilation. You can only make decompilation harder & longer. yes i know this but this method is longer and difficult you must deobfuscate 2 script. How run form memory binary data? or how run binary data in c++ is most diffucult decompile it Edited April 16, 2014 by MRXTO09
JohnOne Posted April 16, 2014 Posted April 16, 2014 Run binary from memory <- example scripts. AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now