no-op

Python is printing 0x90c2 instead of just 0x90 NOP

Python is printing 0x90c2 instead of just 0x90 NOP Question: The following command is outputting 200 bytes of ‘A’ followed by one byte of 0x0a: python3 -c "print(‘x41’*200)" > out.txt hexdump out.txt confirms this: 0000000 4141 4141 4141 4141 4141 4141 4141 4141 * 00000c0 4141 4141 4141 4141 000a 00000c9 However, whenever I try …

Total answers: 3