Vladi243 Posted July 16, 2008 Posted July 16, 2008 Is there a way to save options other than ini file?
Airwolf Posted July 16, 2008 Posted July 16, 2008 Registry keys, text files, etc. There are many different ways to save configuration settings. Certifications: A+, Network+, Security+, Linux+, LPIC-1, MCSA | Languages: AutoIt, C, SQL, .NETBooks: AutoIt v3: Your Quick Guide - $7.99 - O'Reilly Media - September 2007-------->[u]AutoIt v3 Development - newbie to g33k[/u] - Coming Soon - Fate Publishing - Spring 2013UDF Libraries: SkypeCOM UDF Library | ADUC Computers OU Cleanup | Find PixelChecksumExamples: Skype COM Examples - Skype4COMLib Examples converted from VBS to AutoIt
Vladi243 Posted July 16, 2008 Author Posted July 16, 2008 I want to save passwords. What's the best way to save passwords? Should I encrypt them?
Airwolf Posted July 16, 2008 Posted July 16, 2008 I want to save passwords. What's the best way to save passwords? Should I encrypt them?I would recommend encryption. You can encrypt strings with RC4 via _StringEncrypt() - check it out in the help file. Store the encrypted passwords and the key separately (or leave the key embedded in your script, but AutoIt scripts are easily decompiled). Certifications: A+, Network+, Security+, Linux+, LPIC-1, MCSA | Languages: AutoIt, C, SQL, .NETBooks: AutoIt v3: Your Quick Guide - $7.99 - O'Reilly Media - September 2007-------->[u]AutoIt v3 Development - newbie to g33k[/u] - Coming Soon - Fate Publishing - Spring 2013UDF Libraries: SkypeCOM UDF Library | ADUC Computers OU Cleanup | Find PixelChecksumExamples: Skype COM Examples - Skype4COMLib Examples converted from VBS to AutoIt
Vladi243 Posted July 16, 2008 Author Posted July 16, 2008 OK, I will encrypt the passwords and their key. How can I prevent decompiling my scripts by other?
Airwolf Posted July 16, 2008 Posted July 16, 2008 OK, I will encrypt the passwords and their key.How can I prevent decompiling my scripts by other?You can't. You can use UPX and Obfuscator to compress and obfuscate the code. This will make it harder to work with, but you can't stop someone from decompiling an AutoIt script. Certifications: A+, Network+, Security+, Linux+, LPIC-1, MCSA | Languages: AutoIt, C, SQL, .NETBooks: AutoIt v3: Your Quick Guide - $7.99 - O'Reilly Media - September 2007-------->[u]AutoIt v3 Development - newbie to g33k[/u] - Coming Soon - Fate Publishing - Spring 2013UDF Libraries: SkypeCOM UDF Library | ADUC Computers OU Cleanup | Find PixelChecksumExamples: Skype COM Examples - Skype4COMLib Examples converted from VBS to AutoIt
Vladi243 Posted July 17, 2008 Author Posted July 17, 2008 One more question. Is programmes in C harder to decompile?
Airwolf Posted July 17, 2008 Posted July 17, 2008 One more question. Is programmes in C harder to decompile?Yes, but nothing is impossible. Certifications: A+, Network+, Security+, Linux+, LPIC-1, MCSA | Languages: AutoIt, C, SQL, .NETBooks: AutoIt v3: Your Quick Guide - $7.99 - O'Reilly Media - September 2007-------->[u]AutoIt v3 Development - newbie to g33k[/u] - Coming Soon - Fate Publishing - Spring 2013UDF Libraries: SkypeCOM UDF Library | ADUC Computers OU Cleanup | Find PixelChecksumExamples: Skype COM Examples - Skype4COMLib Examples converted from VBS to AutoIt
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