bsod

“Symbols can not be loaded” when trying to read dump

早过忘川 提交于 2020-01-01 05:01:08
问题 I have an application that sometimes causes a BSOD on a Win XP machine. Trying to find out more, I loaded up the resulting *.dmp file (from C:\Windows\Minidump), but get this message when in much of the readout when doing so: ********************************************************************* * Symbols can not be loaded because symbol path is not initialized. * * * * The Symbol Path can be set by: * * using the _NT_SYMBOL_PATH environment variable. * * using the -y <symbol_path> argument

programmatically trigger BSOD

房东的猫 提交于 2019-12-28 09:20:14
问题 Purely for academic reasons. is it possible to programmatically cause a BSOD to occur under windows xp/windows 7 in C#/.NET. I'm suggesting there's got to be some dirty hack, or some vulnerability to abuse to cause this. I'm looking for a snippet of code to run that guarantees a BSOD in a finite period of time. 回答1: Killing process "csrss.exe" causes BSOD. But you need Administrator privileges to do this. I'm not sure there is a way to do this purely with restricted privileges. EDIT: Yep, it

Visual Studio 2008, Vista x64 and Kaspersky = blue screens (BSOD)?

橙三吉。 提交于 2019-12-24 05:53:11
问题 We just got cool new workstations - 8 GB, 24 inches screens, Vista x64 and a lot of power -- I just love it ! But we are facing some really annoying problems : BSODs ! We found out that the instant you install Kaspersky MP4 on a workstation, you can get BSOD while debugging ASPX pages. You can get one BSOD in a week or three in an hour... Those who : Don't have Kaspersky Don't debug ASPX pages Don't work... do not got BSOD. Note : We use usually use IE8 but it also have happened in Firefox.

Can a user mode fault cause a Blue Screen of Death?

时间秒杀一切 提交于 2019-12-13 04:29:37
问题 Can a user mode fault cause a Blue Screen of Death (BSOD)? Is it possible that a memory access violation like double freeing memory can cause a blue screen or only a kernel mode exception (like a driver exception) cause Windows to crash? 回答1: Not directly. Direct fault will cause an exception and program crash. To cause a BSOD, the user mode application must communicate either directly or indirectly with a kernel mode driver that is possible not robust enough to protect itself from invalid

Why Slack is causing Windows 10 BSOD?

天涯浪子 提交于 2019-12-10 13:44:24
问题 I have experienced BSOD every time I have resumed laptop from sleep. I have analyzed the minidump using WinDbg and the causing processes is always Slack.exe . I have googled a bit I have found https://www.tenforums.com/bsod-crashes-debugging/80584-0x139-bsods-daily-when-waking-up-sleep.html. Their suggestion is not to use Windows 10 Slack version or close it before going to sleep. What is the real reason that Slack.exe is causing this BSOD? I assume that Slack does not directly contain any

Keyboard filter driver unload BSOD

陌路散爱 提交于 2019-12-08 03:54:52
问题 I have developed a keyboard filter driver that changes the keyboard button '1' (above the Q button) to '2'. This driver works fine. However, after Unload is executed, pressing the keyboard button causes BSOD. If the driver is loaded and unloaded without pressing the keyboard button, it will be unloaded normally. When I check it with Windbg, my driver's ReadCompletion () function is called even after it is unloaded. I do not know why this is happening even though I've called IoDetachDevice ()

Debugging/bypassing BSOD without source code

妖精的绣舞 提交于 2019-12-07 18:16:27
问题 Hello and good day to you. Need a bit of assitance here: Situation : I have an obscure DirectX 9 application (name and application details are irrelevant to the question) that causes blue screen of death on all nvidia cards (GeForce 8400GS and up) since certain driver version. I believe that the problem is indirectly caused by DirectX 9 call or a flag that triggers driver bug. Goal : I'd like to track down offending flag/function call (for fun, this isn't my job/homework) and bypass error

Using HalDisplayString For Custom Blue Screen Of Death

故事扮演 提交于 2019-12-07 06:01:10
问题 I was reading a while ago somewhere online that you could make a custom BSOD. I don't remember where but I know it had something to with calling HalDisplayString which would switch to the bluescreen and print a message. I tried calling HalDisplayString from a simple driver but nothing happens. I was wondering if anyone could point me in the right direction. Here is the code to the driver. #include "ntddk.h" #include "wdm.h" NTSYSAPI VOID NTAPI HalDisplayString( PCHAR String ); NTSYSAPI VOID

Create BSOD from user mode?

大兔子大兔子 提交于 2019-12-07 05:46:40
问题 I was getting bored with my XP box one day, so I decided to try some of the answers to this question to see if any of them would cause a BSOD. They didn't, and they seemed like they would be the most likely to do that, so I was wondering if it is possible to trigger a BSOD from user-mode in C/C++, and if so, how? 回答1: It seriously difficult to make a BSOD from user mode unless the user mode program interacts with buggy drivers (may be a particular sequence of operations can reveal the bugs in

Debugging/bypassing BSOD without source code

巧了我就是萌 提交于 2019-12-05 18:23:53
Hello and good day to you. Need a bit of assitance here: Situation : I have an obscure DirectX 9 application (name and application details are irrelevant to the question) that causes blue screen of death on all nvidia cards (GeForce 8400GS and up) since certain driver version. I believe that the problem is indirectly caused by DirectX 9 call or a flag that triggers driver bug. Goal : I'd like to track down offending flag/function call (for fun, this isn't my job/homework) and bypass error condition by writing proxy dll. I already have a finished proxy dll that provides wrappers for IDirect3D9,