Posts

Showing posts from November, 2021

SECURITY AND SIE TOOLS(Task 6.1)

Hlo guys, I am back with an some other intersting topic......... ****************************SIEM TOOLS**************************** Now,let me tell ..... 1).What is SIEM   means..?? At a basic level, a security information and event management (SIEM) solution is designed to ingest all data from across your enterprise, normalize the data to make it searchable, analyze th at data for anomalies, and then investigate events and remediate incidents to kick out attackers. 2).What challenges we have in SIEM tools..?? --> Complex Architectures Increase the Ways Attackers Can Gain Access Organizations are using a more distributed architecture than ever before. The more complex an architecture, the more cracks a sophisticated attacker can utilize. This increases the company’s risk of a cybersecurity incident. --> Enterprises Generate More Data Than a Human Can Review in Time To Stop an Attack When monitoring for suspicious activity, there is more data to process than any number of analysts

DETECT AND BLUR OUR FACE(task 7)

Image
 HLO GUYS, Her we are gonna see how we can detcect human faces and blur it out. so,lets get into it.......... firstlyy,make sure we have installed   haarcascade_forntalface_default.xml  or not ? if not install through this link... https://r.search.yahoo.com/_ylt=AwrxyxVe.qFhBGAA2Sq7HAx.;_ylu=Y29sbwNzZzMEcG9zAzEEdnRpZAMEc2VjA3Ny/RV=2/RE=1638034142/RO=10/RU=https%3a%2f%2fgist.github.com%2fLearko%2f8f51e58ac0813cb695f3733926c77f52/RK=2/RS=x8PH0wgrJJGZ8Bgl6YgFHUTaUco- This haarcascade is used to detect the faces in live camera action Now,Lets get in the code. step:-1 import os -->used to find out the files in our system. import cv2 -->it brings our webcam into the live action. step:-2 Insert the file "haarcascade_frontalface_default.xml" into the code code:- os.getcwd() faces = cv2.cascadeClassifier(" haarcascade_frontalface_default.xml ") step:-3 capture the video by using opencv CODE:- cap = cv2.VideoCapture(0) step:4 Read the image using "inread" com