Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit cd0170e

Browse files
committedJan 12, 2025·
Add files
1 parent eba1fd1 commit cd0170e

12 files changed

+1146
-0
lines changed
 
Loading
Loading
Loading
Loading
Loading
Loading

‎pocs/linux/kernelctf/CVE-2023-6560_mitigation/docs/exploit.md

+690
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
all: exploit
2+
3+
exploit: exploit.c
4+
gcc -o exploit exploit.c -static
5+
6+
clean:
7+
rm -rf exploit
Binary file not shown.

‎pocs/linux/kernelctf/CVE-2023-6560_mitigation/exploit/exploit.c

+416
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"$schema": "https://google.github.io/security-research/kernelctf/metadata.schema.v3.json",
3+
"submission_ids": [
4+
"exp212"
5+
],
6+
"vulnerability": {
7+
"patch_commit": "https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=820d070feb668aab5bc9413c285a1dda2a70e076",
8+
"cve": "CVE-2023-6560",
9+
"affected_versions": [
10+
"6.6 - 6.6.5"
11+
],
12+
"requirements": {
13+
"attack_surface": [
14+
"io_uring"
15+
],
16+
"capabilities": [
17+
],
18+
"kernel_config": [
19+
"CONFIG_IO_URING"
20+
]
21+
}
22+
},
23+
"exploits": {
24+
"mitigation-v4-6.6": {
25+
"uses": [
26+
"io_uring",
27+
"userns"
28+
],
29+
"requires_separate_kaslr_leak": false,
30+
"stability_notes": "10 times success per 10 times run"
31+
}
32+
}
33+
}
Binary file not shown.

0 commit comments

Comments
 (0)
Please sign in to comment.