mirror of
https://github.com/SpecterOps/Nemesis
synced 2026-06-08 12:36:42 +00:00
3b4f110686
* make all enrichment (should)process methods async * fix office2john resource leak * check for none * more resource errors, add ole hash tests, pytest configs * update chromium to use async pool * update registry module to use asyncpg pool * more asyncpg * use async get_file_enriched * update sleep * fix dapr configs, new ones for workflow services * remove deprecate/redundant httprequestmax setting * disable workflow tracking (for now) --------- Co-authored-by: Lee Chagolla-Christensen <lee@localhost>
Tests
DPAPI Blobs
Test blobs were created with PowerShell:
Add-Type -AssemblyName System.Security
$data = [Text.Encoding]::ASCII.GetBytes("test")
$encrypted_no_entropy = [Security.Cryptography.ProtectedData]::Protect($data, $null, 'CurrentUser')
$encrypted_with_entropy = [Security.Cryptography.ProtectedData]::Protect($data, [byte[]](1,2,3,4,5), 'CurrentUser')
Write-Host ("no entropy:`n" + [Convert]::ToBase64String($encrypted_with_entropy))
Write-Host ("`nwith entropy:`n" + [Convert]::ToBase64String($encrypted_with_entropy))