Checker is an automated tool designed to monitor the persistence of compromised accounts and open ports on compromised machines over time during red team engagements.
This tool is built to support Python 3.10. Please note that Python versions 3.11 and higher are not supported and might not be compatible with the parallel-ssh library.
To install the required dependencies, use the following command(it is higly recommended to use a virtual environment such as venv):
pip install -r requirements.txt
-
Create a
logins.csv
file to specify the targets for the Parallel-SSH function which will attempt to log in to the targets using the supplied credentials. The format for the file should be:ip,username:password
-
Create a
ip_file.txt
file to set the target ips to scan, which will continutly scanned for ports and output open ports. The format for this file should one ip per line:127.0.0.1 192.168.1.1
-
Create a
web_file.txt
file to set the target URLs to scan, which will continutly scanned for 200 responses. The format for this file should one URL per line:https://google.com/ https://bing.com/
-
Start the program:
python3 main.py
Feel free to modify the variable in main.py according to your specific requirements.