ip checker
1.0.0
Tool to check currently connected IP's using GreyNoise API. It use classic Unix 'netstat' to gain list of currently connected IP's and scan them using GreyNoise API.
pip install ip-checkeror you can install it from source:
git clone https://github.com/mickgl/ip-checker.git
python3 setup.py installBy default IP-Checker runs in background and repeats scan until received kill signal. To run in default mode:
ipcheckerHowever there are two other modes: 'log' which also log all scanned adresses in text file and 'no-background' which preforms one scan and exit.
To run in 'log' mode:
ipchecker --logAnd to run in 'no-background':
ipchecker --no-backgroundAll configuration is made in 'conf.py' which is (for now) located in site-packages after installation. You can modify it directly or just use '--cfg' argument to access it from IP-Checker:
ipchecker --cfgFor info about configuration look at 'conf.py'.