L-codes / Neo-reGeorg

Neo-reGeorg is a project that seeks to aggressively refactor reGeorg
GNU General Public License v3.0
2.84k stars 439 forks source link

Error while parsing arguments #58

Closed dark0pcodes closed 2 years ago

dark0pcodes commented 2 years ago

Got this error while trying to execute it:

Traceback (most recent call last): File "/home/kali/Tools/Neo-reGeorg/neoreg.py", line 705, in <module> if hasattr(args, extract): NameError: name 'extract' is not defined Solved it after changing line 705 to if hasattr(args, 'extract') and args.extract:

L-codes commented 2 years ago

May I ask your python and neo-regeorg versions?

dark0pcodes commented 2 years ago

Python 3.9, I cloned the master branch today. Issue raises when I try to generate the tunnels.

L-codes commented 2 years ago

Thanks for submitting the problem, it has been solved, welcome to clone the latest branch :)

dark0pcodes commented 2 years ago

Thanks!