Web Request in Kernel Mode Driver

Hi All,
How to create web request and get web site status code in kernel mode driver?

Thanks

xxxxx@gmail.com wrote:

How to create web request and get web site status code in kernel mode driver?

You don’t. You spawn out to a user-mode helper process.

Having said that, there IS a socket interface in the kernel that can be
used to make web requests. It is a low-level interface, essentially at
the “send” and “recv” level in user-mode. You’ll have to add all of the
HTTP handling yourself.
https://msdn.microsoft.com/en-us/library/windows/hardware/ff556958.aspx


Tim Roberts, xxxxx@probo.com
Providenza & Boekelheide, Inc.

Thanks for the information @Tim Roberts