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

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

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

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

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
ツール/GitHubGitHub/jackpurcell/autoran-public
エクスプロイト論文と研究レッドチーミングAIセキュリティ敵対的攻撃
GitHubjackpurcell/autoran-public

AutoRAN-public

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

人気

すべて見る →

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

すべてのツールを探索

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

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

🧠 AutoRAN:大規模推論モデルにおけるセーフティ推論の自動ハイジャック

AutoRANは、セーフティ推論の自動ハイジャックであり、アライメントが低い(二次的な)補助モデルを活用して推論トレースをシミュレートし、ナラティブプロンプトを生成し、それらのプロンプトを反復的に洗練させることで、現代の大規模推論モデル(LRM)におけるセーフティ推論をバイパスします。

AutoRAN 概要

⚠️ 免責事項: このリポジトリは、管理されたセキュリティ研究およびAI安全性のレッドチーミングのみを目的としています。

🔍 主な特徴

  • ⚙️ 反復的なプロンプト洗練による自動マルチターン脱獄
  • 🧩 ナラティブテンプレート:もっともらしい教育的・倫理的な名目の下で悪意のある目標を組み立てる
  • 🔁 洗練戦略:中間推論トレースを使用してプロンプトを進化させる
  • 📈 商用LRMでほぼ100%の攻撃成功率
  • 🔬 AdvBench、HarmBench、StrongRejectで評価済み

🛠️ 手法の概要

AutoRANは3段階のパイプラインで構成されています:

  1. 推論のシミュレート:弱いモデルを使用して、標的モデルの高レベルなCoT構造を模倣する
  2. プロンプトの生成:シミュレートされた推論を使用してナラティブテンプレートを埋める
  3. プロンプトの洗練:中間推論とセーフティ拒否パターンに基づいて調整する

AutoRAN パイプライン

📊 結果

攻撃性能

📁 実行記録

ログと結果は/recordsディレクトリにあります。例:

root@kitploit:~
ls -lh records/

🚀 クイックスタート:デモ

root@kitploit:~
# Clone the repository
git clone {THIS_REPO}
cd AutoRAN

# Install dependencies
pip install -r requirements.txt

# Apply for model access (see HuggingFace link)
# https://huggingface.co/huihui-ai/Qwen3-8B-abliterated/tree/main

# Start the model server (recommended: use tmux or screen)
vllm serve huihui-ai/Qwen3-8B-abliterated --tensor-parallel-size 4 --port 8000

# Edit the attack prompt in demo.py as needed
python demo.py

# Follow the command line instructions.
# You may need to copy questions to GPT-o3, GPT-o4 Mini, or Gemini 2.5-Flash/Pro,
# then paste the results back into the terminal as prompted.

🚀 完全な実験ワークフロー

root@kitploit:~
# Clone the repository
git clone {THIS_REPO}
cd AutoRAN

# Install dependencies
pip install -r requirements.txt

# Set up chat2api for automatic ChatGPT interaction:
# https://github.com/lanqian528/chat2api

# Apply for model access (see HuggingFace link)
# https://huggingface.co/huihui-ai/Qwen3-8B-abliterated/tree/main

# Start the model server (recommended: use tmux or screen)
vllm serve huihui-ai/Qwen3-8B-abliterated --tensor-parallel-size 4 --port 8000

# Run the main experiment script
python main.py

🧷 免責事項

このコードは研究および教育目的のみで公開されています。LLMの安全性の脆弱性を責任を持って評価する取り組みを支援することを目的としています。実世界のシステムを標的にしたり、管理された環境の外で有害な出力を生成するためにこのコードを使用しないでください。

📚 引用

root@kitploit:~
@misc{liang2025autoranautomatedhijackingsafety,
      title={AutoRAN: Automated Hijacking of Safety Reasoning in Large Reasoning Models}, 
      author={Jiacheng Liang and Tanqiu Jiang and Yuhui Wang and Rongyi Zhu and Fenglong Ma and Ting Wang},
      year={2025},
      eprint={2505.10846},
      archivePrefix={arXiv},
      primaryClass={cs.LG},
      url={https://arxiv.org/abs/2505.10846}, 
}
ツールをダウンロード