Remove lines added by mistake from introduction-to-x64.md

This commit is contained in:
daem0nc0re 2024-04-19 15:09:12 +09:00 committed by GitHub
parent a228e8220b
commit 4be8989cad
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -135,12 +135,6 @@ for c in $(objdump -d "shell.o" | grep -E '[0-9a-f]+:' | cut -f 1 | cut -d : -f
echo -n '\\x'$c
done
# For newer macOS
# Code from https://github.com/daem0nc0re/macOS_ARM64_Shellcode/blob/fc0742e9ebaf67c6a50f4c38d59459596e0a6c5d/helper/extract.sh
for s in $(objdump -d "shell.o" | grep -E '[0-9a-f]+:' | cut -f 1 | cut -d : -f 2) ; do
echo -n $s | awk '{for (i = 7; i > 0; i -= 2) {printf "\\x" substr($0, i, 2)}}'
done
# Another option
otool -t shell.o | grep 00 | cut -f2 -d$'\t' | sed 's/ /\\x/g' | sed 's/^/\\x/g' | sed 's/\\x$//g'
```