From 9d860437c4b0d51eaac78d466106fbe5e4f8c9b5 Mon Sep 17 00:00:00 2001 From: byt3bl33d3r Date: Fri, 25 Jul 2014 01:01:58 +0200 Subject: [PATCH] updated readme --- README.md | 1 + plugins/Spoof.py | 1 + 2 files changed, 2 insertions(+) diff --git a/README.md b/README.md index 5fe06ea..fb38ca7 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,7 @@ This tool is completely based on sergio-proxy https://code.google.com/p/sergio-p Availible plugins: - Spoof - Redirect traffic using ARP Spoofing, DNS Spoofing or ICMP Redirects +- AppCachePoison - Perform app cache poison attacks - BrowserProfiler - Attempts to enumerate all browser plugins of connected clients - CacheKill - Kills page caching by modifying headers - FilePwn - Backdoor executables being sent over http using bdfactory diff --git a/plugins/Spoof.py b/plugins/Spoof.py index a518a43..49c40e0 100644 --- a/plugins/Spoof.py +++ b/plugins/Spoof.py @@ -152,6 +152,7 @@ class Spoof(Plugin): for k,v in self.dnscfg.items(): if k in pkt[DNS].qd.qname: self.modify_dns(payload, pkt, v) + elif self.domain in pkt[DNS].qd.qname: self.modify_dns(payload, pkt, self.dnsip)