PowerShell Analysis - Keylogger

What is the SHA256 hash value for the PowerShell script file? (1 points)

$ sha256sum HDWallpaperEngine.txt 
e0b7a2ad2320ac32c262aeb6fe2c6c0d75449c6e34d0d18a531157c827b9754e  HDWallpaperEngine.txt

What email address is used to send and receive emails? (1 points)

$From = "chaudhariparth454@gmail.com"
$Pass = "yjghfdafsd5464562!"
$To = "chaudhariparth454@gmail.com"

What is the password for this email account? (2 points)

$Pass = "yjghfdafsd5464562!"

What port is used for SMTP? (2 points)

$SMTPPort = "587"

What DLL is imported to help record keystrokes? (2 points)

[DllImport("user32.dll", CharSet=CharSet.Auto, ExactSpelling=true)]

What directory is the generated txt file put in? (2 points)

function Start-KeyLogger($Path="$env:temp\keylogger.txt")

Last updated

Was this helpful?