All Projects → EntySec → CamOver

EntySec / CamOver

Licence: MIT license
CamOver is a camera exploitation tool that allows to disclosure network camera admin password.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to CamOver

CamRaptor
CamRaptor is a tool that exploits several vulnerabilities in popular DVR cameras to obtain network camera credentials.
Stars: ✭ 106 (-51.15%)
Mutual labels:  camera, exploit, camera-hacking, entysec
tethr
JavaScript/TypeScript library built on top of WebUSB for controlling digital cameras from browsers.
Stars: ✭ 62 (-71.43%)
Mutual labels:  camera, camera-control
HatVenom
HatVenom is a HatSploit native powerful payload generation tool that provides support for all common platforms and architectures.
Stars: ✭ 84 (-61.29%)
Mutual labels:  exploit, entysec
Cameraview
📸 A well documented, high-level Android interface that makes capturing pictures and videos easy, addressing all of the common issues and needs. Real-time filters, gestures, watermarks, frame processing, RAW, output of any size.
Stars: ✭ 4,137 (+1806.45%)
Mutual labels:  camera, camera-control
Hisilicon Dvr Telnet
PoC materials for article https://habr.com/en/post/486856/
Stars: ✭ 101 (-53.46%)
Mutual labels:  camera, exploit
Expcamera
Exploit Netwave and GoAhead IP Camera
Stars: ✭ 194 (-10.6%)
Mutual labels:  camera, exploit
Shodanwave
Shodanwave is a tool for exploring and obtaining information from Netwave IP Camera.
Stars: ✭ 183 (-15.67%)
Mutual labels:  camera, exploit
Ghost
Ghost Framework is an Android post-exploitation framework that exploits the Android Debug Bridge to remotely access an Android device.
Stars: ✭ 1,934 (+791.24%)
Mutual labels:  exploit, entysec
Axon
Unrestricted Lua Execution
Stars: ✭ 59 (-72.81%)
Mutual labels:  exploit
ScoutAR
Augmented reality app displays nearby restaurant information in a live camera and map view.
Stars: ✭ 28 (-87.1%)
Mutual labels:  camera
Matthew-Lancaster
A Collect of Script For AutohotKey, DOS Command, VBScript, VB6, VB2008, Grub4Dos, Reg Keys, Win Powershell, SMTP, ARDUNIO, GITHUB Begin OCT 2018
Stars: ✭ 21 (-90.32%)
Mutual labels:  camera
Nager.VideoStream
Get images from a network camera stream or webcam
Stars: ✭ 27 (-87.56%)
Mutual labels:  camera
prl guest to host
Guest to host VM escape exploit for Parallels Desktop
Stars: ✭ 26 (-88.02%)
Mutual labels:  exploit
CVE-2021-41773 CVE-2021-42013
Apache HTTP Server 2.4.49, 2.4.50 - Path Traversal & RCE
Stars: ✭ 20 (-90.78%)
Mutual labels:  exploit
SeeShark
Simple C# camera library.
Stars: ✭ 50 (-76.96%)
Mutual labels:  camera
Python
Python Powered Repository
Stars: ✭ 17 (-92.17%)
Mutual labels:  exploit
exploiting
Exploiting challenges in Linux and Windows
Stars: ✭ 122 (-43.78%)
Mutual labels:  exploit
BlogDemoRepository
来自博客27house.cn中使用的Demo
Stars: ✭ 25 (-88.48%)
Mutual labels:  camera
xiongmai-cam-api
Xiongmai IP Camera Simple API in Python
Stars: ✭ 20 (-90.78%)
Mutual labels:  camera
ProxyLogon
ProxyLogon(CVE-2021-26855+CVE-2021-27065) Exchange Server RCE(SSRF->GetWebShell)
Stars: ✭ 112 (-48.39%)
Mutual labels:  exploit

CamOver

CamOver is a camera exploitation tool that allows to disclosure network camera admin password.

Features

  • Exploits vulnerabilities in most popular camera models such as CCTV, GoAhead and Netwave.
  • Optimized to exploit multiple cameras at one time from list with threading enabled.
  • Simple CLI and API usage.

Installation

pip3 install git+https://github.com/EntySec/CamOver

Basic usage

To use CamOver just type camover in your terminal.

usage: camover [-h] [-t] [-o OUTPUT] [-i INPUT] [-a ADDRESS] [--shodan SHODAN]
               [--zoomeye ZOOMEYE] [-p PAGES]

CamOver is a camera exploitation tool that allows to disclosure network camera
admin password.

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.

Examples

Exploiting single camera

Let's hack my camera just for fun.

camover -a 192.168.99.100

Exploiting cameras from Internet

Let's try to use Shodan search engine to exploit cameras over Internet, we will use it with -t for fast exploitation.

camover -t --shodan PSKINdQe1GyxGgecYz2191H2JoS9qvgD

NOTE: Given Shodan API key (PSKINdQe1GyxGgecYz2191H2JoS9qvgD) is my PRO API key, you can use this key or your own, be free to use all our resources for free :)

Exploiting cameras from input file

Let's try to use opened database of cameras with -t for fast exploitation.

camover -t -i cameras.txt -o passwords.txt

NOTE: It will exploit all cameras in cameras.txt list by their addresses and save all obtained passwords to passwords.txt.

API usage

CamOver also has their own Python API that can be invoked by importing CamOver to your code.

from camover import CamOver

Basic functions

There are all CamOver basic functions that can be used to exploit specified camera.

  • exploit(address) - Exploit single camera by given address.

Examples

Exploiting single camera

from camover import CamOver

camover = CamOver()
creds = camover.exploit('192.168.99.100')

print(creds)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].