Symbols on Demand (an OllyDbg plugin)

OllyDbg is able to use dbghelp.dll and symsrv.dll to show extended debug information, such as the module source code (if referenced by the debug information) or module symbols from a PDB file (which can be fetched from the Microsoft Symbol Server for system modules). The problem is that if you turn on this option, module loading becomes much slower. On the other hand, this information is very handy, so there’s a dilemma as of whether to turn it on.

The Symbols on Demand plugin provides the best of both worlds: it disables loading of this extended debug information by default, but allows to load it explicitly for any module, at any time. Using this approach, loading is still fast, but if you need to load extended debug information for a module, you can easily do that.

OllyDbg v1.10 and v2.01 are supported. For OllyDbg v1.10, there’s additional functionality: you can set the symbols search path, which is set by default to SRV*.\Symbols*http://msdl.microsoft.com/download/symbols. You can also choose to retrieve undecorated symbol names. These options can be set in the INI file of OllyDbg, in the plugin’s section.

zip symbols_on_demand.zip (4.96 kB)

For your convenience, here are the dbghelp.dll and symsrv.dll files:

zip dbghelp_symsrv.zip (579.8 kB)

The source code is available on GitHub.

Posted in Releases, Software by Michael (Ramen Software) on August 8th, 2015.
Tags: ,

9 Responses to “Symbols on Demand (an OllyDbg plugin)”

  1. Name (required) says:

    dbghelp_symsrv.zip
    First combo of dll I found that actually works. And I do have Visual Studio and Win debug tools and like 20 symsrv dlls around.
    Big thanks, man! As for the OnDemand plug!
    Great stuff. Also, huge thanks for the Multiline Asm! The pain I’d be in if I had to inline stuff by hand.
    You rock.

  2. NicePlugin says:

    I put the plugin dll into my olly v1.10 folder and the dbghelp/symsrv dlls in the plugin folder too. But when i try to load symbols for an executable that uses ntdll calls, it doesn’t resolve symbols and says “No symbols were loaded for Exe.exe…”

    Am i doing something wrong ?

  3. Neo85 says:

    Nice plugin thx 🙂

Leave a Reply to Michael (Ramen Software)