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

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

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

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

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
next88 — React Server ComponentsのRCE脆弱性(CVE-2025-55182 & CVE-2025-66478)を検出するための高性能なGo実装。 | Kitploit
ツール/GitHubGitHub/h0tak88r/next88
脆弱性スキャナーエクスプロイトウェブアプリケーション悪用WAFバイパスペネトレーションテストレッドチーミング
GitHubh0tak88r/next88

next88

React Server ComponentsのRCE脆弱性(CVE-2025-55182 & CVE-2025-66478)を検出するための高性能なGo実装。

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

人気

すべて見る →

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

すべてのツールを探索

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

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

next88 - React Server Components RCE スキャナ

React Server Components RCE 脆弱性(CVE-2025-55182 & CVE-2025-66478)を検出するための高性能 Go 実装。

特徴

  • 🚀 高性能: goroutine ベースの並行処理を備えたコンパイル済み Go バイナリ
  • 🔍 複数の検出方法:
    • 安全なサイドチャネル検出
    • RCE PoC チェック
    • WAF バイパス技術(ジャンクデータ、二重エンコーディング、セミコロンバイパス)
    • Vercel 固有の WAF バイパス
    • ACTION_ID 抽出によるソースコード露出の検出
  • 🎯 柔軟なスキャン: 単一ホスト、ホストリスト、またはカスタムパス
  • 📊 JSON 出力: 統合用の構造化された結果
  • 🎨 カラー出力: ターミナル向けのカラー出力

インストール

ソースから

root@kitploit:~
go install github.com/h0tak88r/next88@latest

ローカルでのビルド

root@kitploit:~
git clone https://github.com/h0tak88r/next88.git
cd next88
go build -o next88 .

使用方法

基本的な使用方法

root@kitploit:~
# Scan single host
next88 -u https://example.com

# Scan from file
next88 -l hosts.txt

# With custom threads
next88 -l hosts.txt -t 50

高度なオプション

root@kitploit:~
# Safe check (side-channel detection)
next88 -u https://example.com -safe-check

# WAF bypass with custom size
next88 -u https://example.com -waf-bypass -waf-bypass-size 256

# Vercel WAF bypass
next88 -u https://example.com -vercel-waf-bypass

# Double URL encoding bypass
next88 -u https://example.com -double-encode

# Semicolon bypass
next88 -u https://example.com -semicolon-bypass

# Source code exposure check
next88 -u https://example.com -check-source-exposure

# DoS test (send multiple requests)
next88 -u https://example.com --dos-test --dos-requests 200

# Custom paths
next88 -u https://example.com -path /_next -path /api

# Path file
next88 -u https://example.com -path-file paths.txt

# Windows payload
next88 -u https://example.com -windows

# Output to JSON
next88 -l hosts.txt -o results.json -all-results

# With Discord webhook notifications (real-time alerts)
next88 -l hosts.txt --discord-webhook https://discord.com/api/webhooks/...

オプション

root@kitploit:~
  -u, --url <url>              Single URL/host to check
  -l, --list <file>            File containing list of hosts (one per line)
  -t, --threads <num>          Number of concurrent threads (default: 10)
  --timeout <seconds>          Request timeout in seconds (default: 10)
  -o, --output <file>          Output file for results (JSON format)
  --all-results                Save all results to output file, not just vulnerable hosts
  -k, --insecure               Disable SSL certificate verification (default: true)
  -v, --verbose                Verbose output (show response snippets for all hosts)
  -q, --quiet                  Quiet mode (only show vulnerable hosts)
  --no-color                   Disable colored output
  --safe-check                 Use safe side-channel detection instead of RCE PoC
  --windows                    Use Windows PowerShell payload instead of Unix shell
  --waf-bypass                 Add junk data to bypass WAF content inspection (default: 128KB)
  --waf-bypass-size <KB>       Size of junk data in KB for WAF bypass (default: 128)
  --vercel-waf-bypass          Use Vercel WAF bypass payload variant
  --path <path>                Custom path to test (can be used multiple times)
  --path-file <file>            File containing list of paths to test (one per line)
  --check-source-exposure      Check for source code exposure via ACTION_ID extraction from HTML
  --double-encode              Apply double URL encoding to bypass WAFs
  --semicolon-bypass           Add semicolons in strategic places to bypass WAFs
  --discord-webhook <url>      Discord webhook URL for real-time vulnerability notifications
  --dos-test                   Test for Denial of Service by sending multiple requests
  --dos-requests <num>         Number of requests to send for DoS test (default: 100)

出力形式

JSON 出力の構造:

root@kitploit:~
{
  "scan_time": "2025-12-13T03:35:53Z",
  "total_results": 1,
  "results": [
    {
      "host": "https://example.com",
      "vulnerable": true,
      "status_code": 303,
      "final_url": "https://example.com/",
      "tested_url": "https://example.com/",
      "timestamp": "2025-12-13T03:35:51Z"
    }
  ]
}

AutoAR との統合

このツールは AutoAR プロジェクトに統合されており、以下の方法で使用できます:

root@kitploit:~
# Via AutoAR main script
./main.sh react2shell_scan run -d example.com

# Via Discord bot
/react2shell_scan domain:example.com

Docker

このツールは AutoAR Docker イメージに自動的にビルド・インストールされます:

root@kitploit:~
RUN go install github.com/h0tak88r/next88@latest

パフォーマンス

  • 並行スキャン: goroutine による並列ホストスキャン
  • 最適化された HTTP クライアント: 効率的なコネクションプーリングとタイムアウト
  • 低メモリフットプリント: 最小限の依存関係を持つコンパイル済みバイナリ
  • 高速実行: 通常、Python 実装より 5〜10 倍高速

クレジット

Assetnote セキュリティリサーチチームの研究に基づいています。

ライセンス

詳細については LICENSE ファイルを参照してください。

ツールをダウンロード