mirror of
https://github.com/reactos/reactos.git
synced 2026-05-31 16:31:07 +08:00
[TCPIP] Don't trust the TEB
And trust the Russian hackers to exploit that.
This commit is contained in:
@@ -16,5 +16,6 @@
|
||||
#include <lock.h>
|
||||
#include <interface.h>
|
||||
#include <chew/chew.h>
|
||||
#include <pseh/pseh2.h>
|
||||
|
||||
#endif /* _TCPIP_PCH_ */
|
||||
|
||||
@@ -396,7 +396,6 @@ NTSTATUS FileOpenAddress(
|
||||
PVOID Options)
|
||||
{
|
||||
PADDRESS_FILE AddrFile;
|
||||
PTEB Teb;
|
||||
|
||||
TI_DbgPrint(MID_TRACE, ("Called (Proto %d).\n", Protocol));
|
||||
|
||||
@@ -431,10 +430,15 @@ NTSTATUS FileOpenAddress(
|
||||
AddrFile->HeaderIncl = 1;
|
||||
AddrFile->ProcessId = PsGetCurrentProcessId();
|
||||
|
||||
Teb = PsGetCurrentThreadTeb();
|
||||
if (Teb != NULL) {
|
||||
AddrFile->SubProcessTag = Teb->SubProcessTag;
|
||||
}
|
||||
_SEH2_TRY {
|
||||
PTEB Teb;
|
||||
|
||||
Teb = PsGetCurrentThreadTeb();
|
||||
if (Teb != NULL)
|
||||
AddrFile->SubProcessTag = Teb->SubProcessTag;
|
||||
} _SEH2_EXCEPT(EXCEPTION_EXECUTE_HANDLER) {
|
||||
AddrFile->SubProcessTag = 0;
|
||||
} _SEH2_END;
|
||||
|
||||
KeQuerySystemTime(&AddrFile->CreationTime);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user