[TCPIP] Don't trust the TEB

And trust the Russian hackers to exploit that.
This commit is contained in:
Pierre Schweitzer 2019-01-02 23:01:24 +01:00
parent 333ce14dad
commit 9d0eb9b7b8
No known key found for this signature in database
GPG key ID: 7545556C3D585B0B
2 changed files with 10 additions and 5 deletions

View file

@ -16,5 +16,6 @@
#include <lock.h>
#include <interface.h>
#include <chew/chew.h>
#include <pseh/pseh2.h>
#endif /* _TCPIP_PCH_ */

View file

@ -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);