mirror of
https://github.com/rapid7/metasploit-payloads
synced 2024-11-26 17:41:08 +01:00
Land #500, Handle missing command ids in Python
This commit is contained in:
commit
bbffa61155
@ -1614,7 +1614,10 @@ class PythonMeterpreter(object):
|
||||
if result != ERROR_SUCCESS:
|
||||
debug_print('[-] method ' + handler_name + ' resulted in error: #' + str(result))
|
||||
else:
|
||||
debug_print('[-] method ' + handler_name + ' was requested but does not exist')
|
||||
if handler_name is None:
|
||||
debug_print('[-] command id ' + str(commd_id_tlv['value']) + ' was requested but does not exist')
|
||||
else:
|
||||
debug_print('[-] method ' + handler_name + ' was requested but does not exist')
|
||||
result = error_result(NotImplementedError)
|
||||
|
||||
reqid_tlv = packet_get_tlv(request, TLV_TYPE_REQUEST_ID)
|
||||
|
Loading…
Reference in New Issue
Block a user