This program is done in Java, coded and tested on Intellij platform. Must be tested on Windows environment with Command Prompt. Classes required to compile: 1. Event.java 2. Stats.java 3. IDS.java Change command directory so that the command line will run from the folder where all the files are located. Please ensure all the .txt files are in the same folder as the .java files. Command to compile program: javac Event.java Stats.java IDS.java Command to run program: java IDS Events.txt Stats.txt [number of days] Inconsistencies track: 1. Event’s minimum value greater than its maximum value. 2. Event’s weight not an integer that is greater than 0. 3. Check if discrete event’s minimum/maximum value is a double. 4. Event’s mean value greater than its maximum value. 5. Duplicate event names in events/stats file. 6. The number of events monitored which is specified at the first line of the events/stats file, does not tally with the actual number of records in the file. Note: 1. replace [number of days] with a positive integer 2. Events.txt can be replaced by the name of the file that contains event data 3. Stats.txt can be replaced by the name of the file that contains stats data ** When entering a new statistics filename, do not leave blank. No error detection mechanisms in place to test.**
jonaswong300/Intrusion-Detection-System-Simulation
An intrusion detection system (IDS) is a device or software application that monitors a network for malicious activity or policy violations. Any malicious activity or violation is typically reported or collected centrally using a security information and event management system. Some IDS are capable of responding to detected intrusion upon discovery. These are classified as intrusion prevention systems (IPS).
Java