mirror of
https://github.com/rapid7/metasploit-payloads
synced 2025-03-12 12:14:29 +01:00
commit
b6ce0dff18
@ -512,8 +512,10 @@ if (!function_exists('core_enumextcmd')) {
|
||||
|
||||
global $id2f;
|
||||
|
||||
$id_start = packet_get_tlv($req, TLV_TYPE_UINT)['value'];
|
||||
$id_end = packet_get_tlv($req, TLV_TYPE_LENGTH)['value'] + id_start;
|
||||
$id_start_array = packet_get_tlv($req, TLV_TYPE_UINT);
|
||||
$id_start = $id_start_array['value'];
|
||||
$id_end_array = packet_get_tlv($req, TLV_TYPE_LENGTH);
|
||||
$id_end = $id_end_array['value'] + $id_start;
|
||||
|
||||
foreach ($id2f as $id => $ext_cmd) {
|
||||
my_print("core_enumextcmd - checking " . $ext_cmd . " as " . $id);
|
||||
|
Loading…
x
Reference in New Issue
Block a user