Panel |
---|
Excuse the ads! We need some help to keep our site up. |
List
Table of Contents outline true
...
Code Block | ||||
---|---|---|---|---|
| ||||
from pwn import * p = process("./baby-re") def CharInput(ch): p.recvuntil(':') p.sendline(str(ch)) CharInput(77) CharInput(97) CharInput(116) CharInput(104) CharInput(32) CharInput(105) CharInput(115) CharInput(32) CharInput(104) CharInput(97) CharInput(114) CharInput(100) CharInput(33) print p.recvuntil("The flag is:") + p.recv() |
Flag
Flag |
---|
Panel |
---|
Excuse the ads! We need some help to keep our site up. |
Related Site
- http://docs.angr.io/docs/examples.html
- https://github.com/angr/angr-doc/blob/master/examples/defcon2016quals_baby-re_0/solve.py
- https://github.com/angr/angr-doc/blob/master/examples/defcon2016quals_baby-re_1/solve.py
...