Skip to content
Snippets Groups Projects
Commit 9890b567 authored by zer0@platinum's avatar zer0@platinum
Browse files

add stop_filter argument to sniff()

This argment is a python function applied to each packet to determine
if we have to stop the capture after this packet.
ex: stop_filter = lambda x: x.haslayer(TCP)
parent 683ae19e
No related branches found
No related tags found
No related merge requests found
...@@ -522,7 +522,8 @@ iface: listen answers only on the given interface""" ...@@ -522,7 +522,8 @@ iface: listen answers only on the given interface"""
@conf.commands.register @conf.commands.register
def sniff(count=0, store=1, offline=None, prn = None, lfilter=None, L2socket=None, timeout=None, opened_socket=None, *arg, **karg): def sniff(count=0, store=1, offline=None, prn = None, lfilter=None, L2socket=None, timeout=None,
opened_socket=None, stop_filter=None, *arg, **karg):
"""Sniff packets """Sniff packets
sniff([count=0,] [prn=None,] [store=1,] [offline=None,] [lfilter=None,] + L2ListenSocket args) -> list of packets sniff([count=0,] [prn=None,] [store=1,] [offline=None,] [lfilter=None,] + L2ListenSocket args) -> list of packets
...@@ -538,6 +539,9 @@ offline: pcap file to read packets from, instead of sniffing them ...@@ -538,6 +539,9 @@ offline: pcap file to read packets from, instead of sniffing them
timeout: stop sniffing after a given time (default: None) timeout: stop sniffing after a given time (default: None)
L2socket: use the provided L2socket L2socket: use the provided L2socket
opened_socket: provide an object ready to use .recv() on opened_socket: provide an object ready to use .recv() on
stop_filter: python function applied to each packet to determine
if we have to stop the capture after this packet
ex: stop_filter = lambda x: x.haslayer(TCP)
""" """
c = 0 c = 0
...@@ -575,6 +579,8 @@ opened_socket: provide an object ready to use .recv() on ...@@ -575,6 +579,8 @@ opened_socket: provide an object ready to use .recv() on
r = prn(p) r = prn(p)
if r is not None: if r is not None:
print r print r
if stop_filter and stop_filter(p):
break
if count > 0 and c >= count: if count > 0 and c >= count:
break break
except KeyboardInterrupt: except KeyboardInterrupt:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment