CVE-2026-68083 (GCVE-0-2026-68083)
Vulnerability from cvelistv5 – Published: 2026-08-10 11:41 – Updated: 2026-08-10 11:41
VLAI
EPSS
VEX
Title
ksmbd: fix path resolution in ksmbd_vfs_kern_path_create
Summary
In the Linux kernel, the following vulnerability has been resolved:
ksmbd: fix path resolution in ksmbd_vfs_kern_path_create
The SMB2 open lookup is rooted at the share with LOOKUP_BENEATH, but the
create/mkdir/hardlink sink is not: ksmbd_vfs_kern_path_create() builds an
absolute path with convert_to_unix_name() and resolves it from AT_FDCWD
via start_creating_path(), so a ".." component is walked from the real
filesystem root and escapes the export.
An authenticated client races a missing path component so the rooted open
lookup returns -ENOENT (taking the create branch) while the same component
is present (a directory) when the create walk runs; the create then
resolves ".." out of the share.
Root the create walk at the share like the lookup and rename paths already
are: resolve the parent with vfs_path_parent_lookup(..., LOOKUP_BENEATH,
&share_conf->vfs_path) and create the final component with
start_creating_noperm(). convert_to_unix_name() then has no callers and is
removed.
Severity
No CVSS data available.
Assigner
References
Impacted products
2 products
| Vendor | Product | Version | |
|---|---|---|---|
| Linux | Linux |
Affected:
265fd1991c1db85fbabaad4946ca0e63e2ae688d , < 489d1ded01425c0fb33418172c0e4e588467526b
(git)
Affected: 265fd1991c1db85fbabaad4946ca0e63e2ae688d , < c7c884a1305aa4540eb7942a50bd356b34120e1f (git) Affected: 265fd1991c1db85fbabaad4946ca0e63e2ae688d , < 98185b3025beeae92d1fe700d5db26b9ac4bf025 (git) Affected: 265fd1991c1db85fbabaad4946ca0e63e2ae688d , < 1c8951963d8ed357f70f59e0ad4ddce2199d2016 (git) |
|
| Linux | Linux |
Affected:
5.15
Unaffected: 0 , < 5.15 (semver) Unaffected: 6.12.97 , ≤ 6.12.* (semver) Unaffected: 6.18.40 , ≤ 6.18.* (semver) Unaffected: 7.1.5 , ≤ 7.1.* (semver) Unaffected: 7.2-rc1 , ≤ * (original_commit_for_fix) |
{
"containers": {
"cna": {
"affected": [
{
"defaultStatus": "unaffected",
"product": "Linux",
"programFiles": [
"fs/smb/server/misc.c",
"fs/smb/server/misc.h",
"fs/smb/server/vfs.c"
],
"repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
"vendor": "Linux",
"versions": [
{
"lessThan": "489d1ded01425c0fb33418172c0e4e588467526b",
"status": "affected",
"version": "265fd1991c1db85fbabaad4946ca0e63e2ae688d",
"versionType": "git"
},
{
"lessThan": "c7c884a1305aa4540eb7942a50bd356b34120e1f",
"status": "affected",
"version": "265fd1991c1db85fbabaad4946ca0e63e2ae688d",
"versionType": "git"
},
{
"lessThan": "98185b3025beeae92d1fe700d5db26b9ac4bf025",
"status": "affected",
"version": "265fd1991c1db85fbabaad4946ca0e63e2ae688d",
"versionType": "git"
},
{
"lessThan": "1c8951963d8ed357f70f59e0ad4ddce2199d2016",
"status": "affected",
"version": "265fd1991c1db85fbabaad4946ca0e63e2ae688d",
"versionType": "git"
}
]
},
{
"defaultStatus": "affected",
"product": "Linux",
"programFiles": [
"fs/smb/server/misc.c",
"fs/smb/server/misc.h",
"fs/smb/server/vfs.c"
],
"repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
"vendor": "Linux",
"versions": [
{
"status": "affected",
"version": "5.15"
},
{
"lessThan": "5.15",
"status": "unaffected",
"version": "0",
"versionType": "semver"
},
{
"lessThanOrEqual": "6.12.*",
"status": "unaffected",
"version": "6.12.97",
"versionType": "semver"
},
{
"lessThanOrEqual": "6.18.*",
"status": "unaffected",
"version": "6.18.40",
"versionType": "semver"
},
{
"lessThanOrEqual": "7.1.*",
"status": "unaffected",
"version": "7.1.5",
"versionType": "semver"
},
{
"lessThanOrEqual": "*",
"status": "unaffected",
"version": "7.2-rc1",
"versionType": "original_commit_for_fix"
}
]
}
],
"cpeApplicability": [
{
"nodes": [
{
"cpeMatch": [
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "6.12.97",
"versionStartIncluding": "5.15",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "6.18.40",
"versionStartIncluding": "5.15",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "7.1.5",
"versionStartIncluding": "5.15",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "7.2-rc1",
"versionStartIncluding": "5.15",
"vulnerable": true
}
],
"negate": false,
"operator": "OR"
}
]
}
],
"descriptions": [
{
"lang": "en",
"value": "In the Linux kernel, the following vulnerability has been resolved:\n\nksmbd: fix path resolution in ksmbd_vfs_kern_path_create\n\nThe SMB2 open lookup is rooted at the share with LOOKUP_BENEATH, but the\ncreate/mkdir/hardlink sink is not: ksmbd_vfs_kern_path_create() builds an\nabsolute path with convert_to_unix_name() and resolves it from AT_FDCWD\nvia start_creating_path(), so a \"..\" component is walked from the real\nfilesystem root and escapes the export.\n\nAn authenticated client races a missing path component so the rooted open\nlookup returns -ENOENT (taking the create branch) while the same component\nis present (a directory) when the create walk runs; the create then\nresolves \"..\" out of the share.\n\nRoot the create walk at the share like the lookup and rename paths already\nare: resolve the parent with vfs_path_parent_lookup(..., LOOKUP_BENEATH,\n\u0026share_conf-\u003evfs_path) and create the final component with\nstart_creating_noperm(). convert_to_unix_name() then has no callers and is\nremoved."
}
],
"providerMetadata": {
"dateUpdated": "2026-08-10T11:41:47.153Z",
"orgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"shortName": "Linux"
},
"references": [
{
"url": "https://git.kernel.org/stable/c/489d1ded01425c0fb33418172c0e4e588467526b"
},
{
"url": "https://git.kernel.org/stable/c/c7c884a1305aa4540eb7942a50bd356b34120e1f"
},
{
"url": "https://git.kernel.org/stable/c/98185b3025beeae92d1fe700d5db26b9ac4bf025"
},
{
"url": "https://git.kernel.org/stable/c/1c8951963d8ed357f70f59e0ad4ddce2199d2016"
}
],
"title": "ksmbd: fix path resolution in ksmbd_vfs_kern_path_create",
"x_generator": {
"engine": "bippy-1.2.0"
}
}
},
"cveMetadata": {
"assignerOrgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"assignerShortName": "Linux",
"cveId": "CVE-2026-68083",
"datePublished": "2026-08-10T11:41:47.153Z",
"dateReserved": "2026-07-30T09:28:09.367Z",
"dateUpdated": "2026-08-10T11:41:47.153Z",
"state": "PUBLISHED"
},
"dataType": "CVE_RECORD",
"dataVersion": "5.2",
"vulnerability-lookup:meta": {
"epss": {
"cve": "CVE-2026-68083",
"date": "2026-08-11",
"epss": "0.00168",
"percentile": "0.06406"
},
"nvd": "{\"cve\":{\"id\":\"CVE-2026-68083\",\"sourceIdentifier\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"published\":\"2026-08-10T12:17:20.807\",\"lastModified\":\"2026-08-10T12:17:20.807\",\"vulnStatus\":\"Received\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"In the Linux kernel, the following vulnerability has been resolved:\\n\\nksmbd: fix path resolution in ksmbd_vfs_kern_path_create\\n\\nThe SMB2 open lookup is rooted at the share with LOOKUP_BENEATH, but the\\ncreate/mkdir/hardlink sink is not: ksmbd_vfs_kern_path_create() builds an\\nabsolute path with convert_to_unix_name() and resolves it from AT_FDCWD\\nvia start_creating_path(), so a \\\"..\\\" component is walked from the real\\nfilesystem root and escapes the export.\\n\\nAn authenticated client races a missing path component so the rooted open\\nlookup returns -ENOENT (taking the create branch) while the same component\\nis present (a directory) when the create walk runs; the create then\\nresolves \\\"..\\\" out of the share.\\n\\nRoot the create walk at the share like the lookup and rename paths already\\nare: resolve the parent with vfs_path_parent_lookup(..., LOOKUP_BENEATH,\\n\u0026share_conf-\u003evfs_path) and create the final component with\\nstart_creating_noperm(). convert_to_unix_name() then has no callers and is\\nremoved.\"}],\"affected\":[{\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"affectedData\":[{\"vendor\":\"Linux\",\"product\":\"Linux\",\"defaultStatus\":\"unaffected\",\"programFiles\":[\"fs/smb/server/misc.c\",\"fs/smb/server/misc.h\",\"fs/smb/server/vfs.c\"],\"repo\":\"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git\",\"versions\":[{\"version\":\"265fd1991c1db85fbabaad4946ca0e63e2ae688d\",\"lessThan\":\"489d1ded01425c0fb33418172c0e4e588467526b\",\"versionType\":\"git\",\"status\":\"affected\"},{\"version\":\"265fd1991c1db85fbabaad4946ca0e63e2ae688d\",\"lessThan\":\"c7c884a1305aa4540eb7942a50bd356b34120e1f\",\"versionType\":\"git\",\"status\":\"affected\"},{\"version\":\"265fd1991c1db85fbabaad4946ca0e63e2ae688d\",\"lessThan\":\"98185b3025beeae92d1fe700d5db26b9ac4bf025\",\"versionType\":\"git\",\"status\":\"affected\"},{\"version\":\"265fd1991c1db85fbabaad4946ca0e63e2ae688d\",\"lessThan\":\"1c8951963d8ed357f70f59e0ad4ddce2199d2016\",\"versionType\":\"git\",\"status\":\"affected\"}]},{\"vendor\":\"Linux\",\"product\":\"Linux\",\"defaultStatus\":\"affected\",\"programFiles\":[\"fs/smb/server/misc.c\",\"fs/smb/server/misc.h\",\"fs/smb/server/vfs.c\"],\"repo\":\"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git\",\"versions\":[{\"version\":\"5.15\",\"status\":\"affected\"},{\"version\":\"0\",\"lessThan\":\"5.15\",\"versionType\":\"semver\",\"status\":\"unaffected\"},{\"version\":\"6.12.97\",\"lessThanOrEqual\":\"6.12.*\",\"versionType\":\"semver\",\"status\":\"unaffected\"},{\"version\":\"6.18.40\",\"lessThanOrEqual\":\"6.18.*\",\"versionType\":\"semver\",\"status\":\"unaffected\"},{\"version\":\"7.1.5\",\"lessThanOrEqual\":\"7.1.*\",\"versionType\":\"semver\",\"status\":\"unaffected\"},{\"version\":\"7.2-rc1\",\"lessThanOrEqual\":\"*\",\"versionType\":\"original_commit_for_fix\",\"status\":\"unaffected\"}]}]}],\"metrics\":{},\"references\":[{\"url\":\"https://git.kernel.org/stable/c/1c8951963d8ed357f70f59e0ad4ddce2199d2016\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"},{\"url\":\"https://git.kernel.org/stable/c/489d1ded01425c0fb33418172c0e4e588467526b\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"},{\"url\":\"https://git.kernel.org/stable/c/98185b3025beeae92d1fe700d5db26b9ac4bf025\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"},{\"url\":\"https://git.kernel.org/stable/c/c7c884a1305aa4540eb7942a50bd356b34120e1f\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"}]}}",
"redhat_vex": {
"aggregate_severity": "Moderate",
"current_release_date": "2026-08-10T21:49:31+00:00",
"cve": "CVE-2026-68083",
"id": "CVE-2026-68083",
"initial_release_date": "2026-08-10T00:00:00+00:00",
"product_status:known_not_affected": "274",
"source": "Red Hat CSAF VEX",
"status": "final",
"title": "kernel: ksmbd: fix path resolution in ksmbd_vfs_kern_path_create",
"url": "https://security.access.redhat.com/data/csaf/v2/vex/2026/cve-2026-68083.json",
"version": "3"
}
}
}
Loading…
Loading…
Experimental. This forecast is provided for visualization only and may change without notice. Do not use it for operational decisions.
Forecast uses a logistic model when the trend is rising, or an exponential decay model when the trend is falling. Fitted via linearized least squares.
Sightings
| Author | Source | Type | Date | Other |
|---|
Nomenclature
- Seen: The vulnerability was mentioned, discussed, or observed by the user.
- Confirmed: The vulnerability has been validated from an analyst's perspective.
- Published Proof of Concept: A public proof of concept is available for this vulnerability.
- Exploited: The vulnerability was observed as exploited by the user who reported the sighting.
- Patched: The vulnerability was observed as successfully patched by the user who reported the sighting.
- Not exploited: The vulnerability was not observed as exploited by the user who reported the sighting.
- Not confirmed: The user expressed doubt about the validity of the vulnerability.
- Not patched: The vulnerability was not observed as successfully patched by the user who reported the sighting.
Loading…
The MITRE ATT&CK techniques below are AI-generated suggestions, inferred from the description of the
vulnerability by the CIRCL/vulnerability-attack-technique-classification-roberta-base
model, served locally by ML-Gateway.
They have not been verified by an analyst and are provided for guidance only.
Loading…
Loading…