Link to home
Start Free TrialLog in
Avatar of Arnie007
Arnie007

asked on

Program Overlay access/encryption and security

I have an EXE that is actually SWF player with overlay containing the SWF with "treasure" data inside. Is there any solution to protect this overlay part of code? All protectors so far focus only on actual EXE code but after heavy protection they just append unprotected Overlay at the end.

Is there any working code for doing this? Some secured access. Preferrably in Delphi.

Could somebody advise what is the best solution for this, or share some links for books/articles dealing with the topic. Ā 
ASKER CERTIFIED SOLUTION
Avatar of Mohamed Osama
Mohamed Osama
Flag of Egypt image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Arnie007
Arnie007

ASKER

The problem with all those protectors (like telock) is that they protect only main exe and just append the overlay unprotected. Thus I want some advice how to manage/secure access to file overlay (probably I would first encrypt it).
u can encrypt the whole exe (with its resources and overlay data or whatever) and put it in another exe which will decrypt it in memory during runtime and run it from memory without writing to disk, so they wont be able to reach it
@KillerCode: Is there any simple/cheap EXE2EXE compressor you mentioned in your post?
i guess so if EXE2EXE means encrypting an exe and putting it in the resources of the other then yet
but u will add encryption to it (RC4/AES/DES)