Bro, I checked your bypassme reverse engineering writeup. You used a Python script which is very long, but you can solve it much more easily using GDB:
gdb bypassme.bin
b *0x0000555555555759
run
# enter any input when prompted: test
x/s $rdi # → "test" (our input)
x/s $rsi # → "SuperSecure" (decoded password)
You can simply run the binary and use the extracted password to get the flag.
i have made an easy writeup here
https://github.com/alhamrizvi-cloud/PicoCTF/commit/7c09998a8f7f3fb1fc64c3eefecbdc78bda821c1
Bro, I checked your bypassme reverse engineering writeup. You used a Python script which is very long, but you can solve it much more easily using GDB:
You can simply run the binary and use the extracted password to get the flag.
i have made an easy writeup here
https://github.com/alhamrizvi-cloud/PicoCTF/commit/7c09998a8f7f3fb1fc64c3eefecbdc78bda821c1