Ransomware
Invoke-AESEncryption.ps1
. .\Invoke-AESEncryption.ps1
Invoke-AESEncryption -Mode Encrypt -Key "<pass_to_decrypt>" -Path .\<file_to_encrypt>Invoke-AESEncryption -Mode Decrypt -Key "<pass_to_decrypt>" -Path .\<file.aes>OpenSSL
openssl enc -aes256 -iter 100000 -pbkdf2 -in <file> -out <output_file.enc>openssl enc -d -aes256 -iter 100000 -pbkdf2 -in <file.enc> -out <file>Sites
# Script para criptografar arquivos
https://www.powershellgallery.com/packages/DRTools/4.0.2.3/Content/Functions%5CInvoke-AESEncryption.ps1Last updated