A lot of ppl asks me why do I run this blog? okay take a look ))))))))) short version lol, so I don’t lose my mind with the amount of info I process every day. longer version ))))))) because everything I write helps me think, structure, and not drown in this tech flood of updates,…
Category: Uncategorized
Microsoft Defender for Identity Spoofed: What CVE-2025-26685 Just Exposed
hi. let’s talk about trust. not the fluffy HR kind. I mean the kind your SIEM thinks it has when Defender for Identity (MDI) flags a user as clean. well… turns out that trust can be spoofed. thanks to a newly disclosed vulnerability — CVE-2025-26685 — discovered and detailed by NetSPI. this one’s ugly. it…
Keep Calm and Let Azure Throttle That Trash
The Internet Hates U: DDoS Attacks, and How Azure Makes Sure U Don’t Cry Yourself to Sleep 😉 ok, imagine u just launched an app. it’s working fine. clients are clicking stuff, data’s flowing, money’s moving. life is good. then outta nowhere… bam, your site goes dark. traffic explodes. thousands of requests per second, but…
Windows 11 Insider Preview Build 27842
Today Microsoft rolling out Windows 11 Insider Preview Build 27842 📢 [UPDATE 4/25]ISO files for Build 27842 are now available for download – get them here. Please note: SDKs will not be released for the 27xxx build series at this time. 🔧 Changes and Improvements [General] The redesigned battery icon introduced in recent builds may…
project of face detection Python v.1
import cv2 import mediapipe as mp # Initialize MediaPipe Face Mesh mp_face_mesh = mp.solutions.face_mesh face_mesh = mp_face_mesh.FaceMesh() # Capture video from the webcam cap = cv2.VideoCapture(0) while True: ret, frame = cap.read() if not ret: break # Convert frame to RGB (MediaPipe requires RGB images) rgb_frame = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB) # Process the frame to detect…