TIB & FS, GS Segment Register
sum explanation TIB & FS, GS Segment Register TIB (Thread Information Block) TIB ← FS (x86) ← GS (x64) typedef struct _NT_TIB { PVOID ExceptionList; PVOID StackBase; PVOID StackLimit; PVOID SubSystemTib; PVOID FiberData; PVOID ArbitraryUserPointer; struct _NT_TIB *Self; } NT_TIB; typedef NT_TIB *PNT_TIB; is in WinNT.h Address Index ? typedef struct _NT_TIB x86 x64 {...