See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope>
is optional
from pwn import * | |
BINARY = '<path_to_binary>' | |
IP, PORT = '<ip>', 8080 | |
LOCAL = True | |
if LOCAL: | |
p = process(BINARY) # Makes pipe fd |