Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkg/report/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ prioritize the triaging queue.
KASAN detected bugs are typically more dangerous than KMSAN detected bugs. And KMSAN detected bugs are typically more
dangerous than KCSAN detected bugs.

### Use-after-free write > invalid-free(double-free) > use-after-free read.
### Invalid-free (double-free) >= use-after-free write > use-after-free read.

### KASAN write > KASAN read
KASAN write indicates an out-of-bounds or use-after-free write operation. Any uncontrolled write to kernel memory is
Expand Down
4 changes: 2 additions & 2 deletions pkg/report/impact_score.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ import (
// entries are considered more severe.
var impactOrder = []crash.Type{
// Highest Priority (Direct Memory Corruption - Write)
crash.KASANInvalidFree,
crash.KFENCEInvalidFree,
crash.KASANUseAfterFreeWrite,
crash.KASANWrite,
// High Priority (Memory Corruption)
crash.KASANInvalidFree,
crash.KFENCEInvalidFree,
crash.KFENCEMemoryCorruption,
crash.KASANUseAfterFreeRead,
crash.KMSANUseAfterFreeRead,
Expand Down
Loading