Author: Hamza Khalid
This project is a basic Intrusion Detection and Prevention System (IDPS) designed to monitor various activities on a host system, detect suspicious behavior, and alert the user to possible threats. The IDPS includes file system, network, and process monitoring, as well as anomaly detection features.
- Monitor file system changes (create, modify, delete, move) in a specified directory.
- Monitor network connections.
- Monitor system processes.
- Anomaly detection based on the number of events in a short period and machine learning techniques (Isolation Forest algorithm).
- Clone the repository:
git clone /~https://github.com/hmzakhalid/Intrusion-Detection-Prevention-System
- Install the required Python packages:
pip install -r requirements.txt
-
Edit the
idps.py
script and set thepath
variable to the directories you want to monitor. -
Run the IDPS:
python idps.py
The IDPS will begin monitoring the specified directory and the host system for any suspicious activity. Detected events will be logged in the following files:
file_system_log.txt
: File system changesnetwork_connections_log.txt
: Network connectionsprocesses_log.txt
: System processes
Additionally, the IDPS will alert the user if an anomaly is detected based on the number of events in a short period or unusual event patterns recognized by the Isolation Forest algorithm.
You can customize various aspects of the IDPS, such as the monitoring intervals, anomaly detection thresholds, and logging options, by editing the corresponding variables and parameters in the idps.py
, monitor.py
and detector.py
scripts.
This IDPS is a basic implementation and has several limitations. The anomaly detection system could be further enhanced by incorporating more advanced machine learning algorithms, statistical models, or event pattern analysis. Integrating the IDPS with other security tools and platforms can also improve its effectiveness.