Added pwninit template

This commit is contained in:
2024-02-20 11:57:48 +01:00
parent fd05af3c86
commit 3927bd9e2e

View File

@@ -0,0 +1,31 @@
#!/usr/bin/env python3
from pwn import *
{bindings}
context.binary = {bin_name}
# context.terminal = ['tmux', 'splitw', '-h']
def conn():
if args.LOCAL:
r = process({proc_args})
elif args.GDB:
r = gdb.debug({proc_args}, """
""")
else:
r = remote("addr", 1337)
return r
def main():
r = conn()
# good luck pwning :)
r.interactive()
if __name__ == "__main__":
main()