Thank you so much for this video, it helped me a lot!
@jeffnaval4894Ай бұрын
I thought it's just going to be simple. you install and run and walah!! but nah. hahaha
@emirhandemir3872Ай бұрын
I did everything but I kept getting an error "Can't open display: localhost:0.0". I asked chat GPT and it told me to run two commands and it actaully worked. wsl --list --verbose This will show you somethings. If it's 2 change it to 1 wsl --set-version Ubuntu 1 And restart. I have no idea what these commands do though!
@txtx575Ай бұрын
Thanks for the video ZAG. I am trying to install snort for over 2 months now and your video saved me. Thanks again !!
@jeffnaval4894Ай бұрын
still works in windows 11?
@ilhampewil671Ай бұрын
thankyou sir all your snort tutorial running smooth in my device
@ertugrul41492 ай бұрын
Thanks a lot mr.Zag !
@ananddogra88713 ай бұрын
5:59 sir how can I download snort rules
@ananddogra88713 ай бұрын
Sir how I can download snort rules from this while iam signing my email and password still the rules is not downloading
@ertugrul41492 ай бұрын
verify your email first and login
@jdurham19774 ай бұрын
Reputation Processor section: I have no blacklist.rules in my Rules directory nor whitelist.rules files. How do I fix this?
@john6182-r5j4 ай бұрын
thank you
@mao19995 ай бұрын
only helpful video for snort configuration, thank u a lot
@justin1stYT5 ай бұрын
Finally. i configured snort !!! Thank you so much Zag
@phatta64846 ай бұрын
Thank you , Good Video
@Неагентш009886 ай бұрын
Hello Dr. Zag! I have one problem. Can I ask you for some help?
@acceptcookies36446 ай бұрын
Thank you so much! You have made installing snort easy for me.
@AbdullahAdeeb7976 ай бұрын
I love you Zag , 1 Million years to find the Best Snort Video & the time you gave it shows your amazing heart in making sure everybody gets it right, I just wish you keep it as I am sure your channel will grow big, a lot of them started as teachers and ended up as salesmen, reminded me of that guy who slurps the coffee 20 times in 5 minutes video, since when slurping became attractive I guess for his over a million viewers but not me :) ! what I am saying here :) ... wish you luck great man & keep up the good work (BIG SUBSCRIBE )
@simplehappinesss6 ай бұрын
Terima Kasih Tuan, berkat tuan saya bisa menkonfigurasi 🙂. Tuan
@jaredemmanuel95937 ай бұрын
Thank you so much for guiding me through!
@jamesgaby55529 ай бұрын
It's a complicated installation!!
@AryanChowdhury-j5w9 ай бұрын
keep up the good work
@AryanChowdhury-j5w9 ай бұрын
thanks man
@Md.SairIslamRoni9 ай бұрын
Thank you so much. Your video saves my day
@armelwendpouirethibautsank911110 ай бұрын
when i execute this command : snort -i 5 c:\snort\etc\snort.conf -A console i get this error message : --== Initializing Snort ==-- Initializing Output Plugins! Snort BPF option: c:\snort\etc\snort.conf -A console pcap DAQ configured to passive. The DAQ version does not support reload. Acquiring network traffic from "\Device\NPF_{7F82CE94-FEC4-483E-ADCB-19C5E7DABF32}". ERROR: Can't set DAQ BPF filter to 'c:\snort\etc\snort.conf -A console' (░┐Fi¸⌂)! Fatal Error, Quitting.. can you help me please
@aceofheartbreak4 ай бұрын
Per my buddy "AngryITGUY-GPT" The error you're encountering occurs because Snort is trying to apply a Berkeley Packet Filter (BPF) using what it thinks is a filter expression, but it's actually treating the entire path to the configuration file (c:\snort\etc\snort.conf -A console) as a filter, which leads to the error. Steps to Fix the Issue: Correct the Command Syntax: Ensure that the command syntax is correct. The -i flag is used to specify the interface, and the -c flag is used to specify the configuration file. The -A flag sets the alert mode (e.g., console for console output). The correct syntax should be: sh Copy code snort -i 5 -c c:\snort\etc\snort.conf -A console Verify the Interface Index: The -i 5 assumes that the network interface index is 5. This might not be correct. You should verify the correct network interface index using the following command: sh Copy code snort -W This will list all available interfaces with their corresponding index numbers. Replace 5 with the correct index. Run the Command Again: After correcting the command, run it again: sh Copy code snort -i <correct_interface_index> -c c:\snort\etc\snort.conf -A console Replace <correct_interface_index> with the index you found using the snort -W command. Example: If your interface index is 3, the command should look like this: sh Copy code snort -i 3 -c c:\snort\etc\snort.conf -A console
@WalrusJeffGT10 ай бұрын
Best snort video, all other videos contain bugs that are confusing af
@sanilalkuttimon175511 ай бұрын
Good vdo
@jiho1960 Жыл бұрын
Name of this instructor please? He's amazing.
@umarfarouk7764 Жыл бұрын
Can i do it on my system or is it best to use a vm?
@thatocyberspace Жыл бұрын
Wonder too, let me know when he answers u
@fredrickalonge133910 ай бұрын
You should be able to install snort on your host machine. Just ensure to configure the network interface and network addresses
@mikeypauly83717 ай бұрын
Does it work on windows 11?
@MrDimeboy996 ай бұрын
@@mikeypauly8371 I haven't been able to get it to run. I suspended my Antivirus just in case it was blocking in some manner but still didn't run. I'm getting a 0xc000007b Error and have taken steps to try and fix it but not working yet.
@nizamuddinshaikh3185 Жыл бұрын
Thorough explanation of all the steps. Very good video. Thank you for sharing. I expect such more videos from you. Thank you once again.
@sethfletcher6375 Жыл бұрын
Thank you the video was very helpful!
@destitute8493 Жыл бұрын
Worth watching. I was able to correct a number of small errors in configuration that would have taken hours to figure out otherwise.