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.
I cannot believe I risked my personal safety repeatedly for a country on the verge of voting itself into fascism. I don't regret my service - I just can't believe this is where we are. Legit speechless.
RIP Quincy Jones, a towering talent and walking jazz and pop encyclopedia. Although better known as a producer, the people he played with (everyone!) stretch back to the golden age of jazz. A legend. https://t.co/7AaDCQ1YZQ
BREAKING: In a stunning moment, a Republican voter in Pennsylvania just demolished Donald Trump for talking down about the U.S. Americans are sick and tired of Donald Trump’s anti-American behavior.
PSA: Cyber threat intelligence is not something you solve with tools. You determine requirements and then deploy a tool to assist in fulfilling those requirements (usually collection and/or processing).
Please stop buying CTI platforms and then asking "how should we use this?"
Oh, you wanted to dump all the LAPS passwords from Entra ID for... reasons? =)
Here you go:
Connect-MgGraph -Scopes 'https://t.co/wTIraPuRLU.All'
Get-MgDevice -Filter "OperatingSystem eq 'Windows'" | ForEach-Object {
[array]$b64 = (Get-MgDirectoryDeviceLocalCredential -DeviceLocalCredentialInfoId $_.DeviceId -Property credentials).credentials.PasswordBase64
[string]$pw = if (!([string]::IsNullOrEmpty($b64))) { [Text.Encoding]::UTF8.GetString([Convert]::FromBase64String(($b64)[0])) }
[array]$lapsReport += "$($_.displayName),$pw"
}
$lapsReport