To capture the network packets using snort.
requirement :- 1. kali Linux 2. router step :-- Download and Install SNORT in Kali Linux. use command apt install snort move to snort directory. use command cd /etc/snortg Original configuration file was snort.config, but for backup we will create a clone of this file and make changes in that file. Use command cp snort.config test_snort.configg We have to put our network and ip range in test_config file, for that we will edit this file. use command nano test_snort.conf g After that put your network IP and range as shown in screenshot.. Then save and close the file. Now we have to make rules, for that we have to move to rules directory. use command cd rules Here now the SNORT has so many rules files for defining rules we have to define on local.rules files, but for backup we can create secondary file by the command cp local.rules custom.rules SNORT will not directly take rules from our custom file, for that we have to include custom file in that local.rules file. For tha...