Oct 12, 2009 #1 Delphard Programmer Jul 22, 2004 144 RS How to protect .exe file against decompiling? Is there an (free?!) software or component for this purpose?
How to protect .exe file against decompiling? Is there an (free?!) software or component for this purpose?
Oct 12, 2009 #2 DelphiAaron Programmer Jul 4, 2002 826 AU decompiling will only give them the forms not the code. but if you must there are shrinker programs around that compress the exe making it harder or impossible to decompile. Aaron Upvote 0 Downvote
decompiling will only give them the forms not the code. but if you must there are shrinker programs around that compress the exe making it harder or impossible to decompile. Aaron
Oct 12, 2009 Thread starter #3 Delphard Programmer Jul 22, 2004 144 RS ...there are shrinker programs... Like? Upvote 0 Downvote
Oct 12, 2009 #4 Glenn9999 Programmer Jun 19, 2004 2,311 US UPX I'm waiting for the white paper entitled "Finding Employment in the Era of Occupational Irrelevancy Upvote 0 Downvote
UPX I'm waiting for the white paper entitled "Finding Employment in the Era of Occupational Irrelevancy
Oct 12, 2009 #5 roo0047 Programmer Jul 31, 2004 533 US You're best defense is command-line build with all debug info off {$D-} Roo Delphi Rules! Upvote 0 Downvote
Oct 12, 2009 #6 whosrdaddy Vendor Mar 11, 2003 4,231 BE I do both: - build with batch file, no debug info - then shrink with upx (from the same batch file) I made a small app that creates the batch file automatically for me. /Daddy ----------------------------------------------------- What You See Is What You Get Never underestimate tha powah of tha google! Upvote 0 Downvote
I do both: - build with batch file, no debug info - then shrink with upx (from the same batch file) I made a small app that creates the batch file automatically for me. /Daddy ----------------------------------------------------- What You See Is What You Get Never underestimate tha powah of tha google!