$PassAttempt = Read-Host " Masukkan Password Aktivasi Muggle Cloud" -AsSecureString # Metode konversi password yang lebih universal (Standard .NET) $BSTR = [System.Runtime.InteropServices.Marshal]::SecureStringToBSTR($PassAttempt) $PassPlain = [System.Runtime.InteropServices.Marshal]::PtrToStringBSTR($BSTR) [System.Runtime.InteropServices.Marshal]::ZeroFreeBSTR($BSTR) if ($PassPlain -eq "KeyCloud") { Write-Host " [MUGGLE CLOUD] Password Benar. Mengambil data..." -ForegroundColor Green # Mengambil script asli dari server sendiri $finalScript = irm "https://getkey.muggle.cloud?p=KeyCloud" Invoke-Expression $finalScript } else { Write-Host " [!] Password Salah! Akses Ditolak." -ForegroundColor Red Start-Sleep -Seconds 2 exit }