Ransomware
Invoke-AESEncryption.ps1
Após isso, será gerado um arquivo com o mesmo nome do arquivo, porém com a extensão .aes
.
. .\Invoke-AESEncryption.ps1
Invoke-AESEncryption -Mode Encrypt -Key "<pass_to_decrypt>" -Path .\<file_to_encrypt>
Para realizar o processo de descriptografia, utilize o comando abaixo
Invoke-AESEncryption -Mode Decrypt -Key "<pass_to_decrypt>" -Path .\<file.aes>
OpenSSL
Criptografando arquivo
openssl enc -aes256 -iter 100000 -pbkdf2 -in <file> -out <output_file.enc>
Descriptografando arquivo
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.ps1
Last updated
Was this helpful?