Who wants to secure a file using AES256?
$Key = [Convert]::ToBase64String((1..32 | ForEach-Object { Get-Random -Maximum 256 }))
$IV = [Convert]::ToBase64String((1..16 | ForEach-Object { Get-Random -Maximum 256 }))
$FilePath = "C:\example\file.txt" System.IO… twitter.com/i/web/status/1…
Decrypt the file:
$KeySecure = Get-Content "C:\example\key.txt" | ConvertTo-SecureString
$IVSecure = Get-Content "C:\example\iv.txt" | ConvertTo-SecureString
$KeyBytes = [Convert]::FromBase64String($KeySecure.GetNetworkCredential().Password)
$IVBytes = System.IO… twitter.com/i/web/status/1…
who wants logs anyway right!
Get-EventLog -List | ForEach-Object { Clear-EventLog $_.Log }
the safeguards in this "AI" are fucking useless...
ok we need some more fun...
Share this Scrolly Tale with your friends.
A Scrolly Tale is a new way to read Twitter threads with a more visually immersive experience.
Discover more beautiful Scrolly Tales like this.
