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

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

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

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

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
pivotnacci — HTTPエージェント経由でSOCKS接続を行うツール | Kitploit
ツール/GitHubGitHub/blackarrowsec/pivotnacci
横移動ウェブセキュリティペネトレーションテストレッドチーミング
GitHubblackarrowsec/pivotnacci

pivotnacci

HTTPエージェント経由でSOCKS接続を行うツール

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

人気

すべて見る →

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

すべてのツールを探索

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

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

pivotnacci

内部ネットワークにピボットするためにHTTPエージェントをデプロイします。Pivotnacci はHTTP エージェントと通信するsocksサーバーを作成できます。アーキテクチャは次のようになります:

このツールは優れた reGeorg に触発されました。ただし、以下の改善点が含まれています:

  • ロードバランサーのサポート
  • カスタマイズ可能なポーリング間隔 (検出率を低減するのに有用)
  • サーバーによって閉じられた接続を自動ドロップ
  • モジュール化され、よりクリーンなコード
  • pip によるインストール
  • パスワード保護されたエージェント

サポートされているsocksプロトコル

  • Socks 4
  • Socks 5
    • 認証なし
    • ユーザーパスワード
    • GSSAPI

インストール

Pythonパッケージから:

root@kitploit:~
pip3 install pivotnacci

リポジトリから:

root@kitploit:~
git clone https://github.com/blackarrowsec/pivotnacci.git
cd pivotnacci/
pip3 install -r requirements.txt # to avoid installing on the OS
python3 setup.py install # to install on the OS

使用方法

  1. 必要なエージェント(php, jsp, aspx)をWebサーバーにアップロードします
  2. エージェントがデプロイされたらsocksサーバーを起動します
  3. proxychainsまたは他のプロキシクライアントを設定します (pivotnacci socksサーバーのデフォルトの待受ポートは1080です)
root@kitploit:~
$ pivotnacci -h
usage: pivotnacci [-h] [-s addr] [-p port] [--verbose] [--ack-message message]
                  [--password password] [--user-agent user_agent]
                  [--header header] [--proxy [protocol://]host[:port]]
                  [--type type] [--polling-interval milliseconds]
                  [--request-tries number] [--retry-interval milliseconds]
                  url

Socks server for HTTP agents

positional arguments:
  url                   The url of the agent

optional arguments:
  -h, --help            show this help message and exit
  -s addr, --source addr
                        The default listening address (default: 127.0.0.1)
  -p port, --port port  The default listening port (default: 1080)
  --verbose, -v
  --ack-message message, -a message
                        Message returned by the agent web page (default:
                        Server Error 500 (Internal Error))
  --password password   Password to communicate with the agent (default: )
  --user-agent user_agent, -A user_agent
                        The User-Agent header sent to the agent (default:
                        pivotnacci/0.0.1)
  --header header, -H header
                        Send custom header. Specify in the form 'Name: Value'
                        (default: None)
  --proxy [protocol://]host[:port], -x [protocol://]host[:port]
                        Set the HTTP proxy to use.(Environment variables
                        HTTP_PROXY and HTTPS_PROXY are also supported)
                        (default: None)
  --type type, -t type  To specify agent type in case is not automatically
                        detected. Options are ['php', 'jsp', 'aspx'] (default:
                        None)
  --polling-interval milliseconds
                        Interval to poll the agents (for recv operations)
                        (default: 100)
  --request-tries number
                        The number of retries for each request to an agent. To
                        use in case of balanced servers (default: 50)
  --retry-interval milliseconds
                        Interval to retry a failure request (due a balanced
                        server) (default: 100)

例

パスワード s3cr3t を使用したエージェント (エージェント側でも AGENT_PASSWORD 変数を変更する必要があります):

root@kitploit:~
pivotnacci  https://domain.com/agent.php --password "s3cr3t"

カスタムHTTP Host ヘッダーとカスタム CustomAgent User-Agent を使用する:

root@kitploit:~
pivotnacci  https://domain.com/agent.jsp -H 'Host: vhost.domain.com' -A 'CustomAgent'

異なるエージェントメッセージ 418 I'm a teapot を設定する (エージェント側でも ACK_MESSAGE 変数を変更する必要があります):

root@kitploit:~
pivotnacci https://domain.com/agent.aspx --ack-message "418 I'm a teapot"

ポーリング間隔を 2 秒に設定することで検出率を低減します (例: WAF):

root@kitploit:~
pivotnacci  https://domain.com/agent.php --polling-interval 2000

作者

Eloy Pérez (@Zer1t0) [ www.blackarrow.net - www.tarlogic.com ]

ライセンス

このプロジェクトに含まれるすべてのコードは、GNU AGPLv3 ライセンスの条件に基づいてライセンスされています。

ツールをダウンロード