Eric Conrad

Thursday, June 29, 2023

Introducing DeepBlueCLI v3

 Here are my slides from my SANS Webcast Introducing DeepBlueCLI v3.

DeepBlueCLI is available here.

Sunday, June 11, 2023

Leave Only Footprints: When Prevention Fails

Here are links and EVTX files from my SANS Blue Team Summit keynote Leave Only Footprints: When Prevention Fails.

Here are a few Powershell commands to parse the logs (also check out DeepBlueCLI):
  • Any command referencing ADMIN$:
    • Get-WinEvent @{Path="metasploit-sysmon.evtx";id=1} | Where {$_.Message -like "*ADMIN$*"} | fl
  • Any command referencing both cmd.exe and wmiprvse.exe:
    • Get-WinEvent @{Path="metasploit-sysmon.evtx";id=1} | Where {$_.Message -like "*cmd.exe*" –and $_.Message -like "*wmiprvse*"} | fl
  • Create Remote Thread (Hashdump and process migration): 
    • Get-WinEvent @{Path="metasploit-sysmon.evtx";id=8} | fl


Thursday, January 12, 2023

Blind Data Exfiltration Using DNS and Burp Collaborator

Here's a  copy of my slides  for my SANS webcast Blind Data Exfiltration Using DNS and Burp Collaborator:

Blind Data Exfiltration Using DNS and Burp Collaborator

Here are the links: