Answer in brief
CVE-2024-53107 records a Unknown severity vulnerability in fs/proc/task_mmu: prevent integer overflow in pagemap_scan_get_args(). The current sources do not mark it as known exploited. The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
Analysis pending evidence review
HOL Guard separates source facts from reviewed analysis. See the methodology.
A CVSS score is not reported in the current record. The current sources do not mark it as known exploited. Treat this as a source-backed prioritization signal, not a statement about your environment.
Analysis status
Analysis pending evidence review
Factual feed record only; HOL analysis is not approved for indexing. Read the methodology.
The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
| Package | Affected range | Fixed version |
|---|---|---|
| Linux/Linuxgeneric | >=52526ca7fdb905a768a93f8faa418e9b988fc34b <adee03f8903c58a6a559f21388a430211fac8ce9 || >=52526ca7fdb905a768a93f8faa418e9b988fc34b <669b0cb81e4e4e78cff77a5b367c7f70c0c6c05e | adee03f8903c58a6a559f21388a430211fac8ce9, 669b0cb81e4e4e78cff77a5b367c7f70c0c6c05e |
| Linux/Linuxgeneric | 6.7 | Not reported |
Published upstream
Dec 2, 2024
Evidence: source:cvelist:source_dates:source-dates:recordSource modified
Aug 5, 2026
Evidence: source:cvelist:source_dates:source-dates:recordFirst seen by HOL
Aug 5, 2026
In the Linux kernel, the following vulnerability has been resolved: fs/proc/task_mmu: prevent integer overflow in pagemap_scan_get_args() The "arg->vec_len" variable is a u64 that comes from the user at the start of the function. The "arg->vec_len * sizeof(struct page_region))" multiplication can lead to integer wrapping. Use size_mul() to avoid that. Also the size_add/mul() functions work on unsigned long so for 32bit systems we need to ensure that "arg->vec_len" fits in an unsigned long.
Quoted source text, attributed separately from HOL analysis.
Answer in brief
CVE-2024-53107 records a Unknown severity vulnerability in fs/proc/task_mmu: prevent integer overflow in pagemap_scan_get_args(). The current sources do not mark it as known exploited. The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
Analysis pending evidence review
HOL Guard separates source facts from reviewed analysis. See the methodology.
A CVSS score is not reported in the current record. The current sources do not mark it as known exploited. Treat this as a source-backed prioritization signal, not a statement about your environment.
Analysis status
Analysis pending evidence review
Factual feed record only; HOL analysis is not approved for indexing. Read the methodology.
The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
| Package | Affected range | Fixed version |
|---|---|---|
| Linux/Linuxgeneric | >=52526ca7fdb905a768a93f8faa418e9b988fc34b <adee03f8903c58a6a559f21388a430211fac8ce9 || >=52526ca7fdb905a768a93f8faa418e9b988fc34b <669b0cb81e4e4e78cff77a5b367c7f70c0c6c05e | adee03f8903c58a6a559f21388a430211fac8ce9, 669b0cb81e4e4e78cff77a5b367c7f70c0c6c05e |
| Linux/Linuxgeneric | 6.7 | Not reported |
Published upstream
Dec 2, 2024
Evidence: source:cvelist:source_dates:source-dates:recordSource modified
Aug 5, 2026
Evidence: source:cvelist:source_dates:source-dates:recordFirst seen by HOL
Aug 5, 2026
In the Linux kernel, the following vulnerability has been resolved: fs/proc/task_mmu: prevent integer overflow in pagemap_scan_get_args() The "arg->vec_len" variable is a u64 that comes from the user at the start of the function. The "arg->vec_len * sizeof(struct page_region))" multiplication can lead to integer wrapping. Use size_mul() to avoid that. Also the size_add/mul() functions work on unsigned long so for 32bit systems we need to ensure that "arg->vec_len" fits in an unsigned long.
Quoted source text, attributed separately from HOL analysis.