adplus-dvertising
frame-decoration

Question

What is one way in which WinDbg differs from OllyDbg in terms of debugging?

a.

WinDbg supports stepping through the earliest phases of process initialization

b.

OllyDbg supports stepping through the earliest phases of process initialization

c.

WinDbg and OllyDbg both support stepping through the earliest phases of process initialization

d.

None of the above

Posted under Reverse Engineering

Answer: (a).WinDbg supports stepping through the earliest phases of process initialization Explanation:Beyond the extensions, WinDbg also supports stepping through the earliest phases of process initialization, even before statically linked DLLs are initialized. This is different from OllyDbg, where debugging starts at the primary executable’s WinMain (this is the .exe file launched by the user), after all statically linked DLLs are initialized.

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is one way in which WinDbg differs from OllyDbg in terms of debugging?