Talos Incident Response global leader by day - former CISO, Risk Management, etc. Gamer, RPG. travel enthusiast by night -The views expressed are my own
Cisco Talos Incident Response (Talos IR) recently observed an attacker conducting big-game hunting and double extortion attacks using the relatively new Interlock ransomware. Read the blog here: https://t.co/dwmemnADLT
Fun to work with @Google on their latest Security white paper!
My fave quote: “Folks throw money at a super expensive platform, but then don’t have a password manager for the team! It’s like spending money on ballistic windows but your door is wide open.”
https://t.co/Ze8bvkgKQ1
I remain as adamant as before that "humanless, full-auto #SOC" is not coming any time soon, BUT I sense that we are close to replicating the quality of shitty, low-cost MSSP/MDR with machines alone, no humans needed... So, shitty, low-cost MDRs beware, you business may be toast.
🔍💻 PowerShell Pro Tip! 💻🔍
Ever wondered what app opens specific file extensions on your Windows machine? 🤔 Sure, it’s not new, but it’s super handy! 💪
Use this PowerShell magic to find file extensions and their associated apps (like finding out `.rdp` opens with `mstsc.exe`)! 🚀
```
$associations = @()
$registryPaths = @(
"HKLM:\Software\Classes",
"HKCU:\Software\Classes"
)
foreach ($path in $registryPaths) {
Get-ChildItem $path | ForEach-Object {
if ($_.PSChildName -like ".*") {
$extension = $_.PSChildName
$progId = (Get-ItemProperty -Path "$($_.PSPath)" -ErrorAction SilentlyContinue).'(Default)'
if ($progId) {
$commandPath = (Get-ItemProperty -Path "$path\$progId\shell\open\command" -ErrorAction SilentlyContinue).'(Default)'
$associations += [PSCustomObject]@{
Extension = $extension
ProgID = $progId
AssociatedApp = $commandPath
}
}
}
}
}
$associations | Out-GridView -Title "File Extensions and Associated Applications"
```
https://t.co/CrauqScfac
Hit enter & watch as the magic unfolds! 🎩✨ Explore the full list in a GUI to see extensions + their apps!
Because sometimes… knowing is half the battle 🛡️💡
🖥️🐱💻
Investigation Scenario 🔎
You’ve discovered a Windows 10 host placed in the wrong AD OU. As a result, WSUS did not pick it up for automatic updates for at least two years.
What do you look for to investigate whether it has been compromised?
#InvestigationPath#DFIR#SOC
Invoke-SMBRemoting. utilizes the SMB protocol to establish a connection with the target machine, and sends commands (and receives outputs) using Named Pipes. by @L3o4j
https://t.co/7zQ8uhymLe
The problem I have with AI is that the implementations are attempting to replace critical thinking with a poor replacement. It's not going to work, it causes people to stop learning or trying to be able to critically think, write, etc. and without their crutch they are useless.
New Sigma release r2024-11-10 is available for download
🌟 17 New Rules
🛡️ 35 Rule updates
🔬 4 Rule Fixes
This release includes rules covering
- Suspicious .RDP file creation by Outlook and other uncommon processes.
- IIS config tampering.
- PowerShell Web Access abuse.
- Antivirus cheat sheet updates
And more 🔥
Check the full change log and start exploring this, by downloading the latest release -> https://t.co/pdy8ehQVy9
Also keep an eye for the next release soon, as I go through the rest of the PRs.
Thanks to the many contributors that helped shape this release, specifically
ahmedfarou22, bharat-arora-magnet, BlackB0lt, CheraghiMilad, dan21san, @defensivedepth, @deFr0ggy, djlukic, @frack113, fukusuket, ionsor, jaegeral, @imlordofthering, Koifman, Mahir-Ali-khan, @MalGamy12, @M_haggis , Milad Cheraghi, @cyb3rops , ruppde, @AltgeltMax , swachchhanda000, @Kostastsale , wieso-itzi, @X__Junior
SharpADWS is an Active Directory Recon and
Exploit tool for Red Teams via the ADWS protocol, Inspired by @FalconForceTeam
Without the LDAP protocol, it can easily bypass most traffic monitoring for LDAP
#BloodHound#redteam#Pentesting#CyberSecurity
https://t.co/RfhiJvvr1E