Windows error 0x0000009C, 156

Detailed Error Information

SIGNAL_REFUSED[1]

MessageThe recipient process has refused the signal.
Declared inwinerror.h

This appears to be a raw Win32 error. More information may be available in error 0x8007009C.

MACHINE_CHECK_EXCEPTION[2]

This is a Blue Screen of Death stop code. More information is available in the Knowledge Base article Bug Check 0x9C: MACHINE_CHECK_EXCEPTION.

HRESULT analysis[3]

This is probably not the correct interpretation of this error. The Win32 error above is more likely to indicate the actual problem.
FlagsSeveritySuccess

This code indicates success, rather than an error. This may not be the correct interpretation of this code, or possibly the program is handling errors incorrectly.

Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode0 (0x000)
NameFACILITY_NULL[3][1]
DescriptionThe default facility code.[3][1]
Error Code156 (0x009c)

Questions

4votes
2answers

ring0 APC DLL injection crash target process on win7

I am trying to implement a ring0 dll injector driver and implement by APC injection. the code work perfectly on win XP. by on win7, it keeps crashing the target process. here is the code: NTSTATUS InjectDll( IN ULONG ulProcessId, HANDLE hEvent, IN TCHAR * pszDllPath ) { NTSTATUS ntStatus; [...] read more
crash
driver
apc
dll-injection
1vote
1answer

Windows Server 2003 + WMI = Regular Bluescreens

I have serious problems with machines running Windows Server 2003 x64 Edition. I've written an application which queries periodically the system status using the WMI database. The database is opened/closed for each request separately to make sure that any memory it has used get's free'd asap. Anyway, from time to [...] read more
windows-server-2003
wmi
bsod
1vote
0answers

C - Get File Bytes as Unsigned Int

I need the bytes of a BIN file converted to a unsigned int, in this format (JavaScript): p.write4(shellcode.add32(0x00000000), 0x00000be9); p.write4(shellcode.add32(0x00000004), 0x90909000); p.write4(shellcode.add32(0x00000008), 0x90909090); p.write4(shellcode.add32(0x0000000c), 0x90909090); p.write4(shellcode.add32(0x00000010), 0x0082b955); p.write4(shellcode.add32(0x00000014), 0x8948c000); p.write4(shellcode.add32(0x00000018), 0x415741e5); p.write4(shellcode.add32(0x0000001c), 0x41554156); p.write4(shellcode.add32(0x00000020), 0x83485354); p.write4(shellcode.add32(0x00000024), 0x320f18ec); p.write4(shellcode.add32(0x00000028), 0x89d58949); p.write4(shellcode.add32(0x0000002c), 0x64b948c0); p.write4(shellcode.add32(0x00000030), 0x77737069); p.write4(shellcode.add32(0x00000034), 0x49000000); p.write4(shellcode.add32(0x00000038), 0x4120e5c1); p.write4(shellcode.add32(0x0000003c), 0x000200bc); p.write4(shellcode.add32(0x00000040), [...] read more
c
0votes
1answer

MACHINE_CHECK_EXCEPTION, Windows7

3 year old Notebook HP Pavilion dv7 is displaying an error which is: > MACHINE_CHECK_EXCEPTION > > STOP: 0x0000009C (0x0000000000000000, 0xFFFFF880009F1C70, 0x0000000000000000, > 0x0000000000000000) I did some research on google and such and i know it is CPU or Power Supply but no further info or how to resolve the [...] read more
windows-7
cpu
0votes
2answers

windows xp randomly reboots while transcoding videos with mencoder

A WinXP box (SP3, 32-bit) reboots randomly after I initiate batch transcoding of some videos using console mencoder. Event log has the following record: > The computer has rebooted from a bugcheck. The bugcheck was: 0x0000009c > (0x00000005, 0x8054e5f0, 0xb2000010, 0x04000e0f). A dump was saved in: > C:\WINDOWS\Minidump\Mini100310-04.dmp. I understand [...] read more
windows-xp
bsod
reboot
0votes
0answers

Analysis crash info about the Flutter release app

How to get useful info about the crash in the released app created by Flutter? In the Firebase Crashlytics section can't show where the dart code crashed. I found App.framework and App.frameword.DSYM would be created when Archive production app. After run command below: dwarfdump --arch arm64 ./App.frameword.DSYM >> ./xxx-dart-symbol-map.log I [...] read more
flutter
dart
0votes
0answers

How to implement poll function into Linux kernel module?

I'm trying to implement polling functionality into my simple Linux kernel module called gpio_driver for my Raspberry Pi which should notify the user space poll function about the change of state of one of the GPIO pins (button push). What I did in my gpio_driver is set the internal pull [...] read more
c
linux-kernel
linux-device-driver
polling
gpio
0votes
2answers

Why is the string specified in `LD_PRELOAD` loaded on the memory of setuid executables in RedHat 6.2?

First of all, let me tell you the context. I'm solving problems of the wargame called The lord of the BoF, which is based on RedHat Linux 6.2, which has no address space layout randomization(ASLR), NX bit, ASCII armor, etc.. And the gcc there does not make any dummy when [...] read more
linux
security
memory
ld-preload
-1votes
1answer

GetFullPathName wont get DLL Path

I am trying to load a DLL from resource and use SetWindowsHook to inject DLL to all Process GetFullPathName doesnt Seem to Work in this case, Now i am asking what would I do to get the DLL Path in this case, My code looks like this. I am new [...] read more
c++
resources

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/bug-check-code-reference2
  3. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0