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
Januscape-Hotfix — Complete fix collection for the CVE-2026-53359 guest-to-host escape vulnerability in the KVM/x86 shadow MMU. From zero-downtime livepatch to kernel upgrade — covers every operational scenario. / KVM/x86 shadow MMU 虚拟机逃逸漏洞(CVE-2026-53359)的完整修复方案集合。 从零停机热修复到内核升级,覆盖所有运维场景。 | Kitploit
Tools/GitHubGitHub/aoripus-ltd/januscape-hotfix
Cloud Infrastructure SecurityVulnerability AnalysisScripting & AutomationConfiguration AuditingIncident Response
GitHubaoripus-ltd/januscape-hotfix

Januscape-Hotfix

Complete fix collection for the CVE-2026-53359 guest-to-host escape vulnerability in the KVM/x86 shadow MMU. From zero-downtime livepatch to kernel upgrade — covers every operational scenario. / KVM/x86 shadow MMU 虚拟机逃逸漏洞(CVE-2026-53359)的完整修复方案集合。 从零停机热修复到内核升级,覆盖所有运维场景。

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share
View Repository
511 month agoNot yet reviewed

Januscape Fix Library — CVE-2026-53359

简体中文

Complete fix collection for the CVE-2026-53359 guest-to-host escape vulnerability in the KVM/x86 shadow MMU. From zero-downtime livepatch to kernel upgrade — covers every operational scenario.

One-liner

root@kitploit:~
# Direct
curl -sL https://raw.githubusercontent.com/Aoripus-LTD/Januscape-Hotfix/main/tools/januscape-fix.sh | sudo bash

# Mainland China mirror
curl -sL https://cdn.akaere.online/github.com/Aoripus-LTD/Januscape-Hotfix/raw/main/tools/januscape-fix.sh | sudo bash

Auto-detects environment, checks vulnerability status, recommends the best fix. Multi-mirror auto-fallback — no manual switching needed.

Detail
CVECVE-2026-53359
Original PoCgithub.com/V4bel/Januscape
Upstream fixcommit 81ccda30b4e8 (merged 2026-06-16)
AffectedLinux ≥ 2.6.35 (2010) through pre-2026-06-16 kernels
ImpactHost kernel panic (DoS) or escape (RCE)
RequiresNested virtualization exposed to guest
ArchitecturesIntel VMX/EPT + AMD SVM/NPT (x86 only)

Choose your fix

Quick check

root@kitploit:~
# Is my kernel vulnerable?
grep 'role.word' /proc/kallsyms || echo "NEEDS FIX"

# Is nested virtualization exposed?
cat /sys/module/kvm_intel/parameters/nested 2>/dev/null || cat /sys/module/kvm_amd/parameters/nested

# Was I already attacked? (crash forensic)
bash tools/januscape-logcheck.sh

Fleet triage

root@kitploit:~
# Audit every host in your fleet:
bash tools/januscape-check.sh

QEMU version caveat

QEMU 6.x partially masks PoC exploitability (VM crashes before host panic), but the escape signal reaches L0 KVM. Evidence. QEMU is not a security boundary — patch KVM regardless.

Project Structure

root@kitploit:~
├── kmod/                 # Kernel module (livepatch API)
├── installer/            # Go deployment tool
├── docs/                 # Detailed method docs
│   ├── nested-disable.md
│   ├── livepatch-hotfix.md
│   ├── kpatch-rhel8.md
│   ├── kernel-upgrade.md
│   └── manual-patch.md
├── tools/                # Ops tooling scripts
│   ├── januscape-fix.sh        # All-in-one toolbox (recommended entry)
│   ├── januscape-check.sh      # Fleet audit
│   ├── januscape-logcheck.sh   # Crash log forensics
│   └── kpatch-deps.sh          # kpatch dependency check
└── apply.sh              # Shell deploy (simple)

License

GPL v2, as described in the COPYING file.

Copyright (c) 2026 AORIPUS (BEIJING) TECHNOLOGY CO., LTD. & GEELINX LTD. Contact: [email protected]

References

  • Original PoC — V4bel/Januscape
  • Upstream fix — commit 81ccda30b4e8
  • Patch on lore.kernel.org
  • oss-security disclosure
  • Google kvmCTF
Download Tool
MethodRatingSuccessDifficultyHost RebootVM RebootEffectivePermanentSide Effect
livepatch⭐⭐⭐⭐⭐8/10High✕✕Instant✓Fixes both DoS + UAF escape; needs kernel ≥ 4.12 + CONFIG_LIVEPATCH=y
kpatch⭐⭐⭐⭐6/10Medium✕✕Instant✓RHEL 8 tested sub-versions only
nested=0⭐⭐⭐10/10LowKVM reload✓After VM/KVM restart✓No nested VM creation
kernel upgrade 7.1⭐⭐⭐9/10Medium✓✓Build + reboot✓Upstream fix included
kernel rebuild⭐⭐9/10High✓✓Build + reboot✓Permanent, no runtime deps