def analyze(packet):
src = packet.payload.src
dst = packet.payload.dst
try:
app_exfiltrate.log_message(
'info', "[icmp] Received ICMP packet from: {0} to {1}".format(src, dst))
app_exfiltrate.retrieve_data(base64.b64decode(packet.load))
except:
pass
评论列表
文章目录