You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The process of fetching symbols seems to be pretty simple. To do so, you need the PDB filename and hash, and then you can issue a request to Microsoft's symbol server.
The process of fetching symbols seems to be pretty simple. To do so, you need the PDB filename and hash, and then you can issue a request to Microsoft's symbol server.
E.g: for ntoskrnl.exe
Or, for the compressed copy:
The symbol string commonly stored in
_NT_SYMBOL_PATH
takes the following form:E.g:
More advanced forms here.
Implementation
In lieu of supporting the full
_NT_SYMBOL_PATH
syntax, we'll just support the server and folder portions.References
https://randomascii.wordpress.com/2013/03/09/symbols-the-microsoft-way/
https://randomascii.wordpress.com/2020/03/14/creating-a-public-symbol-server-easily/
https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/symbol-store-folder-tree
https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/advanced-symsrv-use
The text was updated successfully, but these errors were encountered: