In pwntools, how can I set the context.terminal
for command line tools, such as pwn debug
. Using -c
fails with error.
Asked
Active
Viewed 688 times
1

SRobertJames
- 8,210
- 14
- 60
- 107
1 Answers
0
pwntools auto-configure to open the terminal you're using to enter the command.
This option (-c / --configure
) is used to set the os/architecture/endianness/bits the shellcode will run in.

Shunt
- 1