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
vthunting — Vthunting è un piccolo script utilizzato per generare un report sul Virus Total hunting e inviarlo via email, slack o telegram. | Kitploit
Strumenti/GitHubGitHub/fr0gger/vthunting
Analisi delle VulnerabilitàRaccolta InformazioniThreat Intelligence
GitHubfr0gger/vthunting

vthunting

Vthunting è un piccolo script utilizzato per generare un report sul Virus Total hunting e inviarlo via email, slack o telegram.

Vedi Repository
1704543 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

Caccia VT

VThunting è ora presente su VirusTotal.

Virus Total Hunting è un piccolo strumento basato sull'API VT versione 3 per generare report giornalieri, settimanali o mensili sulla caccia al malware. Il report può essere inviato via email, canale Slack o Telegram. Lo strumento può essere utilizzato anche in CLI per ottenere un report in qualsiasi momento. Il numero predefinito di risultati è 10, ma può essere aumentato o diminuito nella parte di configurazione. Questo strumento funziona solo con un'API Virus Total Intelligence.

Esempio di Report

Il seguente estratto è un esempio di report generato.

root@kitploit:~
    __     _______   _   _             _   _            
    \ \   / /_   _| | | |_   _ _ __ | |_(_)_ __   __ _ 
     \ \ / /  | |   | |_| | | | | '_ \| __| | '_ \ / _` |
      \ V /   | |   |  _  | |_| | | | | |_| | | | | (_| |
       \_/    |_|   |_| |_|\__,_|_| |_|\__|_|_| |_|\__, |
                                                    |___/ 
        
            McAfee ATR | Thomas Roccia | @fr0gger_
        Get latest hunting notification from VirusTotal 


Latest report from 2018-12-24 10:20:30.158831
-------------------------------------------------------------------------------------
Rule name: FancyBear_ComputraceAgent
Match date: 2018-12-24 17:38:17
SHA256: f5157e5b8afe1f79f29c947449477d13ede3d7341699256e62966474a7ee1eb5
Tags: [apt28, fancybear_computraceagent]
-------------------------------------------------------------------------------------
Rule name: Winexe_RemoteExecution
Match date: 2018-12-24 15:01:15
SHA256: 1e194647c05b0068c31cd443b5bcacc2dd41799e5d21a40e0c58adbad01c28c6
Tags: [winexe_remoteexecution, apt28]
-------------------------------------------------------------------------------------
Rule name: hatman_compiled_python: hatman
Match date: 2018-12-24 00:28:21
SHA256: 14c64fc93ae68f01989db992bf8ee47ffd33edf66223b84f3fae52f9a843a03f
Tags: [triton, hatman, hatman_compiled_python]
-------------------------------------------------------------------------------------
Rule name: Stuxnet_unpacked
Match date: 2018-12-24 15:00:00
SHA256: 86b05279bf4930ffc0c00e4fd22c8ab9e964e8d45d39bfca42e129b95dc33481
Tags: [stuxnet, stuxnet_unpacked]
-------------------------------------------------------------------------------------
Rule name: Stuxnet
Match date: 2018-12-24 14:59:59
SHA256: 86b05279bf4930ffc0c00e4fd22c8ab9e964e8d45d39bfca42e129b95dc33481
Tags: [stuxnet]
-------------------------------------------------------------------------------------
[truncated]

Per Iniziare

Scarica lo script:

root@kitploit:~
git clone https://github.com/fr0gger/vthunting

Poi configura la parte di configurazione con le tue chiavi API e informazioni:

root@kitploit:~
# Virus Total API
VTAPI = "<API_KEY>"
number_of_result = "" # 10 by default

# Email configuration
smtp_serv = "<SMTP_SERV>"
smtp_port = ""
gmail_login = "<EMAIL>"
gmail_pass = "<APP_PASS>"  # pass from APP
gmail_dest = "<DEST_EMAIL>"

# Slack Bot config
SLACK_BOT_TOKEN = "<API>"
SLACK_CHANNEL = "<SLACK_CHANNEL>"

# Telegram Bot config
TOKEN = "<API>"
chat_id = "<CHAT_ID>"

# Microsoft Teams Bot config
TEAMS_CHANNEL_WEBHOOK = ""

Una volta che la configurazione è pronta, puoi eseguire il file con:

root@kitploit:~
python vthunting.py --help
root@kitploit:~
usage: vthunting.py [OPTION]
    -h, --help              Print this help
    -r, --report            Print the VT hunting report
    -s, --slack_report      Send the report to a Slack channel
    -e, --email_report      Send the report by email
    -t, --telegram_report   Send the report to Telegram
    -m, --teams_report      Send the report to Microsoft Teams
    -j, --json              Get full JSON report

Prerequisiti

Requisiti

Devi prima installare i requisiti:

  • requests
  • slackclient
  • pymsteams
root@kitploit:~
pip install -r requirements.txt

API VT

Ottieni la tua chiave API da Virus Total. https://developers.virustotal.com/v3.0/reference

Configurazione Email (gmail)

Per creare un'app puoi trovare la documentazione qui: https://support.google.com/accounts/answer/185833

Configurazione Slack Bot

Per generare un token devi andare qui e seguire i passaggi: https://api.slack.com/custom-integrations/legacy-tokens

Configurazione Telegram Bot

Per ottenere un token devi creare un bot Telegram parlando con @BotFather, ti aiuterà a configurare il tuo bot e ottenere il tuo token. Una volta ottenuto il token, visita https://api.telegram.org/bot<YOUR_TOKEN>/getUpdates per ottenere l'ID del canale.

Configurazione Microsoft Teams Bot

Aggiungi un connettore webhook al canale Microsoft Teams in cui desideri ricevere i report. https://docs.microsoft.com/en-us/microsoftteams/platform/webhooks-and-connectors/how-to/connectors-using#setting-up-a-custom-incoming-webhook

Installa nel tuo sistema

Se vuoi accedere a questo script ovunque, puoi copiarlo senza estensione in:

root@kitploit:~
cp vthunting.py /usr/local/bin/vthunting

Configura lo scheduler dei compiti con crontab

Puoi usare crontab per eseguire lo script e ricevere report periodicamente.

root@kitploit:~
crontab -e 

Di seguito un esempio per ricevere il report ogni giorno alle 10:15.

root@kitploit:~
# Example of job definition:
# .---------------- minute (0 - 59)
# |  .------------- hour (0 - 23)
# |  |  .---------- day of month (1 - 31)
# |  |  |  .------- month (1 - 12) OR jan,feb,mar,apr ...
# |  |  |  |  .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
# |  |  |  |  |
# *  *  *  *  *  user command to be executed

15 10  * * * /usr/local/bin/vthunting -r -t -e -s >> vthunt.log

Utilizzo di Docker

Clona il repository e configura la tua API per il reporting nello script. Aggiungi la tua API di VirusTotal nel dockerfile.

Poi esegui i seguenti comandi:

root@kitploit:~
# Build the container
docker build -t vthunting:latest .

# run the script:
docker run -t vthunting -r

Licenza

Questo progetto è concesso in licenza MIT - vedi il file LICENSE.md per i dettagli.

Scarica lo strumento