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
Running in training mode, the following error occurs:
Can you think of any reasons?
==============================
Traceback (most recent call last):
File "DeepExploit.py", line 2340, in
com_exploit_list = env.get_exploit_list()
File "DeepExploit.py", line 1084, in get_exploit_list
module_info = self.client.get_module_info('exploit', exploit)
File "DeepExploit.py", line 240, in get_module_info
return self.call('module.info', [module_type, module_name])
File "DeepExploit.py", line 113, in call
return msgpack.unpackb(resp.read())
File "msgpack/_unpacker.pyx", line 195, in msgpack._cmsgpack.unpackb
ValueError: int is not allowed for map key
Hi.
Running in training mode, the following error occurs:
Can you think of any reasons?
==============================
Traceback (most recent call last):
File "DeepExploit.py", line 2340, in
com_exploit_list = env.get_exploit_list()
File "DeepExploit.py", line 1084, in get_exploit_list
module_info = self.client.get_module_info('exploit', exploit)
File "DeepExploit.py", line 240, in get_module_info
return self.call('module.info', [module_type, module_name])
File "DeepExploit.py", line 113, in call
return msgpack.unpackb(resp.read())
File "msgpack/_unpacker.pyx", line 195, in msgpack._cmsgpack.unpackb
ValueError: int is not allowed for map key
===============================
[condition]
I had some errors, so I modified the code:
No open port report in Deepexploit and scan show all ports open #42 (comment)
#nmap_result = '' #it's original: original row number = 888
#after modify.
nmap_result = open(nmap_result_file, 'rb').read()
#nmap_result += ret.get(b'data').decode('utf-8') #it's original: original row number = 902
#after modify.
nmap_result += ret.get(b'data') #
nmap_result = nmap_result.decode('utf-8') #modify
Plese help...