Click here to Skip to main content
Licence CPOL
First Posted 18 Sep 2003
Views 58,694
Bookmarked 33 times

Locking shareware functions

By | 18 Sep 2003 | Article
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, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Slava Archibasov

Software Developer

Russian Federation Russian Federation

Member

Follow on Twitter Follow on Twitter
Professional Windows/Java Mobile/Web-applications developer since 2000.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralImproving Pinmemberwinx21:30 26 Jan '06  
General:-) nice PinmemberMREBI4:49 24 Sep '03  
Generalgood try, but too easy to crack PinmemberTekCat21:20 23 Sep '03  
Questionwhat ? PinsussAnonymous1:39 20 Sep '03  
AnswerRe: what ? PinmemberJohn M. Drescher5:35 20 Sep '03  
GeneralRe: what ? PinmemberColin Angus Mackay14:39 3 Dec '03  
GeneralRe: what ? PinmemberJohn M. Drescher15:00 3 Dec '03  
GeneralNot sure if this such a good idea PinmemberBrian Shifrin1:25 20 Sep '03  
GeneralRe: Not sure if this such a good idea PinmemberCyberSky9:56 20 Sep '03  
GeneralRe: Not sure if this such a good idea PinmemberAnatoly Ivasyuk10:02 20 Sep '03  
GeneralAvoid AfxMessageBox... PinmemberStephane Rodriguez.23:22 18 Sep '03  
QuestionOpen file in text mode?? PinsussAnonymous23:20 18 Sep '03  
GeneralBuffer overflow PinsussAnonymous23:16 18 Sep '03  
GeneralTurns out to be the same as every cracking problem PinsussAnonymous23:12 18 Sep '03  
GeneralCrashes in debug mode. PinmemberWREY20:50 18 Sep '03  
GeneralA good try, but not foolproof. PinmemberWREY20:20 18 Sep '03  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120517.1 | Last Updated 19 Sep 2003
Article Copyright 2003 by Slava Archibasov
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid