mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
2199ae9003
svn path=/trunk/; revision=26010
24 lines
469 B
C
24 lines
469 B
C
#include <ntos.h>
|
|
#include <stdio.h>
|
|
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
int x;
|
|
PTEB Teb;
|
|
|
|
printf("TEB dumpper\n");
|
|
__asm__("movl %%fs:0x18, %0\n\t"
|
|
: "=a" (x)
|
|
: /* no inputs */);
|
|
printf("fs[0x18] %x\n", x);
|
|
|
|
Teb = (PTEB)x;
|
|
|
|
printf("StackBase: 0x%08lX\n", (DWORD)Teb->Tib.StackBase);
|
|
printf("StackLimit: 0x%08lX\n", (DWORD)Teb->Tib.StackLimit);
|
|
printf("DeallocationStack: 0x%08lX\n", (DWORD)Teb->DeallocationStack);
|
|
|
|
return(0);
|
|
}
|