https://github.com/wybiral/dex
IoT device indexer and search engine.
https://github.com/wybiral/dex
iot netsec
Last synced: 5 months ago
JSON representation
IoT device indexer and search engine.
- Host: GitHub
- URL: https://github.com/wybiral/dex
- Owner: wybiral
- License: apache-2.0
- Created: 2017-02-22T18:49:46.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-08-19T16:52:23.000Z (almost 7 years ago)
- Last Synced: 2024-12-31T00:04:10.332Z (over 1 year ago)
- Topics: iot, netsec
- Language: Python
- Homepage:
- Size: 12.7 KB
- Stars: 59
- Watchers: 3
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dex
dex will index scans of exposed devices from [ipv4scan](https://github.com/wybiral/ipv4scan) and create a growing real-time database of the results. It then provides a basic regex search interface to help find specific devices.
## Getting started
This project requires the flask module for the web server. You can usually install that with:
```
pip3 install flask
```
Then you need to pipe the ipv4scan results into collect.py to start indexing:
```
ipv4scan -n 500 | python3 collect.py
```
Then start main.py to serve the web search interface:
```
python3 main.py
```
And finally navigate to http://localhost:8666 and enter your regex search queries to start looking for devices.