nikooo1608 Posted April 21, 2020 Posted April 21, 2020 Hey, I know that it's possible to decompile any kind of script. But is it the same for the Includes? So I have a Mainscript which includes a script with personal (database connection) data.. If I compile the Main Code to exe, is it easily possible to decompile the exe and see all the code of the Includes also??
Nine Posted April 21, 2020 Posted April 21, 2020 Please read forum rules. As you will see, it is not allowed to discuss such matter here. “They did not know it was impossible, so they did it” ― Mark Twain Spoiler Block all input without UAC Save/Retrieve Images to/from Text Monitor Management (VCP commands) Tool to search in text (au3) files Date Range Picker Virtual Desktop Manager Sudoku Game 2020 Overlapped Named Pipe IPC HotString 2.0 - Hot keys with string x64 Bitwise Operations Multi-keyboards HotKeySet Recursive Array Display Fast and simple WCD IPC Multiple Folders Selector Printer Manager GIF Animation (cached) Debug Messages Monitor UDF Screen Scraping Round Corner GUI UDF Multi-Threading Made Easy Interface Object based on Tag
nikooo1608 Posted April 21, 2020 Author Posted April 21, 2020 3 minutes ago, Nine said: Please read forum rules. As you will see, it is not allowed to discuss such matter here. Quote Decompilation of AutoIt scripts or details of decompiler software. Details of decompiler Software is widespread everywhere! i just asked if my script is save or not.
Nine Posted April 21, 2020 Posted April 21, 2020 You mean safe (you said save) ? No it is not, there's always be someone who can gain access to your code. “They did not know it was impossible, so they did it” ― Mark Twain Spoiler Block all input without UAC Save/Retrieve Images to/from Text Monitor Management (VCP commands) Tool to search in text (au3) files Date Range Picker Virtual Desktop Manager Sudoku Game 2020 Overlapped Named Pipe IPC HotString 2.0 - Hot keys with string x64 Bitwise Operations Multi-keyboards HotKeySet Recursive Array Display Fast and simple WCD IPC Multiple Folders Selector Printer Manager GIF Animation (cached) Debug Messages Monitor UDF Screen Scraping Round Corner GUI UDF Multi-Threading Made Easy Interface Object based on Tag
Musashi Posted April 21, 2020 Posted April 21, 2020 (edited) 35 minutes ago, nikooo1608 said: So I have a Mainscript which includes a script with personal (database connection) data.. If I compile the Main Code to exe, is it easily possible to decompile the exe and see all the code of the Includes also?? When compiling, the includes will be integrated into the main script at the place where the #include directive is located. So they are part of the main script, as if you were copying the code into it. Includes therefore offer no additional security. Regarding decompiling - no comment ! Edited April 21, 2020 by Musashi "In the beginning the Universe was created. This has made a lot of people very angry and been widely regarded as a bad move."
nikooo1608 Posted April 21, 2020 Author Posted April 21, 2020 1 minute ago, Musashi said: When compiling, the includes will be integrated into the main script at the place where the #include directive is located. So they are part of the main script, as if you were copying the code into it. Includes therefore offer no additional security. okay thanks a lot
Recommended Posts