It seems like a process called "downloader.exe" in the C:\Program Files\Bitdefender\Bitdefender Security is causing multiple reboots of my machine. The crash dump indicates:
Bug Check Summary
PAGE_FAULT_IN_NONPAGED_AREA (0x50)
- Error Meaning: A process attempted to access memory that was marked as non-paged, but the page was either invalid, corrupted, or freed. This typically signals a faulty driver, hardware failure, or bad memory access in kernel mode.
Key Bugcheck Parameters
Parameter | Meaning |
---|
Arg1: fffff8014baaeb30 | Memory address attempted to be accessed |
Arg2: 0000000000000010 | Attempted instruction was a write |
Arg3: fffff8014baaeb30 | Address where the crash instruction occurred |
Arg4: 0000000000000002 | Reserved |
The instruction attempted to execute code at fffff8014baaeb30
, which is not a valid code location. This matches:
AV.Type: Execute
Primary Fault Location
FAILED_INSTRUCTION_ADDRESS: fffff801`4baaeb30 ?? ???
This address is invalid or was freed, leading to an access violation on execute.
Faulting Process
PROCESS_NAME: downloader.exe
This is the user-mode process running at the time of the crash. If this executable is unfamiliar or unsigned, it could indicate:
- A bad 3rd-party app
- Malware (if not validated)
- A corrupt or incompatible file system filter
🔗 Call Stack Highlights
nt!KeBugCheckExnt!MiSystemFault+0x7a0nt!MmAccessFault+0x630nt!KiPageFault+0x38b0xfffff801`4baaeb30nt!KeInitializeEvent+0x7FLTMGR!FltpAllocateIrpCtrlInternal+0x5cb
Observations:
- The crash occurred during page fault resolution (
MiSystemFault
) FLTMGR.sys
(Filter Manager) was involved — suggesting a file system filter driver or antivirus may have hooked the I/O path- Faulting address was passed through the FLT Manager stack
VirusTotal indicates it is not malicious which makes sense since it is a BitDefender .exe.