bash + iconv + DosBox / x86-Maschinencode (104 97 96 95 Zeichen)
echo ↾각슈삨₲ɻ庲錿ʴ⇍罋곹삄ૃ蘊尧⺓⺂粘ㄾ㸸ਾ岈⺎➉⸠粓蜊㹏褾鄮漧粐蠊蝜⾈葜⾇⼠⺂ꤧ樠獧惇|iconv -futf8 -tucs2>o.com;dosbox o*
Ich schlage vor, dies in ein Skript in einem leeren Verzeichnis zu schreiben. Es ist fast garantiert, dass das Kopieren in ein Terminal alles kaputt macht. noch besser, du kannst das script hier fertig packen .
Erwartete Ausgabe:
Wie es funktioniert
Der Bash-Teil ist nur ein Startprogramm, mit iconv
dem eine .com
Datei aus den UTF-8-Zeichen des Skripts "dekomprimiert" und mit DosBox gestartet wird.
Beachten Sie, dass dies den Inhalt einschränkt, da nicht alle Eingabesequenzen als UCS-2 interpretiert werden können, iconv
ohne sich zu beschweren. Aus irgendeinem Grund haben viele Vorgänge, die das bx
Register betrafen, je nach dem Ort, an dem ich sie verwendet habe, Verwüstungen angerichtet, sodass ich dieses Problem mehrmals umgehen musste.
Nun besteht die Unicode-Sache nur darin, die "Zeichenanzahl" -Regeln auszunutzen. Die tatsächliche Größe (in Byte) des Skripts ist viel größer als die ursprüngliche .COM
Datei.
Die extrahierte .com
Datei ist
00000000 be 21 01 ac 88 c2 a8 c0 7d 0a b2 20 7b 02 b2 5e |.!......}.. {..^|
00000010 83 e0 3f 93 b4 02 cd 21 4b 7f f9 ac 84 c0 75 e4 |..?....!K.....u.|
00000020 c3 0a 0a 86 27 5c 93 2e 82 2e 98 7c 3e 31 38 3e |....'\.....|>18>|
00000030 3e 0a 88 5c 8e 2e 89 27 20 2e 93 7c 0a 87 4f 3e |>..\...' ..|..O>|
00000040 3e 89 2e 91 27 6f 90 7c 0a 88 5c 87 2e a6 7c 0a |>...'o.|..\...|.|
00000050 88 2f 5c 84 2e a8 7c 0a 87 2f 20 2f 82 2e 27 a9 |./\...|../ /..'.|
00000060 7c 0a 20 6a 67 73 c7 60 f3 0a 0a 00 ||. jgs.`....|
0000006c
und ist 108 Bytes lang. Die NASM-Quelle dafür ist:
org 100h
start:
; si: pointer to current position in data
mov si,data
; load the character in al
lodsb
mainloop:
; bx: repetition count
; - zero at startup
; - -1 after each RLE run
; - one less than each iteration after each "literal" run
; the constant decrement is not really a problem, as print
; always does at least one print, and there aren't enough
; consecutive literal values to have wraparound
; if the high bit is not set, we have a "literal" byte;
; we prepare it in dl just in case
mov dl,al
; then check if it's not set and branch straight to print
; notice that bx=0 is fine, as print prints always at least one character
; test the top two bits (we need the 6th bit below)
test al,0xc0
; to see if the top bit was set, we interpret it as the sign bit,
; and branch if the number is positive or zero (top bit not set)
jge print
rle:
; it wasn't a literal, but a caret/space with a repetition count
; space if 6th bit not set, caret otherwise
mov dl,' '
; exploit the parity bit to see if the 6th bit was set
jnp nocaret
mov dl,'^'
nocaret:
; lower 6 bits: repetition count
; and away the top bits and move in bx
; we and ax and not al because we have to get rid of the 02h in ah
and ax,3fh
xchg ax,bx
print:
; print bx times
mov ah,2
int 21h
dec bx
jg print
; read next character
lodsb
test al,al
; rinse & repeat unless we got a zero
jnz mainloop
end:
ret
data:
; here be data
incbin "compressed.dat"
; NUL terminator
db 0
All dies ist nur ein Dekomprimierer, compressed.dat
dessen Format wie folgt lautet:
- Wenn das High-Bit nicht gesetzt ist, drucken Sie das Zeichen wie es ist.
- Andernfalls sind die niedrigen 6 Bits die Wiederholungszahl und das zweithöchste Bit gibt an, ob ein Leerzeichen (Bit nicht gesetzt) oder ein Caret (Bit gesetzt) gedruckt werden muss.
compressed.dat
wird wiederum mit einem Python-Skript aus dem Originaltext generiert .
Das Ganze finden Sie hier .