Skip to main content

Over 150 LLM Providers · Over 5,300 Models The most extensible AI-powered pentesting platform. Open source. Star on GitHub

CVE-2022-50569

7.8 · HIGH
Published Oct 22, 2025 EPSS 0.16% (6th pctl)

Overview

CVE-2022-50569 is a high-severity vulnerability. It was published on October 22, 2025 and has a CVSS 3.1 base score of 7.8 (HIGH).

This vulnerability has a CVSS 3.1 base score of 7.8, rated HIGH. It requires local or adjacent network access to exploit. Some level of privileges is required for exploitation.

Technical Description

In the Linux kernel, the following vulnerability has been resolved:

xfrm: Update ipcomp_scratches with NULL when freed

Currently if ipcomp_alloc_scratches() fails to allocate memory

ipcomp_scratches holds obsolete address. So when we try to free the

percpu scratches using ipcomp_free_scratches() it tries to vfree non

existent vm area. Described below:

static void * __percpu *ipcomp_alloc_scratches(void)

{

...

scratches = alloc_percpu(void *);

if (!scratches)

return NULL;

ipcomp_scratches does not know about this allocation failure.

Therefore holding the old obsolete address.

...

}

So when we free,

static void ipcomp_free_scratches(void)

{

...

scratches = ipcomp_scratches;

Assigning obsolete address from ipcomp_scratches

if (!scratches)

return;

for_each_possible_cpu(i)

vfree(*per_cpu_ptr(scratches, i));

Trying to free non existent page, causing warning: trying to vfree

e

Remediation

Check the references section for vendor advisories, patches, and mitigation guidance. If immediate patching is not possible, review the CVSS vector to understand the attack surface and apply compensating controls such as network segmentation or access restrictions.

Frequently Asked Questions

What is CVE-2022-50569?

CVE-2022-50569 is a high-severity vulnerability. It was published on October 22, 2025 and has a CVSS 3.1 base score of 7.8 (HIGH).

How severe is CVE-2022-50569?

This vulnerability has a CVSS 3.1 base score of 7.8, rated HIGH. It requires local or adjacent network access to exploit. Some level of privileges is required for exploitation.

How do I fix or remediate CVE-2022-50569?

Check the references section for vendor advisories, patches, and mitigation guidance. If immediate patching is not possible, review the CVSS vector to understand the attack surface and apply compensating controls such as network segmentation or access restrictions.

How can CyberStrike help with CVE-2022-50569?

CyberStrike's AI-powered security agents can automatically detect CVE-2022-50569 across your infrastructure using autonomous pentesting, DAST scanning, and HackBrowser. The platform continuously monitors for known vulnerabilities and provides actionable remediation guidance prioritized by real-world exploitability.