manmoncang Posted May 23, 2006 Posted May 23, 2006 Hi all, Sorry because i need your time again. Direct to the point and problem. 1. I need a code whereby can convert autoit file.au3 into exe without using autoit EXE converter. 2. The reason is, i want people input their password but at same time i don't want the people see or know file.au3 source code. (using autoit exe converter make people know the source code because they can see file.au3 source code) 3. Mean that, people only enter their password using inputbox, then klik create button. Then my program will convert the hidden source code including the password supply by people just now. 4. Hopefully all expert here can help me. Tq so much.
Moderators SmOke_N Posted May 23, 2006 Moderators Posted May 23, 2006 I think I followed you, Why don't you just use Do Not Allow Decompile? Or if your source is that valuable, just use EnCodeIt in my signature (make sure you don't have any of the Call()/Eval() etc... that it says you can't have in your script), that way you can obfuscate it, and they can't tell what your script says if they do get the source code. Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.
manmoncang Posted May 23, 2006 Author Posted May 23, 2006 (edited) If i set Do Not Allow Decompile, how i want people enter their password in my source code? i give an example ControlSetText($winTitle,"","Edit1","PASSWORD") I need people enter their own password change to PASSWORD then the program will auto convert all the code to exe. BUT i dont want people see the whole source code. Their put in their password using input box then the code PASSWORD will change into the new pasword that supply by user. Then the program will convert itself into EXE. Edited May 23, 2006 by manmoncang
jvanegmond Posted May 23, 2006 Posted May 23, 2006 Can you not just use encrypt on password? I believe that's what you want. If not and you want to hide the entire script you have to encrypt the whole file, and write it to a different file. github.com/jvanegmond
mr.underperson Posted May 23, 2006 Posted May 23, 2006 This is nuts! For sooo many reasons. Just store the password somewhere else. -mu
w0uter Posted May 23, 2006 Posted May 23, 2006 (edited) $passwd = InputBox("Enter your pass") .... ControlSetText($winTitle,"","Edit1", $passwd) if it needs to be used all the time just write it to an .ini or the registry Edited May 23, 2006 by w0uter My UDF's:;mem stuff_Mem;ftp stuff_FTP ( OLD );inet stuff_INetGetSource ( OLD )_INetGetImage _INetBrowse ( Collection )_EncodeUrl_NetStat_Google;random stuff_iPixelSearch_DiceRoll
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