NTDLL Unhooking - From Web Server
Last updated
Last updated
Another way to get a clean ntdll is from fetching it from a webserver. We can use which contains almost all ntdll.dll versions.
Because ntdll.dll
must be fetched programmatically, it's important to understand how download links are formatted. Analyze the 3 URLs below:
"1ee000" in the URL, is 2023424 in decimal.
"2023424" is NTDLL's VirtualSize (OptionalHeader->SizeOfImage
)
"494079D6", which is 1228962262 in decimal, is the timestamp of the file. (NtHeadeers->FileHeader->TimeDateStamp
)
Our Pwnbox is running Windows 10 version 22H2
On WinIndex the URL for NTDLL is the following:
39215800: Timestamp (in Hexadecimal)
1f8000: Size of Image (in Hexadecimal)
Verify on Pwnbox: