Thread: [Solved] Signature of small functions
View Single Post
Author Message
quasemago
Senior Member
Join Date: Dec 2018
Location: Brazil
Old 12-16-2018 , 12:53   Signature of small functions
Reply With Quote #1

I'm trying to generate a unique signature for two small functions.

Gamedata with old symbols:
PHP Code:
"Games"
{
    
"csgo"
    
{
        
"Signatures"
        
{
            
"operator new()"
            
{
                
"library"    "server"
                "linux"    "@_Znwj"
            
}

            
"operator delete()"
            
{
                
"library"    "server"
                "linux"    "@_ZdlPv"
            
}
        }
    }

Analyzing sdk I could see that these functions call MemAlloc internally, but I could not find any related functions in binarie.
- https://github.com/alliedmodders/hl2...emalloc.h#L177

Last edited by quasemago; 01-13-2019 at 01:31. Reason: Solved
quasemago is offline