Пример #1
0
EFI_STATUS UefiMain (
        IN EFI_HANDLE        ImageHandle,
        IN EFI_SYSTEM_TABLE  *SystemTable
        )
{
    EFI_STATUS Status = 0;
    Status = TestAllocateAnyPages();
    Status = TestAllocateAddress();
    Status = TestMMap();
    return Status;
}
Пример #2
0
int wmain( int /*argc*/, wchar_t* /*argv*/[] )
{ 
    Process proc, proc2;
    proc.Attach( GetCurrentProcessId() );

    TestPEB( proc );
    TestTEB( proc );
    TestLocalHook();
    TestRemoteCall();
    //TestRemoteHook();
    TestMMap();

	return 0;
}
Пример #3
0
int main( int /*argc*/, char* /*argv*/[] )
{
    Process proc;
    proc.Attach( GetCurrentProcessId() );

    TestPEB( proc );
    TestTEB( proc );
    TestMultiPtr();
    TestPatterns();
    TestLocalHook();
    TestRemoteCall();
    TestRemoteHook();
    TestDriver();
    TestRemoteMem();
    TestMMap();
    
    return 0;
}