Click here to Skip to main content
6,292,811 members and growing! (10,314 online)
Email Password   helpLost your password?
Platforms, Frameworks & Libraries » .NET Framework » Samples     Advanced

Anti BPX

By Marcello Cantelmo

Simple check for break-points on eXecution of a system debugger!
C#, VB, ASM.NET 1.0, .NET 1.1, Win2K, WinXPVS.NET2003, Dev
Posted:8 Sep 2004
Views:48,679
Bookmarked:18 times
Announcements
Loading...
 
Search    
Advanced Search
printPrint   Broken Article?Report       add Share
  Discuss Discuss   Recommend Article Email
8 votes for this article.
Popularity: 2.43 Rating: 2.69 out of 5
3 votes, 37.5%
1
1 vote, 12.5%
2

3
2 votes, 25.0%
4
2 votes, 25.0%
5

Sample Image - Anti_BPX.jpg

Introduction

Any software can be analyzed step-by-step from a debugger! A debugger is a valid instrument in order to discover bugs, but most times it is used by the hackers/crackers in order to alter the routines of protection of our programs, or worse, in order to reverse engineer an entire algorithm!

Background

It is present, in Windows systems, an API function called IsDebuggerPresent (contained in kernel32.dll). It serves to verify the presence of a debugger. This function does not exist in Windows 95. It is also interesting to see using Pointers from VB.NET!

Example code (VB.NET):

Declare Function IsDebuggerPresent Lib "kernel32" () As Integer

Dim chkDebug as Integer = IsDebuggerPresent
chkDebug = 0 --> not debugged
chkDebug = 1 --> debugged

Using the code

It is supposed, in this demonstration, to use the SoftIce debugger.

It seems all simple, I can stop a hacker! Unfortunately, the truth is very different as our adversary can behave itself:

  1. Starts the debugger;
  2. It presses ctrl+d;
  3. It writes BPX IsDebuggerPresent;
  4. Presses F5 in order to send in execution of the program, and magically a window similar to this appears (code assembler x86):

    001B:77E52740    64A118000000    MOV    EAX, FS:[00000018] 
    001B:77E52746    8B4030          MOV    EAX, [EAX+30] 
    001B:77E52749    0FB64002        MOVZX  EAX, BYTE PTR [EAX+02] 
    001B:77E5274D    C3              RET

Therefore, it does not have to make other changes than to modify the value of return of the function and/or to make the patch directly for the library kernel32.dll:

001B:77E52749    0FB64002        MOVZX  EAX, BYTE PTR [EAX+02]

It becomes:

001B:77E52749    33C0            XOR    EAX, EAX    ;return always 0 !

001B:77E5274B    90              NOP                ;nothing

001B:77E5274C    90              NOP

Our adversary is a good reverser! But from that what can we make? We can make a check on the BPX presence. BPX means to virtually put the value hex 0CCh in a determined memory area. In order to resolve this problem, we gain the address of the memory that interests us (in this case, on my WinXP home) 77E52740h, and verifies if it exists, in one of the 14 bytes, an equal value to 0CCh! It seems all very simple.

We use the APIs:

Declare Function LoadLibrary Lib "kernel32" Alias _
      "LoadLibraryA" (ByVal lpLibFileName As String) As Integer
Declare Function FreeLibrary Lib "kernel32" Alias _
      "FreeLibrary" (ByVal hLibModule As Integer) As Integer
Declare Function GetProcAddress Lib "kernel32" Alias _
      "GetProcAddress" (ByVal hModule As Integer, _
      ByVal lpProcName As String) As Integer

And we proceed as follows:

  1. We load in memory the library kernel32.dll;
  2. We find with GetProcAddress the address of the API IsDebuggerPresent;
  3. We analyze the memory area.

Example code (VB.NET):

Dim hLib As Integer = LoadLibrary("kernel32") 'address base

Dim apiaddress as integer = GetProcAddress(hLib, _
                "IsDebuggerPresent") 'return value: 77E52740h

Dim memdebug(13) As Byte 'lenght 14-1

'<<<

Marshal.Copy(IntPtr.op_Explicit(apiaddress), _
        memdebug, _
        0, _
        memdebug.Length) 'read to memory pointer

'+++

Dim bFlag as Boolean = False
Dim ij As Integer
For ij = 0 To memdebug.Length - 1
    If memdebug(ij) = &HCC Then
            '[i] no bpx please

        bFlag = True
        Exit For
    End If
Next ij
FreeLibrary(hLib) 'release library

'+++

If bFlag Then
    '[i] some actions: reset, hd format ;-p, ...your creativity!

End If

Clearly, this is only an example! You can analyze and check any portion of memory to leave from its address.

Points of Interest

Stopping the Reverse engineering of our programs puts in difficulty hackers/crackers...at least those who are not too much good!

Other articles from the author:

For other information, please visit my web site (in continuous modernization).

History

September 2004: First public release. (Sorry for my bad English...I'm Italian.)

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

About the Author

Marcello Cantelmo


Member
President of "Cantelmo Software" (micro-ISV situated in Lizzanello (Lecce) - Italy): Development Software and Professional Component for .NET Platform. Author of Goliath .NET Obfuscator
Occupation: CEO
Company: Cantelmo Software
Location: Italy Italy

Other popular .NET Framework articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 16 of 16 (Total in Forum: 16) (Refresh)FirstPrevNext
GeneralAnti-BPX checker PinmemberVitoto13:31 1 Jan '06  
GeneralRe: Anti-BPX checker PinmemberMarcello Cantelmo23:17 1 Jan '06  
GeneralRe: Anti-BPX checker PinmemberVitoto2:56 2 Jan '06  
GeneralProtect .Net Process for Attach to Debuger PinmemberVitoto11:20 5 Oct '05  
GeneralGoliath.NET Obfuscator PinsussMarcello Cantelmo11:54 24 Jan '05  
GeneralMaking code harder to analise PinmemberSlawek Piotrowski2:12 4 Nov '04  
GeneralRe: Making code harder to analise PinsussMarcello Cantelmo5:57 4 Nov '04  
GeneralNice idea PinmemberCap'n Code15:58 8 Sep '04  
GeneralRe: Nice idea PinsussMarcello Cantelmo23:28 8 Sep '04  
GeneralRe: Nice idea PinmemberTQN0:09 9 Sep '04  
GeneralRe: Nice idea PinsussMarcello Cantelmo0:36 9 Sep '04  
GeneralRe: Nice idea PinmemberPumqara2:38 29 Sep '04  
GeneralRe: Nice idea PinmemberMarcello Cantelmo3:26 29 Sep '04  
GeneralRe: Nice idea PinsussJoseph Hapkom10:27 29 Sep '04  
GeneralRe: Nice idea PinmemberMarcello Cantelmo11:34 29 Sep '04  
GeneralRe: Nice idea PinsussMarcello Cantelmo12:31 27 Jan '05  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 8 Sep 2004
Editor: Smitha Vijayan
Copyright 2004 by Marcello Cantelmo
Everything else Copyright © CodeProject, 1999-2009
Web20 | Advertise on the Code Project