I'm reversing a PE file and I think the exe uses some library compiled static.
Now IDA can recognize some basic function like 'CryptReleaseContext' and ' __CxxFrameHandler3' automatically.
I have changed Type Libraries and it still cannot identify lots of functions,but I'm sure some of these functions exactly belongs to some libraries which is compiled into this exe statically.
// Microsoft VisualC 2-11/net runtime
void *__thiscall unknown_libname_2(void *this, char a2)
{
void *v2; // esi@1
v2 = this;
sub_402CE1(this);
if ( a2 & 1 )
j__free(v2);
return v2;
}
So,is there a big database of sig files about all kinds of libraries,or some way to recognize these static libraries?