mirror of
https://github.com/Harrison-Wells-Cyber/PS-Proxy
synced 2026-07-26 08:06:34 +00:00
Log base64 output file path in build-agent.ps1
Added output for base64 file path after writing.
This commit is contained in:
committed by
GitHub
parent
0eb3653b3d
commit
4cdc916dff
@@ -15,6 +15,8 @@ $ms = New-Object IO.MemoryStream
|
||||
$gz = New-Object IO.Compression.GzipStream($ms, [IO.Compression.CompressionMode]::Compress)
|
||||
$gz.Write($raw,0,$raw.Length); $gz.Dispose()
|
||||
$b64 = [Convert]::ToBase64String($ms.ToArray())
|
||||
$b64Out = Join-Path $RepoRoot "release/agent_assembly.b64"
|
||||
[IO.File]::WriteAllText($b64Out, $b64, [Text.Encoding]::ASCII)
|
||||
$template = Get-Content (Join-Path $RepoRoot "agent/loader/agent.ps1.tmpl") -Raw
|
||||
$template = $template.Replace('{{.AssemblyB64}}', $b64)
|
||||
$template = $template.Replace('{{.Server}}', '__SERVER__')
|
||||
@@ -23,3 +25,4 @@ $template = $template.Replace('{{.CertPin}}', '__CERT_PIN__')
|
||||
$template = $template.Replace('{{.EnrollToken}}', '__ENROLL_TOKEN__')
|
||||
[IO.File]::WriteAllText($OutFile, $template, [Text.Encoding]::UTF8)
|
||||
Write-Host "Wrote $OutFile"
|
||||
Write-Host "Wrote $b64Out"
|
||||
|
||||
Reference in New Issue
Block a user