updated readme

This commit is contained in:
byt3bl33d3r 2014-07-25 01:01:58 +02:00
parent ab696cd965
commit 9d860437c4
2 changed files with 2 additions and 0 deletions

View file

@ -9,6 +9,7 @@ This tool is completely based on sergio-proxy https://code.google.com/p/sergio-p
Availible plugins: Availible plugins:
- Spoof - Redirect traffic using ARP Spoofing, DNS Spoofing or ICMP Redirects - 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 - BrowserProfiler - Attempts to enumerate all browser plugins of connected clients
- CacheKill - Kills page caching by modifying headers - CacheKill - Kills page caching by modifying headers
- FilePwn - Backdoor executables being sent over http using bdfactory - FilePwn - Backdoor executables being sent over http using bdfactory

View file

@ -152,6 +152,7 @@ class Spoof(Plugin):
for k,v in self.dnscfg.items(): for k,v in self.dnscfg.items():
if k in pkt[DNS].qd.qname: if k in pkt[DNS].qd.qname:
self.modify_dns(payload, pkt, v) self.modify_dns(payload, pkt, v)
elif self.domain in pkt[DNS].qd.qname: elif self.domain in pkt[DNS].qd.qname:
self.modify_dns(payload, pkt, self.dnsip) self.modify_dns(payload, pkt, self.dnsip)