crash-dumps

Windows crash dump analysis

∥☆過路亽.° 提交于 2021-02-08 09:51:04
问题 I am using the DebugDiag to analyze a crash dump on windows. This is the report summary description: In XXXX.dmp the assembly instruction at msvcr120!abort+4a in C:\Windows\System32\msvcr120.dll from Microsoft Corporation has caused an unknown exception (0x40000015) on thread 26 And the call stack is: ntdll!NtWaitForMultipleObjects+a KERNELBASE!WaitForMultipleObjectsEx+e8 kernel32!WaitForMultipleObjectsExImplementation+b3 kernel32!WerpReportFaultInternal+215 kernel32!WerpReportFault+77

Get stack trace of exceptions in heap

▼魔方 西西 提交于 2021-01-27 13:38:58
问题 I use WinDbg and I want to get exception details. With help of !dumpheap -type Exception command get a list of exceptions in dump but how can I access these exception details? 000007fef84e1298 1 160 System.StackOverflowException 000007fef84e1220 1 160 System.OutOfMemoryException 000007fef84e1388 2 320 System.Threading.ThreadAbortException 000007fef84e1038 2 320 System.Exception 000007fef84ec220 6 384 System.UnhandledExceptionEventHandler 000007fef746ea90 10 1760 System.Net.WebException

understanding stack trace of a segmentation fault

余生长醉 提交于 2021-01-27 05:34:32
问题 I am doing an snprintf and getting a seg fault. when I loaded the core file on gdb like this: gdb my_executable core ; and did bt to get the backtrace, I got following: Program terminated with signal 11, Segmentation fault. #0 0x88207fc2 in memcpy () from /usr/lib/libc.so.6 (gdb) bt #0 0x88207fc2 in memcpy () from /usr/lib/libc.so.6 #1 0x88205eb6 in __sfvwrite () from /usr/lib/libc.so.6 #2 0x881fbc95 in strchr () from /usr/lib/libc.so.6 #3 0xbfbe6c14 in ?? () #4 0xbfbe69d8 in ?? () #5

How does the Linux kernel compile debuginfo and debuginfo-common packages in kernel-ml-4.19.1-1.el7.elrepo.x86_64

寵の児 提交于 2020-07-10 10:24:52
问题 The production host has been restarted frequently recently, kdump has been started, vmcore has been obtained, and the root cause is ready to be analyzed by crash, but the debuginfo and debuginfo-common packages of the same kernel version should be installed. But I did not find this version debuginfo package from http://debuginfo.centos.org/7/x86_64/ How to compile the debuginfo and debuginfo-common packages of the Linux kernel? Need to compile the kernel: kernel-ml-4.19.1-1.el7.elrepo.x86_64

ios how to read a crash log

倾然丶 夕夏残阳落幕 提交于 2020-06-27 08:58:12
问题 I've never had to read a crash log before so I'm admittedly a n00b in these waters. I can tell there was an EXC_BAD_ACCESS . How can I tell which object was released before it was supposed to be? *note this happens after waking the device while the app is active. It doesn't always happen, but often enough. ** EDIT ** A symbolicated crash log: Incident Identifier: 14FFD847-61CB-435B-9E98-C06B3B661429 CrashReporter Key: 7c5fd78cf04b38cfd2aa153f61eb1655ed671274 Hardware Model: iPhone4,1 Process:

Maven surefire plugin crahsing jvm on java 11 (Corrupted STDOUT by directly writing to native stream in forked JVM 1)

大兔子大兔子 提交于 2020-05-27 11:51:09
问题 Running a maven build using java 11, the build issues the following warning whilerunning tests: [WARNING] Corrupted STDOUT by directly writing to native stream in forked JVM 1. See FAQ web page and the dump file /home/thomas/code/irdeto-control/fps-license-service/fps/target/surefire-reports/2019-04-11T14-05-32_318-jvmRun1.dumpstream ...followed by the following stderr output after the build fails: $ cat error.message [ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire

How to generate windows memory dump when application crashes.?

橙三吉。 提交于 2020-04-18 09:56:04
问题 Is there an easy way of generating the memory dump for the crashed application? I have a situation in which the customer received the code which is generating the crash, as the code itself has no signal handlers for the backtrace generation on abort I was wondering if there is an easy way of telling windows to generate the memory dump of the crashing application. Ideal solution wouldn't involve the installation of the debug tools (or the code modification) but if this is not possible, it

How to generate windows memory dump when application crashes.?

只愿长相守 提交于 2020-04-18 09:55:49
问题 Is there an easy way of generating the memory dump for the crashed application? I have a situation in which the customer received the code which is generating the crash, as the code itself has no signal handlers for the backtrace generation on abort I was wondering if there is an easy way of telling windows to generate the memory dump of the crashing application. Ideal solution wouldn't involve the installation of the debug tools (or the code modification) but if this is not possible, it

Hows does one prevent passwords and other sensitive information from appearing in an ASP.NET dump?

坚强是说给别人听的谎言 提交于 2020-01-30 15:26:28
问题 How does one prevent passwords and other sensitive data submitted to and received from ASP.NET web pages in IIS/ASP.NET dump files? Steps to reproduce Using Visual Studio 2010, create a ASP.NET MVC 3 intranet application. Configure it to use IIS 7.5. Fire it up and register an account (say bob123 as the user and Pa$$w0Rd as the password. I'm assuming that the SQL Express database is created and the site is fully functional. Using task manager, right click on the w3wp process and create a dump

Postprocess drmemory error stacks with new symbols after process exits

点点圈 提交于 2020-01-17 06:09:04
问题 After running a set of tests with drmemory overnight I am trying to resolve the error stacks by providing pdb symbols. The pdb's come from a large samba-mapped repository and using _NT_SYMBOL_PATH at runtime slowed things down too much. Does anyone know of a tool that post-processes results.txt and pulls new symbols (via NT_SYMBOL_PATH or otherwise) as required to produce more detailed stacks ? If not, any hints for adapting asan_symbolize.py to do this ? https://llvm.org/svn/llvm-project