Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/turbo/c4
Open IP cameras in IPv4
https://github.com/turbo/c4
camera web-security
Last synced: 16 days ago
JSON representation
Open IP cameras in IPv4
- Host: GitHub
- URL: https://github.com/turbo/c4
- Owner: turbo
- Created: 2017-01-05T18:53:04.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-01-05T19:08:00.000Z (almost 8 years ago)
- Last Synced: 2024-08-01T06:21:20.949Z (3 months ago)
- Topics: camera, web-security
- Size: 1000 Bytes
- Stars: 141
- Watchers: 12
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# c4
c4 is a plain-text list of stream URLs of about 30k open IP cameras in IPv4, which is a representative amount.
## Querying the list
### Download
```sh
wget git.io/c4
```### View a random camera
`open` should be configured to open URLs with your browser.
Unix:
```sh
open $(curl -Ls git.io/c4 | shuf | head -n1)
```macOS:
```sh
open $(curl -Ls git.io/c4 | gshuf | head -n1)
```Example:
![](http://imgur.com/OdlSioc.png)
### Open the admin panel
This will open the admin panel of cameras which are probably enabled to be controlled remotely (i.e. you can move them around). You might be asked for a pasword, just enter admin and leave password empty. Sometimes you are logged in automatically. Either way, after logging in, select the "Server Push Mode", sometimes also called "Firefox", "Chrome" or "videostream" mode.
Unix:
```sh
open http://admin:@$(curl -Ls git.io/c4 | grep videostream | shuf | head -n1 | cut -d "/" -f3)
```macOS:
```sh
open http://admin:@$(curl -Ls git.io/c4 | grep videostream | gshuf | head -n1 | cut -d "/" -f3)
```Example:
![](http://imgur.com/oTh75MB.png)