WinDbg is a user and kernel mode debugger for Windows. It can be used to debug both native and managed code.
0
votes
1answer
33 views
Determining which objects ZwWaitForMultipleObjects is waiting on
Looking at a crash dump in windbg, I can see that all current threads are stalled at
> ~2k
ChildEBP RetAddr
00d2fcc8 7d4e27dc ntdll_7d600000!ZwWaitForMultipleObjects+0x15
or SingleObject ...
0
votes
1answer
20 views
Windbg, how to show more code?
I am new to using windbg, I normally use debuggers such as ollydbg or dissassemblers such as ida pro. However, I am wanting to debug 64 bit assembly code.
In ollydbg and ida pro's interface, it will ...
0
votes
1answer
34 views
WinDbg range error while searching jump
I am trying to search jump in a programs' dll but when I do that I am taking range error. What's the problem with that?
My WinDbg output is below:
0:000> g
ModLoad: 76390000 763ad000 ...
0
votes
1answer
18 views
Command or steps to list out the callstack of other threads where a particular pointer is used?
I am new to using Windbg. I got a crash dump of my application. Using Windbg I could able to get the callstack of crash and found that dynamic_cast is failing for a pointer. Since pointer is corrupted ...
0
votes
1answer
28 views
difference between Idle worker thread count and MinThread count in a dump
Can anyone explain this "idle" and "minLimit" values. What "idle" and "MinLimit" means? How are they related?
0:000> !threadpool
Work Request in Queue: 4
--------------------------------------
...
0
votes
0answers
22 views
How to specify 32-bit Windows Debugger in Visual Studio 2012 when doing kernel mode debugging
I have a 64-bit host/target, but I need to use the 32-bit version of Windows Debugger so I can load some 32-bit debugging tool libraries. This works fine when invoking windbg.exe directly, but when I ...
2
votes
0answers
22 views
What does “internal” mean in windbg “!heap -a” output [duplicate]
I am using windbg command "!heap -a " to check the memory status, and get the following results.
what does internal mean at the end of this entry "00d168f0: 03d20 . 06b48 [101] - busy (6b40) ...
0
votes
1answer
33 views
Windbg “Processes and Threads” window doesn't change context when kernel debugging
My "Processes and Threads" window is stuck on 000:f0f0f0f0 ntkrnlpa.exe.
I tried changing the context in various ways, none of which affected the window.
My actions:
kd> !process 0 0 notepad.exe
...
0
votes
0answers
31 views
Is it possible to analyze windows message queue from a crash dump?
My application once crashed because of windows message queue limit was exceeded. This bug is very hard to reproduce. How do I analyze windows message queue contents from a crash dump?
1
vote
0answers
41 views
WinDBG debugging a C++ /CLI module
I'm trying to use WINDBG to debug a C++/CLI module loaded in some application (Autodesk Revit). The problem is that the breakpoints set in unmanaged class methods are not hit. I have this class :
...
4
votes
2answers
60 views
windbg: set data breakpoint at dll + offset
I want to set a data-write breakpoint on the value of xul.dll+0x7d760, hopefully using a command script.
I can print the base address of xul.dll using lm, and manually set the breakpoint with
ba w ...
1
vote
1answer
61 views
WinDBG still compatible with XP?
I was looking for a debugger for windows, other than gdb, which is freely accessible. I found windbg and it looks quite good so I wanted to give it a try. Now when I go to the MSDN page it offers to ...
0
votes
0answers
56 views
[windbg][CDB] Trying to quit the debugger automatically within powershell
I am trying to implement following code snippet in powershell
$fname_final = $fn + $i
$fname_final = $fname_final.replace(" ","_")
echo $fname_final
$logname = $fname_final + ".log"
echo $logname
...
1
vote
1answer
34 views
Windbg: Is there a way to Import/Export native breakpoints?
Is there a way to Import/Export native breakpoints?
What I do now is have a notepad of interesting breakpoints like the following.
bp foo!bar;bp foo!barbar; bp foo!barbarbar; .................
I ...
1
vote
2answers
80 views
SOS does not support the current target architecture
I am trying to use windbg to research a hang dump file created on an x64 machine for our x86 process. This is a 4.0 x86 application, so just to get an unmanaged stack, I had to do the following:
...
0
votes
2answers
94 views
How could it happen? (in debugging minidump file)
I'm tracing dmp file which seems like crashed calling virtual function of broken object instance.
it seems that vft of the broken object pointer pointed wrong address(0x3822a497) and program crashed ...
0
votes
0answers
34 views
How to View KdPrint Messages WDK 8
I just started to learn driver development using VS2012 + WDK8. I have some KdPrint statements in DriverEntry to print out some messages. Where can I get these messages?
0
votes
1answer
37 views
windbg - how can I avoid the “Press Enter to continue”? when executing .shell
windbg - how can I avoid the "Press Enter to continue"?
0:031> .shell "${$arg2}" ProcessDV "${$arg1}"
<.shell waiting 1 second(s) for process>
.shell: Process exited
Press ENTER to continue
...
0
votes
0answers
31 views
windbg losing argument objects after for_each_frame
The following script loses the values of arg1 and arg2.
Save this script as "c:\testing.txt"
.echo first argument is: ${$arg1}
.echo second argument is: ${$arg2}
~*e .echo thread ; !for_each_frame ...
1
vote
1answer
64 views
Is there a way in windbg to print the current thread id and frame id?
A bit of a follow up to: Is there a way to itereate through all frames in windbg?
~*e .echo Thread Frames and Locals:; !for_each_frame dv
Is there a way to echo something like:
Current ...
0
votes
0answers
40 views
dbghelp.dll has a version mismatch with the debugger
I have been getting the following error while trying to open the crash dump file in the WinDbg....
I am using 64bit version and having windows 7 OS.
versionof the WinDbg is 6.11
Error:
"dbghelp.dll ...
0
votes
1answer
39 views
Is there a way to itereate through all frames in windbg?
Is there a way to iterate through all frames in windbg? (or to run dv for each stack frame)
For example: ~*e !mk -cc will iterate through all threads and call !mk -cc
What I want is basically:
For ...
0
votes
1answer
35 views
How to debug a driver file (INF) in vs2012
I followed the instruction in the url below till Step 10 to develop a helloworld kernel-mode driver. Everything seems all right. In Step 11, I ran windbg command bp kmdfsmall!DriverEntry, then F5. ...
2
votes
0answers
69 views
Interpreting data from crash dump using winDbg
I am trying to debug a WCF service which is crashing from time to time. I have created a crash dump file using adplus, that was the easy part, I used this command.
adplus.exe -crash -pmn ...
0
votes
2answers
64 views
detatch windbg kernel debugger & keep target running
Consider below scenario:
I have setup debug over serial port on a windows 7 system.
On another machine, I have installed windbg & connected serial cable between them.
When I start the target ...
0
votes
1answer
26 views
How do I copy my private PDBs into my symbol cache, using the symbol tree folder structure?
I have a set of PDBs and I want to store them in my cache so that they'll be available to various tools (windbg.exe, wpa.exe) and so that I know they'll be backed up somewhere, rather than risk ...
1
vote
0answers
98 views
How does Windows keeps track of the size of VirtualAllocdBlocks?
I wonder how windows keeps track of the size of the "VirtualAllocdBlocks". According to WinDBG the memory blocks are managed in doubly linked lists. But this struct (_LIST_ENTRY) only contains two ...
0
votes
1answer
48 views
When windows releases threads?
Our product consumes a lot of windows resources, such as socket handles, memory, threads and so on. Usually there are 700-900 active threads, but in some cases product can rapidly create new threads ...
0
votes
1answer
94 views
Debugging a disappearing .NET app with ADPlus, getting CONTRL_C_OR_Debug_Break exception
Recently, we've had a 64-bit .NET 4.0 process with some unmanaged code crash by simply disappearing. No event viewer entries, no windows error dialogs, and our current logging and trace statements ...
0
votes
0answers
45 views
Windbg remote debugging a user mode dll
I have a usermode dll that's loaded from a kernel driver that I want to debug on machine B. The symbols are on machine A, which is connected to machine B via 1394.
What's the best way to go about ...
1
vote
1answer
36 views
Is it possible to use the threads/locals window when debugging a user process from kernel mode WinDBG?
I'm debugging a filter driver and looking at where explorer is stuck in said driver. Here's explorer:
PROCESS 86cce2a0 SessionId: 1 Cid: 0b98 Peb: 7ffdb000 ParentCid: 0aac
DirBase: ...
0
votes
0answers
145 views
windows kernel debugging over a network issues
I'm trying to get windows kernel debugging to work over a network.
My NIC is on the list of "Network Adapters Supported for Debugging."
...
3
votes
2answers
93 views
Crash dump with unknown origin
I have my application crashing with following CallStack on the error (from WinDbg):
ntdll!ZwWaitForMultipleObjects+0xa
KERNELBASE!WaitForMultipleObjectsEx+0xe8
...
0
votes
1answer
149 views
Access violation - code c0000005 (!!! second chance !!!)
I am trying kernel debugging using windbg and vmware. While i try to specify break point for my own driver i got an output like
Access violation - code c0000005 (!!! second chance !!!)
...
0
votes
1answer
86 views
How to get address of Shadow SSDT?
I want to get the address of SSDT and Shadow SSDT using windbg.Windbg successfully connected to vmware .which commmand i have to use to get the address of these tables?
0
votes
1answer
47 views
How to disassembly my driver?
I am trying kernel debugging using vmware and windbg.I have connected two OS and all symbols are loaded successfully.If I want to see my driver in memory how can I disassembly that?
I have tried lm ...
0
votes
1answer
121 views
No symbol found in windbg
I am trying to debug kernel in remote debugging using vmware and windbg.I have connected to target machine .My driver name is comint32.I have started the service of my driver in target machine .I want ...
0
votes
3answers
81 views
Kernel debugging?
I am trying to debug the kernel using windbg.My host is windows 7 x64.My target is windows 7 x86 which is installed in vmware.I have successfully connected to target machine.But often I am getting an ...
0
votes
2answers
204 views
WinDBG w3wp.exe x64 hang dump WRONG_SYMBOLS
I am analyzing a hanging ASP.NET MVC website problem running under a 64 bit ASP.NET v4.0 AppPool in IIS 7.5, Windows 2008 R2 64. I have taken a dump through taskmgr, and am analysing in WinDBG x64 on ...
0
votes
0answers
82 views
Windows C++ heap growing but not the number of objects in the heap
I have an ANSI C++ application, which is leaking memory. When I look at it in Windbg, I see that a particular heap is growing in !heap -s command, but when I investigate the number of objects in the ...
0
votes
1answer
87 views
using windbg for monitoring a memory leak
Monitoring a memory leak using WinDbg ? I am looking for a way to get a deeper stack-trace using !htrace (!htrace enable --> !htrace -snapshot --> !htrace -diff) to nail down a MEM leak we are having. ...
2
votes
1answer
42 views
how to check a object who create and hold it when no gcroot in windbg
i get a LOH object,and want to know who create and hold it.
!do 28d2a0a0
28d2a0a0 object no hold any object and not by other object hold.which function method to created it?thanks.
5
votes
2answers
156 views
What are .ni.dll and .ni.exe files in a minidump?
I got a minidump from the Windows Store Apps submission process (sent by a reviewer) because of a crash in my app. I am having problems loading the symbols for my app, because the error occurs inside ...
1
vote
1answer
137 views
WinDbg: Version mismatch of dbghelp.dll when trying to attach to a process
Over a year ago I already used WinDbg and DebugDiag to find a memory leak in a JNI native DLL that we use from within Java. Now I am searching for a thread handle leak.
I created a memory dump using ...
0
votes
0answers
75 views
IE 8 crashes when using JAWS 12
I need some help analysing a dump file.
When i navigate our application using IE8 and JAWS12 it, it causes IE8 to crash. So i am not able to debug it, or use the profiler.
I obtained the dump by ...
0
votes
0answers
106 views
.net application memory leak when load html file in HtmlAgilityPack
i have a lot of html file need to read and parse by HtmlAgilityPack.when run a application the memory usage always increase immediately and release memory slow.
when i use a windbg tool and check a ...
0
votes
2answers
133 views
Understanding WinDbg report to findout memory leaks
I know that my application is leaking memory & I used WinDbg tool to profile. I attached W3WP process and ran following command:
!address –summary
It generated following result.
I want ...
1
vote
1answer
100 views
Windbg !heap -stat -h command How to get more than 20 entries
I am looking into a heap, which has many few allocations and number of entries are much more than 20, which is the default of !heap -stat -h command. For example, if you see below, the numbers don't ...
2
votes
0answers
64 views
Windbg _imp__xxx symbol's address seems to be dereferenced using the data segment register
I am learning Windbg. And for practice, I am debugging a 64bit fre app that create a process.
I added a breakpoint on CreateProcess (bp KERNEL32!CreateProcessWStub)
When the breakpoint is hit, I ...
1
vote
1answer
87 views
How to set windbg as postmortem debugger for elevated applications?
I have windbg registered as postmortem debugge (via -I command-line switch) and all works fine for non-elevated applications. But if elevated applications crashes, windbg starts and displays "Could ...
