Quote:
[Originally Posted by TrainingDay]Hi all,
Can i point me to a essay on how to reverse engineer a program with on like 60 minute use limit before program expires.
Thanks in Advance |
I think you can write the assay yourself when you are done with the program.
Disassemble it and look for time keeping API, like GetLocalTime, GetSystemTime, GetTickCount.
The program probably checks the time rather frequently, so it will quit right on time, when the 60 mins are up.
Also look at what happens when it quits: do you see a nag screen, or just stops?
Consider breakpoints in PostQuitMessage or EndProc sort of things.
Time limited Software be it 30 days or 60 min fall into the same scheme.