mirror of
https://github.com/byt3bl33d3r/MITMf.git
synced 2025-07-10 15:23:41 -07:00
release 0.5
This commit is contained in:
parent
c162833916
commit
acdbb03dfb
2 changed files with 3 additions and 1 deletions
2
mitmf.py
2
mitmf.py
|
@ -15,7 +15,7 @@ import argparse
|
||||||
from plugins import *
|
from plugins import *
|
||||||
plugin_classes = plugin.Plugin.__subclasses__()
|
plugin_classes = plugin.Plugin.__subclasses__()
|
||||||
|
|
||||||
mitmf_version = "0.1"
|
mitmf_version = "0.5"
|
||||||
sslstrip_version = "0.9"
|
sslstrip_version = "0.9"
|
||||||
sergio_version = "0.2.1"
|
sergio_version = "0.2.1"
|
||||||
|
|
||||||
|
|
|
@ -1,11 +1,13 @@
|
||||||
from plugins.plugin import Plugin
|
from plugins.plugin import Plugin
|
||||||
from sslstrip.ResponseTampererFactory import ResponseTampererFactory
|
from sslstrip.ResponseTampererFactory import ResponseTampererFactory
|
||||||
|
import threading
|
||||||
|
|
||||||
class AppCachePlugin(Plugin):
|
class AppCachePlugin(Plugin):
|
||||||
name = "App Cache Poison"
|
name = "App Cache Poison"
|
||||||
optname = "app"
|
optname = "app"
|
||||||
desc = "Performs App Cache Poisoning attacks"
|
desc = "Performs App Cache Poisoning attacks"
|
||||||
has_opts = True
|
has_opts = True
|
||||||
|
|
||||||
def initialize(self,options):
|
def initialize(self,options):
|
||||||
'''Called if plugin is enabled, passed the options namespace'''
|
'''Called if plugin is enabled, passed the options namespace'''
|
||||||
self.options = options
|
self.options = options
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue