Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
cve-writeups-and-pocs — CVE-2026-80724 PoC + full write-up — Linux kernel ptp/vmclock read-only mapping becomes writable (VM_MAYWRITE). Discovered, reported & fixed by Abdifatah Suruur (suruurism) | Kitploit
Tools/GitHubGitHub/suruurism/cve-writeups-and-pocs
Vulnerability AnalysisExploitationPapers & ResearchLearning & EducationBinary Exploitation
GitHubsuruurism/cve-writeups-and-pocs

cve-writeups-and-pocs

CVE-2026-80724 PoC + full write-up — Linux kernel ptp/vmclock read-only mapping becomes writable (VM_MAYWRITE). Discovered, reported & fixed by Abdifatah Suruur (suruurism)

View Repository
14h 54m agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

CVE-2026-80724 PoC & Write-up

CVE-2026-80724 — Linux kernel ptp: vmclock: prevent read-only mappings from becoming writable

Full Proof-of-Concept + Technical Write-up

Security research by Abdifatah Suruur (suruur) — collection of CVE write-ups and PoCs for vulnerabilities discovered independently.

  • CVE ID: CVE-2026-80724
  • Severity: 8.8 (High) — CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H
  • Component: Linux kernel drivers/ptp/ptp_vmclock.c
  • Discovered & Fixed by: Abdifatah Suruur (@suruurism)
  • Status: Publicly disclosed • Patch merged • Stable backports available

Quick Start – Run the PoC

root@kitploit:~
git clone https://github.com/suruurism/cve-writeups-and-pocs.git
cd cve-writeups-and-pocs/CVE-2026-80724
make
sudo ./vmclock_poc /dev/vmclock0
Exit CodeMeaning
0WRITE LANDED → system is vulnerable
1mprotect refused or write faulted → patched
2No vmclock device found

Vulnerability Summary

The ptp_vmclock driver correctly rejects writable mappings of the shared vmclock ABI page with -EROFS, but leaves VM_MAYWRITE set.

A process that can open /dev/vmclockN can:

  1. mmap() the page as PROT_READ
  2. Upgrade it with mprotect(PROT_READ|PROT_WRITE)
  3. Write into the host-owned timekeeping data (sequence counter, UTC time, TSC offset, disruption marker)

This breaks the fundamental read-only contract of the vmclock ABI.

Repository Contents

PathDescription
CVE-2026-80724/CVE-2026-80724.mdFull technical write-up (root cause, impact, timeline, references)
CVE-2026-80724/vmclock_poc.cWorking Proof-of-Concept
CVE-2026-80724/MakefileSimple build file

Official References

  • CVE Record: https://www.cve.org/CVERecord?id=CVE-2026-80724
  • Fix commit: https://git.kernel.org/torvalds/c/a5edadbae57e2298a56cf7a4e774a027905a331f
  • Patch submission: 20260813174707.14809-1
  • Linux CVE announce: https://lists.openwall.net/linux-cve-announce/2026/08/28/126

Author

Abdifatah Suruur (suruur / suruurism)

  • GitHub: @suruurism

Disclaimer

This repository is for educational and research purposes only.

Use the PoC only on systems you own or have explicit permission to test.

Download Tool