Drew Posted May 1, 2008 Posted May 1, 2008 Is there a way to put any form of Anti-Decompile on your script? I've tried a few various things in the search engine and skimmed the helpfile to no luck. I don't want my program to be able to be decompiled , what can I do about this?
BrettF Posted May 1, 2008 Posted May 1, 2008 If you want to have increased protection against decompilation, obfuscate your code... Vist my blog!UDFs: Opens The Default Mail Client | _LoginBox | Convert Reg to AU3 | BASS.au3 (BASS.dll) (Includes various BASS Libraries) | MultiLang.au3 (Multi-Language GUIs!)Example Scripts: Computer Info Telnet Server | "Secure" HTTP Server (Based on Manadar's Server)Software: AAMP- Advanced AutoIt Media Player | WorldCam | AYTU - Youtube Uploader Tutorials: Learning to Script with AutoIt V3Projects (Hardware + AutoIt): ArduinoUseful Links: AutoIt 1-2-3 | The AutoIt Downloads Section: | SciTE4AutoIt3 Full Version!
Drew Posted May 1, 2008 Author Posted May 1, 2008 (edited) I'm unsure what obfuscate means >.< EDIT If it means like... to make it confusing , etc... not sure how to do so without generating a nasty error. Edited May 1, 2008 by Drew
narayanjr Posted May 1, 2008 Posted May 1, 2008 (edited) Yeah it basically means make it very confusing. Some things you could do, Make your Var names make no sense, (ex. $MilesRun to $ILikeCandy) and at random parts do somthing like this (ex. $GreenHouse = $ILikeCandy) then use the new Var for other things to make it more confusing and place Functions in the middle of your code and give the functions random names add fake comments add in useless code Edited May 1, 2008 by narayanjr
d4rk Posted May 1, 2008 Posted May 1, 2008 Yeah it basically means make it very confusing.Some things you could do,Make your Var names make no sense, (ex. $MilesRun to $ILikeCandy)and at random parts do somthing like this (ex. $GreenHouse = $ILikeCandy) then use the new Var for other things to make it more confusingand place Functions in the middle of your code and give the functions random namesadd fake commentsadd in useless codewow, cool hah ? [quote]Don't expect for a perfect life ... Expect a least troubles ones[/quote]Contact me : ass@kiss.toWhat I Have Done :Favorites Manager Mangage your favorite's folder, that's coolPC Waker For those who want to save stickersWebScipts Supporter For those who've just started with Web and WebScriptsTemporary Looker Simple but powerful to manage your Temporary folder, you know what you downloaded[UDF] _NumberFormat() Better performance on number display[UDF] _DirGet() What a folder contain [how many (hidden,normal,...) files], with one line of code[UDF] _IsPressEs() Just like _IsPress() but for a group of keys
therks Posted May 1, 2008 Posted May 1, 2008 Or you could, you know, use the obfuscator that Jos wrote. My AutoIt Stuff | My Github
laffo16 Posted August 2, 2008 Posted August 2, 2008 havent compiled anything in a while, so i cant password protecting my exe's anymore? just obf the sucka? is obj up to scratch with the latest autoit? i had trouble with it in the past.
laffo16 Posted August 2, 2008 Posted August 2, 2008 im getting the error !File contains records longer than 2047 .. stopping process., what does this mean? is this a row count? why remove the password protection, is it pointless with out the decoder? also are older decoders now incompatible with the latest autoit?
laffo16 Posted August 2, 2008 Posted August 2, 2008 are one of these includes not compatible with obf? #include <ExcelCOM_UDF.au3> #include <Array.au3> #include <Array2D.au3> #include <Date.au3> #include <sqlite.au3> #include <sqlite.dll.au3> #include <ArraySearchAnyDim.au3> #include <INet.au3> #include <IE.au3>
laffo16 Posted August 2, 2008 Posted August 2, 2008 (edited) when running obf how can i tell it to ignore lines with said many characters is it possible? i know the problem lies with #include <sqlite.dll.au3> i just need to avoid obf this file, suggestions anyone? doh!!!! it never occured to me before, but i should be able to obf the file first without the dll, then add it back after the obf is complete. Edited August 2, 2008 by laffo16
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