CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Aug 2008
    Location
    C:\Windows\System32
    Posts
    47

    Search for byte signatures

    Hey all i was wondering how to :
    Search for byte signatures from a process and store the address of that signature and store it into a variable or something.

    If someone could answer me it will be great

  2. #2
    Join Date
    Feb 2007
    Location
    Craiova, Romania
    Posts
    326

    Re: Search for byte signatures

    Search in a process address space (memory) or in the process' executable?

  3. #3
    Join Date
    Aug 2008
    Location
    C:\Windows\System32
    Posts
    47

    Re: Search for byte signatures

    ye search for an address by it's signature

    as shown in the picture i need to find that address aka the JNZ address but it's not the same every time so i need a way of finding it

  4. #4
    Join Date
    Aug 2000
    Location
    New York, NY, USA
    Posts
    5,656

    Re: Search for byte signatures

    Quote Originally Posted by Cha0sBG View Post
    ye search for an address by it's signature
    Still trying to cheat?
    Your "hacker's" idea is silly - the JNZ instruction is one byte, 0x75. This could also be found in text literals as letter 'u', a one-byte value of 0x75, or a part of multi-byte value, as well as a part of another instruction.
    It sure looks like you are trying to bypass someone's validity test. Do you guys have a special "cool hacker's" forums for kids where you could go?
    Vlad - MS MVP [2007 - 2012] - www.FeinSoftware.com
    Convenience and productivity tools for Microsoft Visual Studio:
    FeinWindows - replacement windows manager for Visual Studio, and more...

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured