mirror of
https://github.com/byt3bl33d3r/MITMf.git
synced 2025-08-14 10:47:05 -07:00
Merge branch 'webserver'
This commit is contained in:
commit
96d1078d42
31 changed files with 844 additions and 1155 deletions
|
@ -22,9 +22,8 @@ import sys
|
|||
import logging
|
||||
|
||||
from plugins.plugin import Plugin
|
||||
from core.utils import IpTables, SystemConfig
|
||||
from core.sslstrip.URLMonitor import URLMonitor
|
||||
from core.dnschef.DNSchef import DNSChef
|
||||
from core.servers.dns.DNSchef import DNSChef
|
||||
|
||||
class HSTSbypass(Plugin):
|
||||
name = 'SSLstrip+'
|
||||
|
@ -37,7 +36,6 @@ class HSTSbypass(Plugin):
|
|||
def initialize(self, options):
|
||||
self.options = options
|
||||
self.manualiptables = options.manualiptables
|
||||
ip_address = SystemConfig.getIP(options.interface)
|
||||
|
||||
if not options.manualiptables:
|
||||
if IpTables.getInstance().dns is False:
|
||||
|
|
|
@ -19,11 +19,11 @@
|
|||
#
|
||||
|
||||
from core.utils import SystemConfig, IpTables, shutdown
|
||||
from core.protocols.arp.ARPpoisoner import ARPpoisoner
|
||||
from core.protocols.arp.ARPWatch import ARPWatch
|
||||
from core.dnschef.DNSchef import DNSChef
|
||||
from core.protocols.dhcp.DHCPServer import DHCPServer
|
||||
from core.protocols.icmp.ICMPpoisoner import ICMPpoisoner
|
||||
from core.poisoners.arp.ARPpoisoner import ARPpoisoner
|
||||
from core.poisoners.arp.ARPWatch import ARPWatch
|
||||
from core.servers.dns.DNSchef import DNSChef
|
||||
from core.poisoners.dhcp.DHCPpoisoner import DHCPpoisoner
|
||||
from core.poisoners.icmp.ICMPpoisoner import ICMPpoisoner
|
||||
from plugins.plugin import Plugin
|
||||
from scapy.all import *
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue