Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Locking shareware functions

0.00/5 (No votes)
18 Sep 2003 1  
This article describes how to lock some functions in a shareware product. Users can unlock them only after obtaining keyfile

Introduction

If you're shareware programmer, you may need to lock some functions of your product from unauthorized access. Problem is that hackers can unlock these functions without your permission. :-) In this article I'll show how to lock shareware functions and to reduce of risk of a hacker cracking your product.

Background

Basic idea is that we call hidden shareware functions by its address, which we pass to user in key file. In this case, hacker can't crack the program because he cannot determine the necessary address of a protected function. In the provided demo project, the address of function is stored in an open kind ( pass.txt file), but nothing hinders you to encrypt this address by user's hard disk serial number, for example.

The required Steps

  1. Let's find out the address of the function:
    // somewhere in program body our shareware function lives 
    
    void HiddenPaintFunc(DWORD pv,DWORD pp)
    
    {
        //...
    
    }
    
    
    BOOL CSharewareDialog::OnInitDialog()
    {
    //
    
    // let's find out its address. It can be done with debugger, 
    
    // or simply like this:
    
    
    CString strAddress;
    strAddress.Format("0x%X",HiddenPaintFunc);
    AfxMessageBox(strAddress);// this string need to be commented  
    
                              // after obtaining an address
    
    ...
    
  2. Create a key file in hex editor and write an address to it ( don't forget about the return order - for example: 00401602 -> 02164000)
  3. At last, instead of a customary function call, we write the following :
    void CSharewareDialog::INeedCallLockedFunction(CDC*pDC)
    {
                  FILE*pFile=NULL;
      pFile=fopen("C:\\pass.txt","r");// open key file
    
      if(pFile){
                  DWORD dwHidden=0;
      fread((void*)&dwHidden,4,4,pFile);
      fclose(pFile);
      if(dwHidden){
      try{
         DWORD dwParam=(DWORD)pDC;
         DWORD dwParam2=(DWORD)this;
        
        __asm{
        
        xor ebx,ebx
        mov ebx,dwParam // pass some parameters
    
        push ebx
        mov ebx,dwParam2
        push ebx
        call dwHidden    // address of function we've got from key file
    
                         // if key file is wrong - jump to anywhere
    
    
      }
    
    
    
      }
      catch(...){
    
        AfxMessageBox("You must register this program.");
    
      }
      }
      else
      {
    
            AfxMessageBox("You must register this program.");
    
      }
      }
       else
      {
    
            AfxMessageBox("You must register this program.");
    
      }       
    
    }
    
  4. That's all.

Notes

It is necessary to keep track of the address of the shareware function, as it may be changed from build to build.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here