Oct 12, 2009 #1 Delphard Programmer Joined Jul 22, 2004 Messages 144 Location 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 Joined Jul 4, 2002 Messages 826 Location 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 Joined Jul 22, 2004 Messages 144 Location RS ...there are shrinker programs... Like? Upvote 0 Downvote
Oct 12, 2009 #4 Glenn9999 Programmer Joined Jun 19, 2004 Messages 2,312 Location 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 Joined Jul 31, 2004 Messages 533 Location 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 Joined Mar 11, 2003 Messages 4,231 Location 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!