mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-13 14:32:34 +00:00
14 lines
261 B
Bash
Executable file
14 lines
261 B
Bash
Executable file
#!/bin/bash
|
|
set -e -o pipefail
|
|
|
|
source ctf-tools-venv-activate
|
|
|
|
python <<EOF
|
|
from keystone import *
|
|
CODE = b"INC ecx; DEC edx"
|
|
# Initialize engine in X86-32bit mode
|
|
ks = Ks(KS_ARCH_X86, KS_MODE_32)
|
|
encoding, count = ks.asm(CODE)
|
|
EOF
|
|
|
|
#kstool x32 "add eax, ebx"
|