get.activated.win/get

63 lines
2.8 KiB
Text
Raw Permalink Normal View History

# The following code is hosted on https://get.activated.win for https://massgrave.dev
2024-05-13 19:52:53 +02:00
$ErrorActionPreference = "Stop"
2024-05-20 20:56:02 +02:00
# Enable TLSv1.2 for compatibility with older clients for current session
2024-08-15 02:03:18 +02:00
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
2024-05-13 19:52:53 +02:00
2024-09-17 14:56:52 +02:00
$DownloadURL1 = 'https://raw.githubusercontent.com/massgravel/Microsoft-Activation-Scripts/52d4c52dba8e29a3c1fb295c8946dbe6cf2f0239/MAS/All-In-One-Version-KL/MAS_AIO.cmd'
$DownloadURL2 = 'https://bitbucket.org/WindowsAddict/microsoft-activation-scripts/raw/52d4c52dba8e29a3c1fb295c8946dbe6cf2f0239/MAS/All-In-One-Version-KL/MAS_AIO.cmd'
$DownloadURL3 = 'https://codeberg.org/massgravel/Microsoft-Activation-Scripts/raw/commit/52d4c52dba8e29a3c1fb295c8946dbe6cf2f0239/MAS/All-In-One-Version-KL/MAS_AIO.cmd'
2024-05-13 19:52:53 +02:00
2024-09-03 21:43:15 +02:00
$URLs = @($DownloadURL1, $DownloadURL2, $DownloadURL3)
$ShuffledURLs = $URLs | Sort-Object { Get-Random }
2024-05-13 19:52:53 +02:00
try {
2024-09-03 21:43:15 +02:00
$response = Invoke-WebRequest -Uri $ShuffledURLs[0] -UseBasicParsing
2024-05-13 19:52:53 +02:00
}
catch {
2024-09-03 21:43:15 +02:00
try {
$response = Invoke-WebRequest -Uri $ShuffledURLs[1] -UseBasicParsing
}
catch {
$response = Invoke-WebRequest -Uri $ShuffledURLs[2] -UseBasicParsing
}
2024-05-13 19:52:53 +02:00
}
2024-08-15 05:25:42 +02:00
# Verify script integrity
2024-09-17 14:56:52 +02:00
$releaseHash = '39961D29B07D59D54A709AA7B152269ADC6349752660A0C66D627B09DF18B9B6'
2024-08-15 05:25:42 +02:00
$stream = New-Object IO.MemoryStream
$writer = New-Object IO.StreamWriter $stream
$writer.Write($response)
$writer.Flush()
$stream.Position = 0
$hash = [BitConverter]::ToString([Security.Cryptography.SHA256]::Create().ComputeHash($stream)) -replace '-'
if ($hash -ne $releaseHash) {
Write-Warning "Hash ($hash) mismatch, aborting!`nReport this issue at https://massgrave.dev/troubleshoot"
$response = $null
return
}
# Check for AutoRun registry which may create issues with CMD
$paths = "HKCU:\SOFTWARE\Microsoft\Command Processor", "HKLM:\SOFTWARE\Microsoft\Command Processor"
foreach ($path in $paths) {
if (Get-ItemProperty -Path $path -Name "Autorun" -ErrorAction SilentlyContinue) {
Write-Warning "Autorun registry found, CMD may crash! `nManually copy-paste the below command to fix...`nRemove-ItemProperty -Path '$path' -Name 'Autorun'"
}
}
2024-07-23 04:03:45 +02:00
$rand = [Guid]::NewGuid().Guid
2024-05-13 19:52:53 +02:00
$isAdmin = [bool]([Security.Principal.WindowsIdentity]::GetCurrent().Groups -match 'S-1-5-32-544')
$FilePath = if ($isAdmin) { "$env:SystemRoot\Temp\MAS_$rand.cmd" } else { "$env:TEMP\MAS_$rand.cmd" }
$ScriptArgs = "$args "
$prefix = "@::: $rand `r`n"
$content = $prefix + $response
Set-Content -Path $FilePath -Value $content
2024-07-23 04:13:46 +02:00
# Set ComSpec variable for current session in case its corrupt in the system
$env:ComSpec = "$env:SystemRoot\system32\cmd.exe"
Start-Process cmd.exe "/c """"$FilePath"" $ScriptArgs""" -Wait
2024-05-13 19:52:53 +02:00
$FilePaths = @("$env:TEMP\MAS*.cmd", "$env:SystemRoot\Temp\MAS*.cmd")
foreach ($FilePath in $FilePaths) { Get-Item $FilePath | Remove-Item }