windows - How Internet Explorer(IE11)Creates low Integrity child process without CreateProcess Call -
windows - How Internet Explorer(IE11)Creates low Integrity child process without CreateProcess Call -
i want know how net explorer creates low integrity un-trusted sandboxed kid processes without calling createprocess api.
here tried:
opened executable (iexplore.exe) in windbg. @ time of initial bp nail set break point @ kernel32!createprocessa. allow main ie process run. see it's created sandboxed kid processes (low integrity kid iexplore.exe) in process explorer / process hacker utility, not touch createprocess break point.
i wanna know how ie that.
kernel32!createprocessa @ top of chain , wrapper calls farther downwards chain
the final phone call crosses usermode kernelmode border ntdll!ntcreateprocessex in api form , hacks can used burrow deeper , cross border setting stack , calling sysenter directly
try setting breakpoints in kernel32!createprocessw / kernel32!createprocessinternal advapi32!createprocessasuser / ntdll!ntcreateprocessex etc
windows debugging winapi windbg
Comments
Post a Comment