mirror of
https://github.com/reactos/reactos.git
synced 2025-04-26 00:20:34 +00:00
[TCPIP] Don't trust the TEB
And trust the Russian hackers to exploit that.
This commit is contained in:
parent
333ce14dad
commit
9d0eb9b7b8
2 changed files with 10 additions and 5 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue