We are using cdb (command line version of winDBG) to resolve a cab.
For getting the output in a file we are using the -logo output to specify the output file.
For a certain cab we are getting "CvRegToMachine(x86) conversion failure for 0x7536" more than a million times.
Basically we get a huge resolved code log, nearly 1GB, and all of it filled with the above string on each line.
We are using the following cdb command
cdb -z "abc.cab" -y "SymbolsPath" -G -logo "outputfile" -lines -c ".kframes 100;!analyze -v;!load msec.dll;!exploitable -v;vertarget;lmv;q"
Does anyone have any clue about what could be wrong here?
cdb/windbg output too large
520 Views Asked by rohitwali At
1
you
cannot use -c and -G at the same time
-c needs the first break to read the initialcommand and act upon it if you need to run the code use g; at the end of -c commands
also many times
-c commands need to be provided first
and the debugee needsto be at the end of commandline
.load
not!load
should be used to load third party extensionsthe string emitted
"CvReg.........."
seems to be related to EitherSYMFLAG_NULL
orSYMFLAG_REGISTER
in theFlags member of SYMBOLINFO Struct
.a sample trial didnt cross that code path in my machine so either the corrupt dmp or more information regarding the dmp file may be needed to find the reason for the spew
creating dump
**loading dump as debugees(cdb) debuggee (foo.cab) and looking around **
doing and uf on this function yields the check where SymbolInfo->Flags is
checked and decided my sample dump above doesnt enter the path