mirror of
https://github.com/Pennyw0rth/NetExec
synced 2026-06-06 16:34:30 +00:00
e7246fd777
Revamped logging and main greenlet Major code cleanup and bug fixes everywhere
10 lines
299 B
Python
10 lines
299 B
Python
def init_args(arg_namespace):
|
|
"""
|
|
args will contain a namespace that we can modify whenever we want
|
|
orig_args will contain the original namespace (duh!) and should never be modified
|
|
"""
|
|
global orig_args
|
|
orig_args = arg_namespace
|
|
|
|
global args
|
|
args = arg_namespace |