Traceback (most recent call last): return self[name] KeyError: ‘registered_pocs‘


Traceback (most recent call last):
  File "C:\Users\Admin\AppData\Local\Programs\Python\Python38\lib\site-packages\pocsuite3\lib\core\datatype.py", line 18, in __getattr__
    return self[name]
KeyError: 'registered_pocs'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "MaticsoftShop_NodeProdCategory-aspx_Sql.py", line 67, in 
    register_poc(TestPOC)
  File "C:\Users\Admin\AppData\Local\Programs\Python\Python38\lib\site-packages\pocsuite3\lib\core\register.py", line 119, in register_poc
    if module in kb.registered_pocs:
  File "C:\Users\Admin\AppData\Local\Programs\Python\Python38\lib\site-packages\pocsuite3\lib\core\datatype.py", line 20, in __getattr__
    raise AttributeError(name)
AttributeError: registered_pocs

为什么会遇到这个问题呢,是因为基于这个pocsuite框架写的poc,所以我们要用用pocsuite3 载入这个poc,而不能简单的单独使用
完整使用方法:

python cli.py -r poc.py -u url

你可能感兴趣的:(python,python)