diff options
author | tianzhishuizhu <tianzhishuizhu5@gamil.com> | 2016-09-15 10:49:03 +0800 |
---|---|---|
committer | tianzhishuizhu <tianzhishuizhu5@gamil.com> | 2016-09-15 10:49:03 +0800 |
commit | 3c8d5bb788d18bc13cf84174eef752b872929788 (patch) | |
tree | cbbdfad02f2c6a9cd59f66ad831697f9f6db1037 /src/lib/protocols/vmware.c | |
parent | 0a73a9bd9c55fa4654c02fbaa60f38d12ffd7554 (diff) |
check udp
Diffstat (limited to 'src/lib/protocols/vmware.c')
-rw-r--r-- | src/lib/protocols/vmware.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/protocols/vmware.c b/src/lib/protocols/vmware.c index 0c2ffaa69..a6cbe5dc9 100644 --- a/src/lib/protocols/vmware.c +++ b/src/lib/protocols/vmware.c @@ -29,7 +29,7 @@ void ndpi_search_vmware(struct ndpi_detection_module_struct *ndpi_struct, struct struct ndpi_packet_struct *packet = &flow->packet; /* Check whether this is an VMWARE flow */ - if((packet->payload_packet_len == 66) + if(packet->udp != NULL && (packet->payload_packet_len == 66) && (ntohs(packet->udp->dest) == 902) && ((packet->payload[0] & 0xFF) == 0xA4)) { NDPI_LOG(NDPI_PROTOCOL_VMWARE, ndpi_struct, NDPI_LOG_DEBUG, "Found vmware.\n"); |