Hi all,
After using Norton for years on my old laptop (Ryzen 5900HS / RTX 3080) without any issues, it has been quite a mess on my new one. It’s an ASUS laptop with an Intel 275HX CPU, 64 GB of DDR5 RAM, and an NVIDIA RTX 5080 GPU. With light workloads the laptop was usually stable (still some BSOD’s, but usually only one per day), but as soon as I demanded serious power (typically when running newer games), I experienced several random BSODs. Sometimes after 5 minutes, sometimes after 30, but usually within an hour.
After hours of diagnosing multiple crash dumps (several per day whenever I required more performance), they all pointed to kernel corruption errors. I tried updating drivers, tested my RAM, uninstalled and reinstalled Windows, but the issue persisted. I tried reinstalling Windows, installing nothing except the latest drivers, then Norton, then Steam, ran a game — BSOD within 20 minutes. This issue has been happening since April, when I got the laptop.
The Norton Removal Tool didn’t fix the problem. Only after completely reinstalling Windows again and never installing anything from Norton did the laptop become fully stable. I can now run everything I want for hours without any crashes. This was impossible with Norton installed.
I used Copilot to summarize all the crash dumps I collected. Hopefully Norton or any of you can provide a solution; otherwise I’m forced to cancel my subscription. At this point it appears Norton is making my laptop unusable.
Below the analysis i asked CoPilot to make for me.
Formal Technical Summary: Kernel Corruption and BSOD Potentially Related to Norton Drivers (With Stack Trace Excerpts)
I am experiencing recurring Blue Screen of Death (BSOD) crashes on Windows. After analyzing multiple crash dumps in WinDbg, the failures appear to be caused by kernel‑level memory corruption, with Norton’s kernel drivers consistently present in the execution path shortly before the corruption occurs.
System Behavior
-
BSODs occur unpredictably during normal system usage.
-
Hardware diagnostics (CPU, GPU, RAM) show no instability.
-
Crashes began after installing or updating Norton Security.
-
Removing Norton results in complete system stability.
Crash Dump Analysis
Across several dumps, the bugchecks indicate corruption in nonpaged pool memory. The corruption is detected by core Windows components reacting to invalid kernel‑mode writes.
Common bugchecks observed:
-
0x1A MEMORY_MANAGEMENT
-
0x3B SYSTEM_SERVICE_EXCEPTION
-
0x50 PAGE_FAULT_IN_NONPAGED_AREA
In multiple dumps, the failing thread dereferences a null or freed pointer:
Code
FAULTING_IP:
nt!RtlpBreakWithStatusInstruction+0x1
00000000`00000000 ?? ???
EXCEPTION_CODE: (NTSTATUS) 0xc0000005 - The instruction at 0x%p referenced memory at 0x%p. The memory could not be %s.
Representative Stack Trace Excerpts
Below are excerpts from three separate dumps showing Norton drivers appearing immediately before memory corruption is detected.
Dump 1 – Network Filtering Path
Code
STACK_TEXT:
fffff801`4c2f8b28 symnet!SymNetFilterSend+0x3d
fffff801`4c2f8b70 symnet!SymNetProcessPacket+0x112
fffff801`4c2f8bd0 ndis!NdisSendNetBufferLists+0x1a3
fffff801`4c2f8c40 nt!KeExpandKernelStackAndCalloutInternal+0x1a9
fffff801`4c2f8d00 nt!MmAccessFault+0x1f4
fffff801`4c2f8e20 nt!KiPageFault+0x35e
The crash occurs immediately after symnet.sys processes a packet. The subsequent page fault indicates a write to invalid kernel memory.
Dump 2 – File System / Real‑Time Protection
Code
STACK_TEXT:
fffff801`3b7f9a20 symefa!EFALookupFileEntry+0x4c
fffff801`3b7f9a80 symefa!EFACheckAccess+0x1d7
fffff801`3b7f9b10 nt!ObpLookupObjectName+0x5f3
fffff801`3b7f9c40 nt!NtCreateFile+0x6b4
fffff801`3b7f9d00 nt!KiSystemServiceCopyEnd+0x13
The Norton file‑access driver (symefa.sys) appears directly in the chain leading to a corrupted object name lookup.
Dump 3 – Null Pointer Dereference
Code
STACK_TEXT:
fffff801`48df7b10 symtdi!SymTdiDispatch+0x29
fffff801`48df7b60 nt!IopXxxControlFile+0x3b7
fffff801`48df7c20 nt!NtDeviceIoControlFile+0x56
fffff801`48df7c80 nt!KiSystemServiceCopyEnd+0x13
FAULTING_INSTRUCTION:
symtdi!SymTdiDispatch+0x29:
mov rax, qword ptr [rcx] ; rcx = NULL
This dump shows a direct null‑pointer dereference inside symtdi.sys.
Additional Observations
-
No other third‑party drivers appear consistently in the traces.
-
Windows kernel components (ntoskrnl.exe, memory manager) are reacting to corruption rather than causing it.
-
The Norton UI process occasionally engages the NVIDIA GPU, though this may be unrelated.