|
|
Browse by Tags
All Tags » byte » PowerShell
-
For Level 12 more bitmaps but then mixed together and delivered as bytes :
# Level 12
$a=$b=$c=$d=$e = @()
$ba = [System.IO.File]::ReadAllBytes( "C:\PowerShell\PoshChallenge\evil2.gfx" )
foreach ($byte in $ba) {
$a += $byte
[void]$foreach.movenext();$b += $foreach.current
[void]$foreach.movenext();$c += ...
|
|
|