From 39aa7473adf12895a9db8220c7d16de0b95328ac Mon Sep 17 00:00:00 2001 From: byt3bl33d3r Date: Tue, 28 Jul 2015 05:47:12 +0200 Subject: [PATCH] updated filter explanation --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 4f0fc07..3eced9f 100644 --- a/README.md +++ b/README.md @@ -49,6 +49,7 @@ For example, here's a stupid little filter that just changes the destination IP ```python if packet.haslayer(ICMP): + log.info('Got an ICMP packet!') packet.dst = '192.168.1.0' ``` @@ -59,6 +60,8 @@ Now to use the filter all we need to do is: ```python mitmf.py -F ~/filter.py``` You will probably want to combine that with the **Spoof** plugin to actually intercept packets from someone else ;) +**Note**: you can modify filters on-the-fly without restarting MITMf! + Examples ========