CVE-2022-43915
Official description Straight from the sourceThe vendor's or NVD's own wording, published unedited. Authoritative, but often terse — it says what broke, rarely what to do.
NVD · uneditedIBM App Connect Enterprise Certified Container 5.0, 7.1, 7.2, 8.0, 8.1, 8.2, 9.0, 9.1, 9.2, 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 11.4, 11.5, 11.6, 12.0, and 12.1 does not limit calls to unshare in running Pods. This can allow a user with privileged access to execute commands in a running Pod to elevate their user privileges.
Technical summary Written by usOur analysis, written from the advisory, the CVSS vector and the affected-version data. It adds context the advisory leaves out, and never invents facts that are not in the source.
dbcve analysis · moderate confidenceIBM App Connect Enterprise Certified Container does not restrict the unshare system call in running pods. This allows a user with privileged access (such as the ability to exec into pods) to execute the unshare syscall, potentially escaping container isolation and escalating privileges to host-level access.
Verify against the referenced sources before acting — the references below are authoritative for this CVE, this summary is not.
Affected products & versions What the vendor confirmedThe version ranges the vendor confirmed as vulnerable. If your version sits inside a range here, treat yourself as exposed until you have upgraded.
NVD · CPE data= 5.0= 7.1= 7.2= 8.0= 8.1= 8.2= 9.0= 9.1= 9.2= 10.0= 10.1= 11.0CVSS breakdown How the score is builtThe industry scoring standard. It rates how the flaw is reached, what it takes to exploit, and what an attacker gains — the score is derived from those, not the other way round.
From the vector- Attack vector
- Network
- Complexity
- Low
- Privileges
- Low
- User interaction
- None
- Scope
- Unchanged
- Confidentiality
- High
- Integrity
- High
- Availability
- None
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:N
Am I affected? How to checkSteps we derive from the advisory and the affected-version data, so you can decide whether this CVE reaches your setup. They are a guide, not a scan — your own configuration is the authority.
dbcve checksWork through these to decide whether this CVE applies to you.
-
Identify IBM App Connect Enterprise deploymentList all pods in the cluster and inspect their container images. For each namespace, run 'kubectl get pods -o json' and look for images containing 'appconnect' or 'ibm-app-connect' in the image field. Also check for installed Helm releases with 'helm list --all' and deployed Custom Resources for the App Connect Operator.Affected if Pods running IBM App Connect Enterprise Certified Container images are found in the cluster
-
Verify installed App Connect versionFor each identified pod, run 'kubectl get pod <podname> -o jsonpath={.spec.containers[*].image}' to get the exact image tag. Compare the version number in the tag against: 5.0, 7.1, 7.2, 8.0, 8.1, 8.2, 9.0, 9.1, 9.2, 10.0, 10.1, or 11.0.Affected if The deployed image version matches one of the listed affected versions
-
Check RBAC permissions for pod exec/attachRun 'kubectl auth can-i exec <pod> -n <namespace>' from different service account contexts, or review ClusterRoleBindings and RoleBindings with 'kubectl get clusterrolebindings -o wide' and check for verbs 'exec' and 'attach' on resources 'pods' or 'pods/exec'.Affected if Any user or service account besides cluster-admin has exec or attach permissions to App Connect pods
-
Verify syscall restrictions are not blockedCheck if PodSecurityPolicy (if used) includes 'unshare' in restricted syscalls, or if Pod Security Admission labels are set to 'restricted' in the namespace: 'kubectl get ns <namespace> -o jsonpath={.metadata.labels}' and look for 'pod-security.kubernetes.io/enforce=restricted'.Affected if No syscall restriction mechanism blocks unshare and the namespace does not enforce restricted pod security
-
Confirm seccomp/AppArmor profile absenceInspect pod specs with 'kubectl get pod <podname> -o json' and check for 'securityContext.seccompProfile' or 'securityContext.apparmorProfile' fields in container specs. Also check if a ValidatingWebhookConfiguration blocks pods without seccomp profiles.Affected if Containers run without seccomp or AppArmor profiles that would block the unshare syscall
You are affected if IBM App Connect Enterprise Certified Container versions 5.0 through 11.0 are deployed AND users have exec/attach access to pods AND no syscall restrictions (seccomp, PSA restricted, or PSP) are configured to block unshare.
Generated from the published advisory. Verify against your own configuration.
Remediation Closing itWhat it takes to close this. Where a vendor fix exists we point at it; where none exists we say so plainly, and can build one. Effort estimates are scoped from the advisory, not from your codebase.
dbcve · scopedRestrict exec/attach access to pods via RBAC, implement Pod Security Admission (PSA) or Pod Security Policies (PSP) to block privileged containers and unshare syscalls, and apply least-privilege principles to service accounts.
IBM App Connect Enterprise Certified Container version 12.1 or later (latest stable release)
- Check the IBM App Connect Enterprise Certified Container release notes or IBM Fix Central for security patches addressing CVE-2022-43915
- Upgrade to the latest available version of IBM App Connect Enterprise Certified Container (12.1 or later) which contains the fix for this vulnerability
- If immediate upgrade is not possible, implement Kubernetes Pod Security Standards (PSS) or Pod Security Policies (PSP) to restrict privileged container access
- Configure the pod security policy to deny containers from running as privileged or using hostPID, hostIPC, or hostNetwork options
- Limit which users can execute commands in running pods using RBAC (Role-Based Access Control)
- Audit and restrict access to the 'exec' verb on pods in Kubernetes RBAC policies
- Ensure that unshare syscall is blocked by applying appropriate seccomp profiles or AppArmor/SELinux policies to containers
Generated from the published advisory — verify against the referenced sources before acting.
- Consultation6.0 h
- Implementation12.0 h
- Testing6.0 h
- Review / QA3.0 h
An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $7,680.
Scan for this in your stack
Free · runs locallyCheck whether your project pulls in CVE-2022-43915 — or any other known-vulnerable package — straight from your lock files. Free and open source; it runs locally and uploads nothing.
References Go to the primary sourcePrimary sources — vendor advisories, patches and trackers. Where our summary and a reference disagree, the reference wins.
Primary sourcesPractitioner notes
ContributedPeer-ranked notes from engineers who’ve handled CVE-2022-43915 in production — separate from our analysis above.
The advisory tells you what broke. It rarely tells you what actually worked. If you’ve dealt with this one, that detail is what the next engineer is searching for.
- The version that genuinely resolved it — not the one the vendor claimed
- A config change or rule that shut the vector down
- A gotcha in the upgrade path that cost you an afternoon
No notes yet
Be the first to add a field note for this CVE — a mitigation you’ve verified, a version caveat, or a link to a working fix. Sign in above to contribute.
A place for practitioners to share what actually worked: a mitigation you’ve tested, a configuration change, a version- or environment-specific caveat, or a link to a verified patch. The most useful notes rise to the top as peers upvote them, so the signal stays high.
- Verified mitigations, workarounds, and config changes
- Version or environment caveats, and links to real fixes
- No weaponised exploit code, or anything meant to cause harm
- No spam, self-promotion, credentials, or personal data