You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't know if it's a bug in pwntools or what but the check if args.DEBUG: in the standard template doesn't work for me. It seems like launching solve.py with python3 solve.py LOCAL DEBUG only changes the log_level to debug.
The text was updated successfully, but these errors were encountered:
I am having the same issue. The code in pwntools appears to deliberately not expose arguments it hooks internally in args anymore.
From args.py These arguments are automatically extracted, regardless of their name, and exposed via :mod:`pwnlib.args.args`, which is exposed as the global variable :data:`args`. Arguments which ``pwntools`` reserves internally are not exposed this way. https://github.com/Gallopsled/pwntools/blob/dev/pwnlib/args.py#L19
Maybe the default template should change to something else like args.GDB
I don't know if it's a bug in pwntools or what but the check
if args.DEBUG:
in the standard template doesn't work for me. It seems like launching solve.py withpython3 solve.py LOCAL DEBUG
only changes the log_level to debug.The text was updated successfully, but these errors were encountered: