Lookup for vulnerabilities affecting packages.

Vulnerability_idVCID-tsgr-5mwt-jkeh
Summary
runc vulnerable to container breakout through process.cwd trickery and leaked fds
### Impact

In runc 1.1.11 and earlier, due to an internal file descriptor leak, an attacker could cause a newly-spawned container process (from `runc exec`) to have a working directory in the host filesystem namespace, allowing for a container escape by giving access to the host filesystem ("attack 2"). The same attack could be used by a malicious image to allow a container process to gain access to the host filesystem through `runc run` ("attack 1"). Variants of attacks 1 and 2 could be also be used to overwrite semi-arbitrary host binaries, allowing for complete container escapes ("attack 3a" and "attack 3b").

Strictly speaking, while attack 3a is the most severe from a CVSS perspective, attacks 2 and 3b are arguably more dangerous in practice because they allow for a breakout from inside a container as opposed to requiring a user execute a malicious image. The reason attacks 1 and 3a are scored higher is because being able to socially engineer users is treated as a given for UI:R vectors, despite attacks 2 and 3b requiring far more minimal user interaction (just reasonable `runc exec` operations on a container the attacker has access to). In any case, all four attacks can lead to full control of the host system.

#### Attack 1: `process.cwd` "mis-configuration"

In runc 1.1.11 and earlier, several file descriptors were inadvertently leaked internally within runc into `runc init`, including a handle to the host's `/sys/fs/cgroup` (this leak was added in v1.0.0-rc93). If the container was configured to have `process.cwd` set to `/proc/self/fd/7/` (the actual fd can change depending on file opening order in `runc`), the resulting pid1 process will have a working directory in the host mount namespace and thus the spawned process can access the entire host filesystem. This alone is not an exploit against runc, however a malicious image could make any innocuous-looking non-`/` path a symlink to `/proc/self/fd/7/` and thus trick a user into starting a container whose binary has access to the host filesystem.

Furthermore, prior to runc 1.1.12, runc also did not verify that the final working directory was inside the container's mount namespace after calling `chdir(2)` (as we have already joined the container namespace, it was incorrectly assumed there would be no way to chdir outside the container after `pivot_root(2)`).

The CVSS score for this attack is CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:N (8.2, high severity).

Note that this attack requires a privileged user to be tricked into running a malicious container image. It should be noted that when using higher-level runtimes (such as Docker or Kubernetes), this exploit can be considered critical as it can be done remotely by anyone with the rights to start a container image (and can be exploited from within Dockerfiles using `ONBUILD` in the case of Docker).

#### Attack 2: `runc exec` container breakout

(This is a modification of attack 1, constructed to allow for a process inside a container to break out.)

The same fd leak and lack of verification of the working directory in attack 1 also apply to `runc exec`. If a malicious process inside the container knows that some administrative process will call `runc exec` with the `--cwd` argument and a given path, in most cases they can replace that path with a symlink to `/proc/self/fd/7/`. Once the container process has executed the container binary, `PR_SET_DUMPABLE` protections no longer apply and the attacker can open `/proc/$exec_pid/cwd` to get access to the host filesystem.

`runc exec` defaults to a cwd of `/` (which cannot be replaced with a symlink), so this attack depends on the attacker getting a user (or some administrative process) to use `--cwd` and figuring out what path the target working directory is. Note that if the target working directory is a parent of the program binary being executed, the attacker might be unable to replace the path with a symlink (the `execve` will fail in most cases, unless the host filesystem layout specifically matches the container layout in specific ways and the attacker knows which binary the `runc exec` is executing).

The CVSS score for this attack is CVSS:3.1/AV:L/AC:H/PR:L/UI:R/S:C/C:H/I:H/A:N (7.2, high severity).

#### Attacks 3a and 3b: `process.args` host binary overwrite attack

(These are modifications of attacks 1 and 2, constructed to overwrite a host binary by using `execve` to bring a magic-link reference into the container.)

Attacks 1 and 2 can be adapted to overwrite a host binary by using a path like `/proc/self/fd/7/../../../bin/bash` as the `process.args` binary argument, causing a host binary to be executed by a container process. The `/proc/$pid/exe` handle can then be used to overwrite the host binary, as seen in CVE-2019-5736 (note that the same `#!` trick can be used to avoid detection as an attacker). As the overwritten binary could be something like `/bin/bash`, as soon as a privileged user executes the target binary on the host, the attacker can pivot to gain full access to the host.

For the purposes of CVSS scoring:

* Attack 3a is attack 1 but adapted to overwrite a host binary, where a malicious image is set up to execute `/proc/self/fd/7/../../../bin/bash` and run a shell script that overwrites `/proc/self/exe`, overwriting the host copy of `/bin/bash`. The CVSS score for this attack is CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H (8.6, high severity).
* Attack 3b is attack 2 but adapted to overwrite a host binary, where the malicious container process overwrites all of the possible `runc exec` target binaries inside the container (such as `/bin/bash`) such that a host target binary is executed and then the container process opens `/proc/$pid/exe` to get access to the host binary and overwrite it. The CVSS score for this attack is CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:C/C:H/I:H/A:H (8.2, high severity).

As mentioned in attack 1, while 3b is scored lower it is more dangerous in practice as it doesn't require a user to run a malicious image.

### Patches
runc 1.1.12 has been released, and includes patches for this issue. Note that there are four separate fixes applied:

* Checking that the working directory is actually inside the container by checking whether `os.Getwd` returns `ENOENT` (Linux provides a way of detecting if cwd is outside the current namespace root). This explicitly blocks runc from executing a container process when inside a non-container path and thus eliminates attacks 1 and 2 even in the case of fd leaks.
* Close all internal runc file descriptors in the final stage of `runc init`, right before `execve`. This ensures that internal file descriptors cannot be used as an argument to `execve` and thus eliminates attacks 3a and 3b, even in the case of fd leaks. This requires hooking into some Go runtime internals to make sure we don't close critical Go internal file descriptors.
* Fixing the specific fd leaks that made these bug exploitable (mark `/sys/fs/cgroup` as `O_CLOEXEC` and backport a fix for some `*os.File` leaks).
* In order to protect against future `runc init` file descriptor leaks, mark all non-stdio files as `O_CLOEXEC` before executing `runc init`.

### Other Runtimes

We have discovered that several other container runtimes are either potentially vulnerable to similar attacks, or do not have sufficient protection against attacks of this nature. We recommend other container runtime authors look at [our patches](#Patches) and make sure they at least add a `getcwd() != ENOENT` check as well as consider whether `close_range(3, UINT_MAX, CLOSE_RANGE_CLOEXEC)` before executing their equivalent of `runc init` is appropriate.

 * crun 1.12 does not leak any useful file descriptors into the `runc init`-equivalent process (so this attack is _not exploitable_ as far as we can tell), but no care is taken to make sure all non-stdio files are `O_CLOEXEC` and there is no check after `chdir(2)` to ensure the working directory is inside the container. If a file descriptor happened to be leaked in the future, this could be exploitable. In addition, any file descriptors passed to `crun` are not closed until the container process is executed, meaning that easily-overlooked programming errors by users of `crun` can lead to these attacks becoming exploitable.
 * youki 0.3.1 does not leak any useful file descriptors into the `runc init`-equivalent process (so this attack is _not exploitable_ as far as we can tell) however this appears to be pure luck. `youki` does leak a directory file descriptor from the host mount namespace, but it just so happens that the directory is the rootfs of the container (which then gets `pivot_root`'d into and so ends up as a in-root path thanks to `chroot_fs_refs`). In addition, no care is taken to make sure all non-stdio files are `O_CLOEXEC` and there is no check after `chdir(2)` to ensure the working directory is inside the container. If a file descriptor happened to be leaked in the future, this could be exploitable. In addition, any file descriptors passed to `youki` are not closed until the container process is executed, meaning that easily-overlooked programming errors by users of `youki` can lead to these attacks becoming exploitable.
 * LXC 5.0.3 does not appear to leak any useful file descriptors, and they have comments noting the importance of not leaking file descriptors in `lxc-attach`. However, they don't seem to have any proactive protection against file descriptor leaks at the point of `chdir` such as using `close_range(...)` (they do have RAII-like `__do_fclose` closers but those don't necessarily stop all leaks in this context) nor do they have any check after `chdir(2)` to ensure the working directory is inside the container. Unfortunately it seems they cannot use `CLOSE_RANGE_CLOEXEC` because they don't need to re-exec themselves.

### Workarounds
For attacks 1 and 2, only permit containers (and `runc exec`) to use a `process.cwd` of `/`. It is not possible for `/` to be replaced with a symlink (the path is resolved from within the container's mount namespace, and you cannot change the root of a mount namespace or an fs root to a symlink).

For attacks 1 and 3a, only permit users to run trusted images.

For attack 3b, there is no practical workaround other than never using `runc exec` because any binary you try to execute with `runc exec` could end up being a malicious binary target.

### See Also
* https://www.cve.org/CVERecord?id=CVE-2024-21626
* https://github.com/opencontainers/runc/releases/tag/v1.1.12
* The runc 1.1.12 merge commit https://github.com/opencontainers/runc/commit/a9833ff391a71b30069a6c3f816db113379a4346, which contains the following security patches:
  * https://github.com/opencontainers/runc/commit/506552a88bd3455e80a9b3829568e94ec0160309
  * https://github.com/opencontainers/runc/commit/0994249a5ec4e363bfcf9af58a87a722e9a3a31b
  * https://github.com/opencontainers/runc/commit/fbe3eed1e568a376f371d2ced1b4ac16b7d7adde
  * https://github.com/opencontainers/runc/commit/284ba3057e428f8d6c7afcc3b0ac752e525957df
  * https://github.com/opencontainers/runc/commit/b6633f48a8c970433737b9be5bfe4f25d58a5aa7
  * https://github.com/opencontainers/runc/commit/683ad2ff3b01fb142ece7a8b3829de17150cf688
  * https://github.com/opencontainers/runc/commit/e9665f4d606b64bf9c4652ab2510da368bfbd951

### Credits

Thanks to Rory McNamara from Snyk for discovering and disclosing the original vulnerability (attack 1) to Docker, @lifubang from acmcoder for discovering how to adapt the attack to overwrite host binaries (attack 3a), and Aleksa Sarai from SUSE for discovering how to adapt the attacks to work as container breakouts using `runc exec` (attacks 2 and 3b).
Aliases
0
alias CVE-2024-21626
1
alias GHSA-xr7r-f8xq-vfvv
Fixed_packages
0
url pkg:apk/alpine/runc@1.1.12-r0?arch=aarch64&distroversion=v3.22&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=aarch64&distroversion=v3.22&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=aarch64&distroversion=v3.22&reponame=community
1
url pkg:apk/alpine/runc@1.1.12-r0?arch=armhf&distroversion=v3.22&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=armhf&distroversion=v3.22&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=armhf&distroversion=v3.22&reponame=community
2
url pkg:apk/alpine/runc@1.1.12-r0?arch=loongarch64&distroversion=v3.22&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=loongarch64&distroversion=v3.22&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=loongarch64&distroversion=v3.22&reponame=community
3
url pkg:apk/alpine/runc@1.1.12-r0?arch=ppc64le&distroversion=v3.22&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=ppc64le&distroversion=v3.22&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=ppc64le&distroversion=v3.22&reponame=community
4
url pkg:apk/alpine/runc@1.1.12-r0?arch=riscv64&distroversion=v3.22&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=riscv64&distroversion=v3.22&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=riscv64&distroversion=v3.22&reponame=community
5
url pkg:apk/alpine/runc@1.1.12-r0?arch=s390x&distroversion=v3.22&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=s390x&distroversion=v3.22&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=s390x&distroversion=v3.22&reponame=community
6
url pkg:apk/alpine/runc@1.1.12-r0?arch=x86&distroversion=v3.22&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=x86&distroversion=v3.22&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=x86&distroversion=v3.22&reponame=community
7
url pkg:apk/alpine/runc@1.1.12-r0?arch=x86_64&distroversion=v3.22&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=x86_64&distroversion=v3.22&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=x86_64&distroversion=v3.22&reponame=community
8
url pkg:apk/alpine/runc@1.1.12-r0?arch=aarch64&distroversion=edge&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=aarch64&distroversion=edge&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=aarch64&distroversion=edge&reponame=community
9
url pkg:apk/alpine/runc@1.1.12-r0?arch=armhf&distroversion=edge&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=armhf&distroversion=edge&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=armhf&distroversion=edge&reponame=community
10
url pkg:apk/alpine/runc@1.1.12-r0?arch=armv7&distroversion=edge&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=armv7&distroversion=edge&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=armv7&distroversion=edge&reponame=community
11
url pkg:apk/alpine/runc@1.1.12-r0?arch=loongarch64&distroversion=edge&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=loongarch64&distroversion=edge&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=loongarch64&distroversion=edge&reponame=community
12
url pkg:apk/alpine/runc@1.1.12-r0?arch=armv7&distroversion=v3.19&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=armv7&distroversion=v3.19&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=armv7&distroversion=v3.19&reponame=community
13
url pkg:apk/alpine/runc@1.1.12-r0?arch=ppc64le&distroversion=v3.19&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=ppc64le&distroversion=v3.19&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=ppc64le&distroversion=v3.19&reponame=community
14
url pkg:apk/alpine/runc@1.1.12-r0?arch=s390x&distroversion=v3.19&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=s390x&distroversion=v3.19&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=s390x&distroversion=v3.19&reponame=community
15
url pkg:apk/alpine/runc@1.1.12-r0?arch=x86&distroversion=v3.19&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=x86&distroversion=v3.19&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=x86&distroversion=v3.19&reponame=community
16
url pkg:apk/alpine/runc@1.1.12-r0?arch=x86_64&distroversion=v3.19&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=x86_64&distroversion=v3.19&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=x86_64&distroversion=v3.19&reponame=community
17
url pkg:apk/alpine/runc@1.1.12-r0?arch=aarch64&distroversion=v3.18&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=aarch64&distroversion=v3.18&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=aarch64&distroversion=v3.18&reponame=community
18
url pkg:apk/alpine/runc@1.1.12-r0?arch=armhf&distroversion=v3.18&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=armhf&distroversion=v3.18&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=armhf&distroversion=v3.18&reponame=community
19
url pkg:apk/alpine/runc@1.1.12-r0?arch=armv7&distroversion=v3.18&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=armv7&distroversion=v3.18&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=armv7&distroversion=v3.18&reponame=community
20
url pkg:apk/alpine/runc@1.1.12-r0?arch=x86&distroversion=v3.18&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=x86&distroversion=v3.18&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=x86&distroversion=v3.18&reponame=community
21
url pkg:apk/alpine/runc@1.1.12-r0?arch=x86_64&distroversion=v3.18&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=x86_64&distroversion=v3.18&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=x86_64&distroversion=v3.18&reponame=community
22
url pkg:apk/alpine/runc@1.1.12-r0?arch=aarch64&distroversion=v3.23&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=aarch64&distroversion=v3.23&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=aarch64&distroversion=v3.23&reponame=community
23
url pkg:apk/alpine/runc@1.1.12-r0?arch=armhf&distroversion=v3.23&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=armhf&distroversion=v3.23&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=armhf&distroversion=v3.23&reponame=community
24
url pkg:apk/alpine/runc@1.1.12-r0?arch=armv7&distroversion=v3.23&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=armv7&distroversion=v3.23&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=armv7&distroversion=v3.23&reponame=community
25
url pkg:apk/alpine/runc@1.1.12-r0?arch=loongarch64&distroversion=v3.23&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=loongarch64&distroversion=v3.23&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=loongarch64&distroversion=v3.23&reponame=community
26
url pkg:apk/alpine/runc@1.1.12-r0?arch=ppc64le&distroversion=v3.23&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=ppc64le&distroversion=v3.23&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=ppc64le&distroversion=v3.23&reponame=community
27
url pkg:apk/alpine/runc@1.1.12-r0?arch=riscv64&distroversion=v3.23&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=riscv64&distroversion=v3.23&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=riscv64&distroversion=v3.23&reponame=community
28
url pkg:apk/alpine/runc@1.1.12-r0?arch=s390x&distroversion=v3.23&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=s390x&distroversion=v3.23&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=s390x&distroversion=v3.23&reponame=community
29
url pkg:apk/alpine/runc@1.1.12-r0?arch=x86&distroversion=v3.23&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=x86&distroversion=v3.23&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=x86&distroversion=v3.23&reponame=community
30
url pkg:apk/alpine/runc@1.1.12-r0?arch=ppc64le&distroversion=v3.21&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=ppc64le&distroversion=v3.21&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=ppc64le&distroversion=v3.21&reponame=community
31
url pkg:apk/alpine/runc@1.1.12-r0?arch=riscv64&distroversion=v3.21&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=riscv64&distroversion=v3.21&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=riscv64&distroversion=v3.21&reponame=community
32
url pkg:apk/alpine/runc@1.1.12-r0?arch=s390x&distroversion=v3.21&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=s390x&distroversion=v3.21&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=s390x&distroversion=v3.21&reponame=community
33
url pkg:apk/alpine/runc@1.1.12-r0?arch=x86&distroversion=v3.21&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=x86&distroversion=v3.21&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=x86&distroversion=v3.21&reponame=community
34
url pkg:apk/alpine/runc@1.1.12-r0?arch=aarch64&distroversion=v3.20&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=aarch64&distroversion=v3.20&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=aarch64&distroversion=v3.20&reponame=community
35
url pkg:apk/alpine/runc@1.1.12-r0?arch=armhf&distroversion=v3.20&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=armhf&distroversion=v3.20&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=armhf&distroversion=v3.20&reponame=community
36
url pkg:apk/alpine/runc@1.1.12-r0?arch=armv7&distroversion=v3.20&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=armv7&distroversion=v3.20&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=armv7&distroversion=v3.20&reponame=community
37
url pkg:apk/alpine/runc@1.1.12-r0?arch=ppc64le&distroversion=v3.20&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=ppc64le&distroversion=v3.20&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=ppc64le&distroversion=v3.20&reponame=community
38
url pkg:apk/alpine/runc@1.1.12-r0?arch=riscv64&distroversion=v3.20&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=riscv64&distroversion=v3.20&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=riscv64&distroversion=v3.20&reponame=community
39
url pkg:apk/alpine/runc@1.1.12-r0?arch=x86&distroversion=v3.20&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=x86&distroversion=v3.20&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=x86&distroversion=v3.20&reponame=community
40
url pkg:apk/alpine/runc@1.1.12-r0?arch=x86_64&distroversion=v3.20&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=x86_64&distroversion=v3.20&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=x86_64&distroversion=v3.20&reponame=community
41
url pkg:apk/alpine/runc@1.1.12-r0?arch=armv7&distroversion=v3.22&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=armv7&distroversion=v3.22&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=armv7&distroversion=v3.22&reponame=community
42
url pkg:apk/alpine/runc@1.1.12-r0?arch=ppc64le&distroversion=edge&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=ppc64le&distroversion=edge&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=ppc64le&distroversion=edge&reponame=community
43
url pkg:apk/alpine/runc@1.1.12-r0?arch=riscv64&distroversion=edge&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=riscv64&distroversion=edge&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=riscv64&distroversion=edge&reponame=community
44
url pkg:apk/alpine/runc@1.1.12-r0?arch=s390x&distroversion=edge&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=s390x&distroversion=edge&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=s390x&distroversion=edge&reponame=community
45
url pkg:apk/alpine/runc@1.1.12-r0?arch=x86&distroversion=edge&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=x86&distroversion=edge&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=x86&distroversion=edge&reponame=community
46
url pkg:apk/alpine/runc@1.1.12-r0?arch=x86_64&distroversion=edge&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=x86_64&distroversion=edge&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=x86_64&distroversion=edge&reponame=community
47
url pkg:apk/alpine/runc@1.1.12-r0?arch=aarch64&distroversion=v3.19&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=aarch64&distroversion=v3.19&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=aarch64&distroversion=v3.19&reponame=community
48
url pkg:apk/alpine/runc@1.1.12-r0?arch=armhf&distroversion=v3.19&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=armhf&distroversion=v3.19&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=armhf&distroversion=v3.19&reponame=community
49
url pkg:apk/alpine/runc@1.1.12-r0?arch=ppc64le&distroversion=v3.18&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=ppc64le&distroversion=v3.18&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=ppc64le&distroversion=v3.18&reponame=community
50
url pkg:apk/alpine/runc@1.1.12-r0?arch=s390x&distroversion=v3.18&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=s390x&distroversion=v3.18&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=s390x&distroversion=v3.18&reponame=community
51
url pkg:apk/alpine/runc@1.1.12-r0?arch=x86_64&distroversion=v3.23&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=x86_64&distroversion=v3.23&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=x86_64&distroversion=v3.23&reponame=community
52
url pkg:apk/alpine/runc@1.1.12-r0?arch=aarch64&distroversion=v3.21&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=aarch64&distroversion=v3.21&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=aarch64&distroversion=v3.21&reponame=community
53
url pkg:apk/alpine/runc@1.1.12-r0?arch=armhf&distroversion=v3.21&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=armhf&distroversion=v3.21&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=armhf&distroversion=v3.21&reponame=community
54
url pkg:apk/alpine/runc@1.1.12-r0?arch=armv7&distroversion=v3.21&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=armv7&distroversion=v3.21&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=armv7&distroversion=v3.21&reponame=community
55
url pkg:apk/alpine/runc@1.1.12-r0?arch=loongarch64&distroversion=v3.21&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=loongarch64&distroversion=v3.21&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=loongarch64&distroversion=v3.21&reponame=community
56
url pkg:apk/alpine/runc@1.1.12-r0?arch=x86_64&distroversion=v3.21&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=x86_64&distroversion=v3.21&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=x86_64&distroversion=v3.21&reponame=community
57
url pkg:apk/alpine/runc@1.1.12-r0?arch=s390x&distroversion=v3.20&reponame=community
purl pkg:apk/alpine/runc@1.1.12-r0?arch=s390x&distroversion=v3.20&reponame=community
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:apk/alpine/runc@1.1.12-r0%3Farch=s390x&distroversion=v3.20&reponame=community
58
url pkg:deb/debian/runc@1.0.0~rc93%2Bds1-5%2Bdeb11u3?distro=trixie
purl pkg:deb/debian/runc@1.0.0~rc93%2Bds1-5%2Bdeb11u3?distro=trixie
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/runc@1.0.0~rc93%252Bds1-5%252Bdeb11u3%3Fdistro=trixie
59
url pkg:deb/debian/runc@1.0.0~rc93%2Bds1-5%2Bdeb11u5
purl pkg:deb/debian/runc@1.0.0~rc93%2Bds1-5%2Bdeb11u5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-mt76-ah1b-s3gc
1
vulnerability VCID-vk37-s4p6-fufm
2
vulnerability VCID-wxsf-mu1t-aqa4
3
vulnerability VCID-x2zb-mehm-ebge
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/runc@1.0.0~rc93%252Bds1-5%252Bdeb11u5
60
url pkg:deb/debian/runc@1.0.0~rc93%2Bds1-5%2Bdeb11u5?distro=trixie
purl pkg:deb/debian/runc@1.0.0~rc93%2Bds1-5%2Bdeb11u5?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-mt76-ah1b-s3gc
1
vulnerability VCID-vk37-s4p6-fufm
2
vulnerability VCID-wxsf-mu1t-aqa4
3
vulnerability VCID-x2zb-mehm-ebge
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/runc@1.0.0~rc93%252Bds1-5%252Bdeb11u5%3Fdistro=trixie
61
url pkg:deb/debian/runc@1.1.5%2Bds1-1%2Bdeb12u1?distro=trixie
purl pkg:deb/debian/runc@1.1.5%2Bds1-1%2Bdeb12u1?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-mt76-ah1b-s3gc
1
vulnerability VCID-vk37-s4p6-fufm
2
vulnerability VCID-wxsf-mu1t-aqa4
3
vulnerability VCID-x2zb-mehm-ebge
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/runc@1.1.5%252Bds1-1%252Bdeb12u1%3Fdistro=trixie
62
url pkg:deb/debian/runc@1.1.12%2Bds1-1?distro=trixie
purl pkg:deb/debian/runc@1.1.12%2Bds1-1?distro=trixie
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/runc@1.1.12%252Bds1-1%3Fdistro=trixie
63
url pkg:deb/debian/runc@1.1.15%2Bds1-2?distro=trixie
purl pkg:deb/debian/runc@1.1.15%2Bds1-2?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-mt76-ah1b-s3gc
1
vulnerability VCID-vk37-s4p6-fufm
2
vulnerability VCID-wxsf-mu1t-aqa4
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/runc@1.1.15%252Bds1-2%3Fdistro=trixie
64
url pkg:deb/debian/runc@1.3.5%2Bds1-1?distro=trixie
purl pkg:deb/debian/runc@1.3.5%2Bds1-1?distro=trixie
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/runc@1.3.5%252Bds1-1%3Fdistro=trixie
65
url pkg:ebuild/app-containers/runc@1.1.12
purl pkg:ebuild/app-containers/runc@1.1.12
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:ebuild/app-containers/runc@1.1.12
66
url pkg:golang/github.com/opencontainers/runc@1.1.12
purl pkg:golang/github.com/opencontainers/runc@1.1.12
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:golang/github.com/opencontainers/runc@1.1.12
Affected_packages
0
url pkg:deb/debian/runc@0.1.1%2Bdfsg1-1~bpo8%2B1
purl pkg:deb/debian/runc@0.1.1%2Bdfsg1-1~bpo8%2B1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-165g-hgmx-nybk
1
vulnerability VCID-3m4n-58pj-mkeb
2
vulnerability VCID-3yvf-q4uj-dbdh
3
vulnerability VCID-7juj-78y7-g7b6
4
vulnerability VCID-997v-f2ds-e3e4
5
vulnerability VCID-9mdg-3961-cybf
6
vulnerability VCID-jc1e-8tt4-xqdn
7
vulnerability VCID-seds-dzew-jyfs
8
vulnerability VCID-tsgr-5mwt-jkeh
9
vulnerability VCID-v2ys-xbn5-guh4
10
vulnerability VCID-zex4-9xyf-6yf1
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/runc@0.1.1%252Bdfsg1-1~bpo8%252B1
1
url pkg:deb/debian/runc@0.1.1%2Bdfsg1-2%2Bdeb9u1
purl pkg:deb/debian/runc@0.1.1%2Bdfsg1-2%2Bdeb9u1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-3m4n-58pj-mkeb
1
vulnerability VCID-3yvf-q4uj-dbdh
2
vulnerability VCID-7juj-78y7-g7b6
3
vulnerability VCID-997v-f2ds-e3e4
4
vulnerability VCID-9mdg-3961-cybf
5
vulnerability VCID-jc1e-8tt4-xqdn
6
vulnerability VCID-seds-dzew-jyfs
7
vulnerability VCID-tsgr-5mwt-jkeh
8
vulnerability VCID-v2ys-xbn5-guh4
9
vulnerability VCID-zex4-9xyf-6yf1
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/runc@0.1.1%252Bdfsg1-2%252Bdeb9u1
2
url pkg:deb/debian/runc@1.0.0~rc2%2Bgit20161109.131.5137186-2
purl pkg:deb/debian/runc@1.0.0~rc2%2Bgit20161109.131.5137186-2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-3m4n-58pj-mkeb
1
vulnerability VCID-3yvf-q4uj-dbdh
2
vulnerability VCID-7juj-78y7-g7b6
3
vulnerability VCID-997v-f2ds-e3e4
4
vulnerability VCID-9mdg-3961-cybf
5
vulnerability VCID-jc1e-8tt4-xqdn
6
vulnerability VCID-seds-dzew-jyfs
7
vulnerability VCID-tsgr-5mwt-jkeh
8
vulnerability VCID-v2ys-xbn5-guh4
9
vulnerability VCID-zex4-9xyf-6yf1
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/runc@1.0.0~rc2%252Bgit20161109.131.5137186-2
3
url pkg:deb/debian/runc@1.0.0~rc6%2Bdfsg1-2
purl pkg:deb/debian/runc@1.0.0~rc6%2Bdfsg1-2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-3m4n-58pj-mkeb
1
vulnerability VCID-3yvf-q4uj-dbdh
2
vulnerability VCID-997v-f2ds-e3e4
3
vulnerability VCID-9mdg-3961-cybf
4
vulnerability VCID-jc1e-8tt4-xqdn
5
vulnerability VCID-seds-dzew-jyfs
6
vulnerability VCID-tsgr-5mwt-jkeh
7
vulnerability VCID-v2ys-xbn5-guh4
8
vulnerability VCID-zex4-9xyf-6yf1
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/runc@1.0.0~rc6%252Bdfsg1-2
4
url pkg:deb/debian/runc@1.0.0~rc6%2Bdfsg1-3
purl pkg:deb/debian/runc@1.0.0~rc6%2Bdfsg1-3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-3m4n-58pj-mkeb
1
vulnerability VCID-3yvf-q4uj-dbdh
2
vulnerability VCID-997v-f2ds-e3e4
3
vulnerability VCID-9mdg-3961-cybf
4
vulnerability VCID-jc1e-8tt4-xqdn
5
vulnerability VCID-seds-dzew-jyfs
6
vulnerability VCID-tsgr-5mwt-jkeh
7
vulnerability VCID-v2ys-xbn5-guh4
8
vulnerability VCID-zex4-9xyf-6yf1
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/runc@1.0.0~rc6%252Bdfsg1-3
5
url pkg:deb/debian/runc@1.0.0~rc93%2Bds1-5
purl pkg:deb/debian/runc@1.0.0~rc93%2Bds1-5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-3m4n-58pj-mkeb
1
vulnerability VCID-3yvf-q4uj-dbdh
2
vulnerability VCID-jc1e-8tt4-xqdn
3
vulnerability VCID-seds-dzew-jyfs
4
vulnerability VCID-tsgr-5mwt-jkeh
5
vulnerability VCID-v2ys-xbn5-guh4
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/runc@1.0.0~rc93%252Bds1-5
6
url pkg:deb/debian/runc@1.0.0~rc93%2Bds1-5%2Bdeb11u2
purl pkg:deb/debian/runc@1.0.0~rc93%2Bds1-5%2Bdeb11u2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-3yvf-q4uj-dbdh
1
vulnerability VCID-jc1e-8tt4-xqdn
2
vulnerability VCID-seds-dzew-jyfs
3
vulnerability VCID-tsgr-5mwt-jkeh
4
vulnerability VCID-v2ys-xbn5-guh4
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/runc@1.0.0~rc93%252Bds1-5%252Bdeb11u2
7
url pkg:rpm/redhat/docker@2:1.13.1-210.git7d71120?arch=el7_9
purl pkg:rpm/redhat/docker@2:1.13.1-210.git7d71120?arch=el7_9
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-tsgr-5mwt-jkeh
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/docker@2:1.13.1-210.git7d71120%3Farch=el7_9
8
url pkg:rpm/redhat/jenkins@2.440.3.1718879390-3?arch=el8
purl pkg:rpm/redhat/jenkins@2.440.3.1718879390-3?arch=el8
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-3cnb-4rqk-zbez
1
vulnerability VCID-5qhm-ase5-5qhy
2
vulnerability VCID-6rup-vv6d-eqd8
3
vulnerability VCID-acdw-t3mm-wbhb
4
vulnerability VCID-f8ak-21d8-juff
5
vulnerability VCID-jzn6-bzzf-nugp
6
vulnerability VCID-qnbx-c635-hqer
7
vulnerability VCID-s4j7-r6m7-tyey
8
vulnerability VCID-tsgr-5mwt-jkeh
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/jenkins@2.440.3.1718879390-3%3Farch=el8
9
url pkg:rpm/redhat/jenkins-2-plugins@4.15.1718879538-1?arch=el8
purl pkg:rpm/redhat/jenkins-2-plugins@4.15.1718879538-1?arch=el8
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-3cnb-4rqk-zbez
1
vulnerability VCID-5qhm-ase5-5qhy
2
vulnerability VCID-6rup-vv6d-eqd8
3
vulnerability VCID-acdw-t3mm-wbhb
4
vulnerability VCID-f8ak-21d8-juff
5
vulnerability VCID-jzn6-bzzf-nugp
6
vulnerability VCID-qnbx-c635-hqer
7
vulnerability VCID-s4j7-r6m7-tyey
8
vulnerability VCID-tsgr-5mwt-jkeh
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/jenkins-2-plugins@4.15.1718879538-1%3Farch=el8
10
url pkg:rpm/redhat/microshift@4.14.42-202411280904.p0.gcf4d04f.assembly.4.14.42?arch=el9
purl pkg:rpm/redhat/microshift@4.14.42-202411280904.p0.gcf4d04f.assembly.4.14.42?arch=el9
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-tsgr-5mwt-jkeh
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/microshift@4.14.42-202411280904.p0.gcf4d04f.assembly.4.14.42%3Farch=el9
11
url pkg:rpm/redhat/microshift@4.15.41-202412091343.p0.gcf9680e.assembly.4.15.41?arch=el9
purl pkg:rpm/redhat/microshift@4.15.41-202412091343.p0.gcf9680e.assembly.4.15.41?arch=el9
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-tsgr-5mwt-jkeh
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/microshift@4.15.41-202412091343.p0.gcf9680e.assembly.4.15.41%3Farch=el9
12
url pkg:rpm/redhat/microshift@4.16.24-202411220522.p0.gcc4fedc.assembly.4.16.24?arch=el9
purl pkg:rpm/redhat/microshift@4.16.24-202411220522.p0.gcc4fedc.assembly.4.16.24?arch=el9
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-tsgr-5mwt-jkeh
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/microshift@4.16.24-202411220522.p0.gcc4fedc.assembly.4.16.24%3Farch=el9
13
url pkg:rpm/redhat/microshift@4.17.7-202411280904.p0.g129334d.assembly.4.17.7?arch=el9
purl pkg:rpm/redhat/microshift@4.17.7-202411280904.p0.g129334d.assembly.4.17.7?arch=el9
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-tsgr-5mwt-jkeh
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/microshift@4.17.7-202411280904.p0.g129334d.assembly.4.17.7%3Farch=el9
14
url pkg:rpm/redhat/runc@1.0.0-70.rc10?arch=el7_9
purl pkg:rpm/redhat/runc@1.0.0-70.rc10?arch=el7_9
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-tsgr-5mwt-jkeh
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/runc@1.0.0-70.rc10%3Farch=el7_9
15
url pkg:rpm/redhat/runc@3:1.1.2-3.1.rhaos4.11?arch=el8
purl pkg:rpm/redhat/runc@3:1.1.2-3.1.rhaos4.11?arch=el8
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-tsgr-5mwt-jkeh
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/runc@3:1.1.2-3.1.rhaos4.11%3Farch=el8
16
url pkg:rpm/redhat/runc@3:1.1.6-5.1.rhaos4.12?arch=el8
purl pkg:rpm/redhat/runc@3:1.1.6-5.1.rhaos4.12?arch=el8
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-tsgr-5mwt-jkeh
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/runc@3:1.1.6-5.1.rhaos4.12%3Farch=el8
17
url pkg:rpm/redhat/runc@4:1.1.12-1?arch=el9_3
purl pkg:rpm/redhat/runc@4:1.1.12-1?arch=el9_3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-tsgr-5mwt-jkeh
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/runc@4:1.1.12-1%3Farch=el9_3
18
url pkg:rpm/redhat/runc@4:1.1.12-1?arch=el9_2
purl pkg:rpm/redhat/runc@4:1.1.12-1?arch=el9_2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-tsgr-5mwt-jkeh
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/runc@4:1.1.12-1%3Farch=el9_2
19
url pkg:rpm/redhat/runc@4:1.1.12-1?arch=el9_0
purl pkg:rpm/redhat/runc@4:1.1.12-1?arch=el9_0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-tsgr-5mwt-jkeh
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/runc@4:1.1.12-1%3Farch=el9_0
20
url pkg:rpm/redhat/runc@4:1.1.12-1.rhaos4.13?arch=el8
purl pkg:rpm/redhat/runc@4:1.1.12-1.rhaos4.13?arch=el8
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-tsgr-5mwt-jkeh
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/runc@4:1.1.12-1.rhaos4.13%3Farch=el8
21
url pkg:rpm/redhat/runc@4:1.1.12-1.rhaos4.14?arch=el8
purl pkg:rpm/redhat/runc@4:1.1.12-1.rhaos4.14?arch=el8
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-tsgr-5mwt-jkeh
resource_url http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/runc@4:1.1.12-1.rhaos4.14%3Farch=el8
References
0
reference_url http://packetstormsecurity.com/files/176993/runc-1.1.11-File-Descriptor-Leak-Privilege-Escalation.html
reference_id
reference_type
scores
0
value 8.6
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
2
value Track*
scoring_system ssvc
scoring_elements SSVCv2/E:P/A:N/T:T/P:M/B:A/M:M/D:R/2024-04-19T04:01:01Z/
url http://packetstormsecurity.com/files/176993/runc-1.1.11-File-Descriptor-Leak-Privilege-Escalation.html
1
reference_url https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2024-21626.json
reference_id
reference_type
scores
0
value 8.6
scoring_system cvssv3
scoring_elements CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H
url https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2024-21626.json
2
reference_url https://api.first.org/data/v1/epss?cve=CVE-2024-21626
reference_id
reference_type
scores
0
value 0.03456
scoring_system epss
scoring_elements 0.87558
published_at 2026-04-26T12:55:00Z
1
value 0.03456
scoring_system epss
scoring_elements 0.87551
published_at 2026-04-24T12:55:00Z
2
value 0.03873
scoring_system epss
scoring_elements 0.88248
published_at 2026-04-21T12:55:00Z
3
value 0.03892
scoring_system epss
scoring_elements 0.88311
published_at 2026-05-05T12:55:00Z
4
value 0.0417
scoring_system epss
scoring_elements 0.88747
published_at 2026-05-07T12:55:00Z
5
value 0.04223
scoring_system epss
scoring_elements 0.88797
published_at 2026-04-29T12:55:00Z
6
value 0.05076
scoring_system epss
scoring_elements 0.89883
published_at 2026-05-14T12:55:00Z
7
value 0.05303
scoring_system epss
scoring_elements 0.90042
published_at 2026-04-18T12:55:00Z
8
value 0.05303
scoring_system epss
scoring_elements 0.90041
published_at 2026-04-16T12:55:00Z
9
value 0.05477
scoring_system epss
scoring_elements 0.90264
published_at 2026-05-11T12:55:00Z
10
value 0.05477
scoring_system epss
scoring_elements 0.9027
published_at 2026-05-09T12:55:00Z
11
value 0.05546
scoring_system epss
scoring_elements 0.90336
published_at 2026-05-12T12:55:00Z
12
value 0.05634
scoring_system epss
scoring_elements 0.90346
published_at 2026-04-13T12:55:00Z
13
value 0.06756
scoring_system epss
scoring_elements 0.91266
published_at 2026-04-07T12:55:00Z
14
value 0.06756
scoring_system epss
scoring_elements 0.91292
published_at 2026-04-11T12:55:00Z
15
value 0.06756
scoring_system epss
scoring_elements 0.91285
published_at 2026-04-09T12:55:00Z
16
value 0.06756
scoring_system epss
scoring_elements 0.91279
published_at 2026-04-08T12:55:00Z
17
value 0.06756
scoring_system epss
scoring_elements 0.91295
published_at 2026-04-12T12:55:00Z
18
value 0.07448
scoring_system epss
scoring_elements 0.91734
published_at 2026-04-04T12:55:00Z
19
value 0.07448
scoring_system epss
scoring_elements 0.91729
published_at 2026-04-02T12:55:00Z
url https://api.first.org/data/v1/epss?cve=CVE-2024-21626
3
reference_url https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-21626
reference_id
reference_type
scores
url https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-21626
4
reference_url https://ftp.suse.com/pub/projects/security/yaml/suse-cvss-scores.yaml
reference_id
reference_type
scores
0
value 8.6
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H
url https://ftp.suse.com/pub/projects/security/yaml/suse-cvss-scores.yaml
5
reference_url https://github.com/opencontainers/runc
reference_id
reference_type
scores
0
value 8.6
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://github.com/opencontainers/runc
6
reference_url https://github.com/opencontainers/runc/commit/02120488a4c0fc487d1ed2867e901eeed7ce8ecf
reference_id
reference_type
scores
0
value 8.6
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
2
value Track*
scoring_system ssvc
scoring_elements SSVCv2/E:P/A:N/T:T/P:M/B:A/M:M/D:R/2024-04-19T04:01:01Z/
url https://github.com/opencontainers/runc/commit/02120488a4c0fc487d1ed2867e901eeed7ce8ecf
7
reference_url https://github.com/opencontainers/runc/releases/tag/v1.1.12
reference_id
reference_type
scores
0
value 8.6
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
2
value Track*
scoring_system ssvc
scoring_elements SSVCv2/E:P/A:N/T:T/P:M/B:A/M:M/D:R/2024-04-19T04:01:01Z/
url https://github.com/opencontainers/runc/releases/tag/v1.1.12
8
reference_url https://github.com/opencontainers/runc/security/advisories/GHSA-xr7r-f8xq-vfvv
reference_id
reference_type
scores
0
value 8.6
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
2
value Track*
scoring_system ssvc
scoring_elements SSVCv2/E:P/A:N/T:T/P:M/B:A/M:M/D:R/2024-04-19T04:01:01Z/
url https://github.com/opencontainers/runc/security/advisories/GHSA-xr7r-f8xq-vfvv
9
reference_url https://lists.debian.org/debian-lts-announce/2024/02/msg00005.html
reference_id
reference_type
scores
0
value 8.6
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
2
value Track*
scoring_system ssvc
scoring_elements SSVCv2/E:P/A:N/T:T/P:M/B:A/M:M/D:R/2024-04-19T04:01:01Z/
url https://lists.debian.org/debian-lts-announce/2024/02/msg00005.html
10
reference_url https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2NLXNE23Q5ESQUAI22Z7A63JX2WMPJ2J
reference_id
reference_type
scores
0
value 8.6
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2NLXNE23Q5ESQUAI22Z7A63JX2WMPJ2J
11
reference_url https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SYMO3BANINS6RGFQFKPRG4FIOJ7GWYTL
reference_id
reference_type
scores
0
value 8.6
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SYMO3BANINS6RGFQFKPRG4FIOJ7GWYTL
12
reference_url https://nvd.nist.gov/vuln/detail/CVE-2024-21626
reference_id
reference_type
scores
0
value 8.6
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://nvd.nist.gov/vuln/detail/CVE-2024-21626
13
reference_url http://www.openwall.com/lists/oss-security/2024/02/01/1
reference_id
reference_type
scores
0
value 8.6
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
2
value Track*
scoring_system ssvc
scoring_elements SSVCv2/E:P/A:N/T:T/P:M/B:A/M:M/D:R/2024-04-19T04:01:01Z/
url http://www.openwall.com/lists/oss-security/2024/02/01/1
14
reference_url http://www.openwall.com/lists/oss-security/2024/02/02/3
reference_id
reference_type
scores
0
value 8.6
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
2
value Track*
scoring_system ssvc
scoring_elements SSVCv2/E:P/A:N/T:T/P:M/B:A/M:M/D:R/2024-04-19T04:01:01Z/
url http://www.openwall.com/lists/oss-security/2024/02/02/3
15
reference_url https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1062532
reference_id 1062532
reference_type
scores
url https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1062532
16
reference_url https://bugzilla.redhat.com/show_bug.cgi?id=2258725
reference_id 2258725
reference_type
scores
url https://bugzilla.redhat.com/show_bug.cgi?id=2258725
17
reference_url https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2NLXNE23Q5ESQUAI22Z7A63JX2WMPJ2J/
reference_id 2NLXNE23Q5ESQUAI22Z7A63JX2WMPJ2J
reference_type
scores
0
value 8.6
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H
1
value Track*
scoring_system ssvc
scoring_elements SSVCv2/E:P/A:N/T:T/P:M/B:A/M:M/D:R/2024-04-19T04:01:01Z/
url https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/2NLXNE23Q5ESQUAI22Z7A63JX2WMPJ2J/
18
reference_url https://security.gentoo.org/glsa/202408-25
reference_id GLSA-202408-25
reference_type
scores
url https://security.gentoo.org/glsa/202408-25
19
reference_url https://access.redhat.com/errata/RHSA-2024:0645
reference_id RHSA-2024:0645
reference_type
scores
url https://access.redhat.com/errata/RHSA-2024:0645
20
reference_url https://access.redhat.com/errata/RHSA-2024:0662
reference_id RHSA-2024:0662
reference_type
scores
url https://access.redhat.com/errata/RHSA-2024:0662
21
reference_url https://access.redhat.com/errata/RHSA-2024:0666
reference_id RHSA-2024:0666
reference_type
scores
url https://access.redhat.com/errata/RHSA-2024:0666
22
reference_url https://access.redhat.com/errata/RHSA-2024:0670
reference_id RHSA-2024:0670
reference_type
scores
url https://access.redhat.com/errata/RHSA-2024:0670
23
reference_url https://access.redhat.com/errata/RHSA-2024:0684
reference_id RHSA-2024:0684
reference_type
scores
url https://access.redhat.com/errata/RHSA-2024:0684
24
reference_url https://access.redhat.com/errata/RHSA-2024:0717
reference_id RHSA-2024:0717
reference_type
scores
url https://access.redhat.com/errata/RHSA-2024:0717
25
reference_url https://access.redhat.com/errata/RHSA-2024:0748
reference_id RHSA-2024:0748
reference_type
scores
url https://access.redhat.com/errata/RHSA-2024:0748
26
reference_url https://access.redhat.com/errata/RHSA-2024:0752
reference_id RHSA-2024:0752
reference_type
scores
url https://access.redhat.com/errata/RHSA-2024:0752
27
reference_url https://access.redhat.com/errata/RHSA-2024:0755
reference_id RHSA-2024:0755
reference_type
scores
url https://access.redhat.com/errata/RHSA-2024:0755
28
reference_url https://access.redhat.com/errata/RHSA-2024:0756
reference_id RHSA-2024:0756
reference_type
scores
url https://access.redhat.com/errata/RHSA-2024:0756
29
reference_url https://access.redhat.com/errata/RHSA-2024:0757
reference_id RHSA-2024:0757
reference_type
scores
url https://access.redhat.com/errata/RHSA-2024:0757
30
reference_url https://access.redhat.com/errata/RHSA-2024:0758
reference_id RHSA-2024:0758
reference_type
scores
url https://access.redhat.com/errata/RHSA-2024:0758
31
reference_url https://access.redhat.com/errata/RHSA-2024:0759
reference_id RHSA-2024:0759
reference_type
scores
url https://access.redhat.com/errata/RHSA-2024:0759
32
reference_url https://access.redhat.com/errata/RHSA-2024:0760
reference_id RHSA-2024:0760
reference_type
scores
url https://access.redhat.com/errata/RHSA-2024:0760
33
reference_url https://access.redhat.com/errata/RHSA-2024:0764
reference_id RHSA-2024:0764
reference_type
scores
url https://access.redhat.com/errata/RHSA-2024:0764
34
reference_url https://access.redhat.com/errata/RHSA-2024:10149
reference_id RHSA-2024:10149
reference_type
scores
url https://access.redhat.com/errata/RHSA-2024:10149
35
reference_url https://access.redhat.com/errata/RHSA-2024:10520
reference_id RHSA-2024:10520
reference_type
scores
url https://access.redhat.com/errata/RHSA-2024:10520
36
reference_url https://access.redhat.com/errata/RHSA-2024:10525
reference_id RHSA-2024:10525
reference_type
scores
url https://access.redhat.com/errata/RHSA-2024:10525
37
reference_url https://access.redhat.com/errata/RHSA-2024:10841
reference_id RHSA-2024:10841
reference_type
scores
url https://access.redhat.com/errata/RHSA-2024:10841
38
reference_url https://access.redhat.com/errata/RHSA-2024:1270
reference_id RHSA-2024:1270
reference_type
scores
url https://access.redhat.com/errata/RHSA-2024:1270
39
reference_url https://access.redhat.com/errata/RHSA-2024:4597
reference_id RHSA-2024:4597
reference_type
scores
url https://access.redhat.com/errata/RHSA-2024:4597
40
reference_url https://access.redhat.com/errata/RHSA-2025:0115
reference_id RHSA-2025:0115
reference_type
scores
url https://access.redhat.com/errata/RHSA-2025:0115
41
reference_url https://access.redhat.com/errata/RHSA-2025:0650
reference_id RHSA-2025:0650
reference_type
scores
url https://access.redhat.com/errata/RHSA-2025:0650
42
reference_url https://access.redhat.com/errata/RHSA-2025:1711
reference_id RHSA-2025:1711
reference_type
scores
url https://access.redhat.com/errata/RHSA-2025:1711
43
reference_url https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SYMO3BANINS6RGFQFKPRG4FIOJ7GWYTL/
reference_id SYMO3BANINS6RGFQFKPRG4FIOJ7GWYTL
reference_type
scores
0
value 8.6
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H
1
value Track*
scoring_system ssvc
scoring_elements SSVCv2/E:P/A:N/T:T/P:M/B:A/M:M/D:R/2024-04-19T04:01:01Z/
url https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/SYMO3BANINS6RGFQFKPRG4FIOJ7GWYTL/
44
reference_url https://usn.ubuntu.com/6619-1/
reference_id USN-6619-1
reference_type
scores
url https://usn.ubuntu.com/6619-1/
Weaknesses
0
cwe_id 403
name Exposure of File Descriptor to Unintended Control Sphere ('File Descriptor Leak')
description A process does not close sensitive file descriptors before invoking a child process, which allows the child to perform unauthorized I/O operations using those descriptors.
1
cwe_id 668
name Exposure of Resource to Wrong Sphere
description The product exposes a resource to the wrong control sphere, providing unintended actors with inappropriate access to the resource.
2
cwe_id 200
name Exposure of Sensitive Information to an Unauthorized Actor
description The product exposes sensitive information to an actor that is not explicitly authorized to have access to that information.
Exploits
0
date_added null
description
All versions of runc <=1.1.11, as used by containerization technologies such as Docker engine,
          and Kubernetes are vulnerable to an arbitrary file write.
          Due to a file descriptor leak it is possible to mount the host file system
          with the permissions of runc (typically root).

          Successfully tested on Ubuntu 22.04 with runc 1.1.7-0ubuntu1~22.04.1 and runc 1.1.11 using Docker build.
          Successfully tested on Debian 12.4.0 with runc 1.1.11 using Docker build.
          Successfully tested on Arch Linux 12/1/2024 with runc 1.1.10-1 using Docker build.
required_action null
due_date null
notes
AKA:
  - Leaky Vessels
Stability:
  - crash-safe
Reliability:
  - repeatable-session
SideEffects:
  - artifacts-on-disk
known_ransomware_campaign_use false
source_date_published 2024-01-31
exploit_type null
platform Linux
source_date_updated null
data_source Metasploit
source_url https://github.com/rapid7/metasploit-framework/tree/master/modules/exploits/linux/local/runc_cwd_priv_esc.rb
Severity_range_score7.0 - 8.9
Exploitability2.0
Weighted_severity8.0
Risk_score10.0
Resource_urlhttp://public2.vulnerablecode.io/vulnerabilities/VCID-tsgr-5mwt-jkeh