adplus-dvertising
frame-decoration

Question

What is the responsibility of LdrpInitialize in the process initialization sequence?

a.

Allocate stack space for the process’s first thread

b.

Map NTDLL.DLL and the program executable into the newly created address space

c.

Recursively traverse the primary executable’s import tables and map into memory every executable that is required for running the primary executable

d.

Initialize all statically linked DLLs currently loaded into the address space

Posted under Reverse Engineering

Answer: (c).Recursively traverse the primary executable’s import tables and map into memory every executable that is required for running the primary executable Explanation:LdrpInitialize is responsible for recursively traversing the primary executable’s import tables and mapping into memory every executable that is required for running the primary executable.

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is the responsibility of LdrpInitialize in the process initialization sequence?