View Single Post
Skilled contributor
1Apr2011,16:05  
Click SSL's Avatar
Quote:
Originally Posted by xpi0t0s View Post
Basically you need to look through the program and find out where it queries the dongle, then replace that with code that lets the program continue even when the dongle isn't there.

Often programs implement trivially simple dongle checking, e.g.
Code:
int isDonglePresent()
{
  if ( /* some fancy stuff */ )
    return 1;
  else
    return 0;
}
(one program I worked on some years ago did precisely this) and so in this case you could change the executable so that this function returns 1 whether the dongle is present or not.
Nice explanation to crack dongle. Thanks for sharing this creditable information to us.