Hashing Algorithms + Coding up a File Integrity Monitor (FIM) | CYBER SECURITY PROJECTS

  Рет қаралды 18,948

Josh Madakor

Josh Madakor

Күн бұрын

Пікірлер: 45
@day1david
@day1david 2 жыл бұрын
Listen man you are doing the lords work for those trying to learn !
@edrickreyes-melendez4215
@edrickreyes-melendez4215 2 жыл бұрын
I really like this type of raw content where mistakes are made and googling is done. More stuff like this please! Maybe some python stuff??
@JoshMadakor
@JoshMadakor 2 жыл бұрын
Thanks so much! I may do some more in the future haha. Appreciate you watching!
@NessHypegaming
@NessHypegaming 2 жыл бұрын
please do more cyber security projects this help alot!
@humoful
@humoful Жыл бұрын
I love your transparency 🎉 makes me more confident
@superplusextra9634
@superplusextra9634 3 жыл бұрын
Josh is becoming villainous with this good content 😂👍
@JoshMadakor
@JoshMadakor 3 жыл бұрын
Lmao, ty chief 👏🥺
@azimuddin3658
@azimuddin3658 2 жыл бұрын
Thanks Mr josh, for creating this type of project for beginner, i complete it and it works. In last word, you say it can be more complex by add more option , if it possible show us in ur next vedios
@JoshMadakor
@JoshMadakor 2 жыл бұрын
Thanks Azim! I'm glad it worked! I will think about it haha. I will do so more labs in the future though :)
@blackwintergaming4609
@blackwintergaming4609 2 жыл бұрын
Can you put the code in here? The sourcecode on github doesnt work properly
@skoobster4358
@skoobster4358 3 жыл бұрын
Found you from how to get a cybersecurity job with no experience and love your content
@JoshMadakor
@JoshMadakor 3 жыл бұрын
Glad you found the channel and glad that the content has been useful!! Thanks for watching and taking the time to comment!
@starlinjimenez6195
@starlinjimenez6195 Жыл бұрын
Love the video. Great work my guy!
@MD-tr6sh
@MD-tr6sh 2 жыл бұрын
I don't know how I skipped this video.. I'm totally going to play with this...
@AN-mo3iy
@AN-mo3iy Жыл бұрын
Ohh josh!!!...good work🥳🥳....u got exhausted man🥹🥲
@nedumbaekwe7960
@nedumbaekwe7960 2 жыл бұрын
Josh you are good!
@JoshMadakor
@JoshMadakor 2 жыл бұрын
Thank you so much, hehe
@teamtrees6160
@teamtrees6160 3 жыл бұрын
Hi Josh! Could you make a video about cybersecurity job roles specifically for example, a security analyst vs a chief security officer and Lastly, could you talk about job roles and tasks you had to face in the industry. Kind regards🤗
@JoshMadakor
@JoshMadakor 3 жыл бұрын
Hey! I've had a bunch of people ask about this lol. I'll add it to my list and do my best to make a video about it :) TY for watching
@bodybychiken
@bodybychiken Жыл бұрын
Thank you for this
@Geomaverick124
@Geomaverick124 3 жыл бұрын
This seems pretty cool. I think I may try to recreate it with Nodejs.
@JoshMadakor
@JoshMadakor 3 жыл бұрын
Hell yeah, love node honestly 😩👏👏
@Geomaverick124
@Geomaverick124 3 жыл бұрын
@@JoshMadakor have you looked into the Nodejs certs? The were created by openjs, the maintainers of Nodejs...I am going for one of them in April
@sarapaul9201
@sarapaul9201 3 жыл бұрын
Learning lot ☕️
@JoshMadakor
@JoshMadakor 3 жыл бұрын
Glad to hear it!
@celinenerima6391
@celinenerima6391 2 жыл бұрын
amazing
@doctorblack3246
@doctorblack3246 Жыл бұрын
mr.Josh when you execute the code at 29:24 , it is just showing me the full names of existing files repeatedly it is not detecting any newly created file??
@koolmoaazn
@koolmoaazn Жыл бұрын
Amazing video! If possible, could you do another lab or showcase on how to send alerts to emails or text messages, that would be awesome to learn
@crazypartyvillager8062
@crazypartyvillager8062 2 жыл бұрын
Great video! Do you have any recommendations for a video where someone edited the code to be applicable for a (better) resume as you mentioned in the outro?
@JoshMadakor
@JoshMadakor 2 жыл бұрын
I don't have any examples, but you could think of ways to improve the program and just tyr ot implement the code yourself. I know it's kinda hard though without example
@EtherRich
@EtherRich 2 жыл бұрын
THE GOAT
@JoshMadakor
@JoshMadakor 2 жыл бұрын
lmao goat. Thanks chief :)
@stevennamikaze
@stevennamikaze 11 ай бұрын
Loved the video, please can you help with the code or a video that inputs real time as to when the files get deleted changed or added and possiblity by which user
@JoshMadakor
@JoshMadakor 9 ай бұрын
This is possible to do! But would take time and nobody would watch it lmao :(
@jerryasagba7352
@jerryasagba7352 3 жыл бұрын
Cool Video More like this would be really great or Pick a certain Job in cyber security and like make a series on being better at that job lets say from scratch
@JoshMadakor
@JoshMadakor 3 жыл бұрын
Thanks! I'll add this to my video todos. Appreciate you watching :)
@elainelif
@elainelif 2 жыл бұрын
hey josh, thank you so much for this great tutorial! I have a question, if you don't mind... So, when we print out a message when a file has been deleted or changed, is there a way to print it out once per change/deletion? How can we improve the algorithm for this?
@JoshMadakor
@JoshMadakor 2 жыл бұрын
There is a way to do that for sure! You would have to use another variable (or database) to store the state and when the file was last changed, if so, see if the script has alerted already since the last change. if so, don't alert, if not, then alert the user and then record that it has alerted the user for that particular file. There are lots of ways to implement this, but that's kind the pseudocode for it in my brain.
@elainelif
@elainelif 2 жыл бұрын
@@JoshMadakor thank you so much!
@christiandiaz7928
@christiandiaz7928 Жыл бұрын
It says the .\Files does not exist for some reason would you know why?
@JoshMadakor
@JoshMadakor Жыл бұрын
I would sign up for ChatGPT then paste the error message in there, it's going to give you a really robust response. The only thing I can say is "PowerShell is unable to find the files in the given directory" but it's not really helpful :\. I need to see exactly what you're doing, (so sorry)
@hussaini24
@hussaini24 2 жыл бұрын
Hi Josh, I have been your fan for some time now and I'm about finishing my undergraduate in Cyber Security. Please what project will suggest for someone who doesn't do much coding. Thank you
@Ramsey.001
@Ramsey.001 Жыл бұрын
I can't hear sounds 😢
@victorwilliam6480
@victorwilliam6480 Жыл бұрын
Help me with the source code please
The Wazuh File Integrity Monitoring (FIM) Use case
32:04
MyDFIR
Рет қаралды 14 М.
From Retail straight to Sysadmin *SKIP HELP DESK*
16:26
Josh Madakor
Рет қаралды 26 М.
Правильный подход к детям
00:18
Beatrise
Рет қаралды 9 МЛН
“Don’t stop the chances.”
00:44
ISSEI / いっせい
Рет қаралды 33 МЛН
Smart Sigma Kid #funny #sigma
00:33
CRAZY GREAPA
Рет қаралды 37 МЛН
It’s all not real
00:15
V.A. show / Магика
Рет қаралды 14 МЛН
Introduction to the Radio Relay International Traffic System - Revised 2024
2:06:50
Coding a Web Server in 25 Lines - Computerphile
17:49
Computerphile
Рет қаралды 349 М.
DON’T Start Cybersecurity - Do THIS instead
10:33
Tech With Soleyman
Рет қаралды 64 М.
File Integrity Monitoring (FIM) explained: Detecting unauthorized changes
7:20
ManageEngine IAM and SIEM
Рет қаралды 557
Cyber Security Project: Vulnerability Management
17:54
Cyber Salih
Рет қаралды 20 М.
15 Python Libraries You Should Know About
14:54
ArjanCodes
Рет қаралды 406 М.
I Made 200 Python Projects...Here Are My 5 FAVORITES
11:23
Tech With Tim
Рет қаралды 161 М.
this Cybersecurity Platform is FREE
39:46
John Hammond
Рет қаралды 597 М.
Правильный подход к детям
00:18
Beatrise
Рет қаралды 9 МЛН