From 7e2a75cb95e5e02443fb07694b600afab28e1e6a Mon Sep 17 00:00:00 2001 From: byt3bl33d3r Date: Sat, 29 Nov 2014 18:39:13 +0100 Subject: [PATCH] removed single client logging option since not fully tested --- mitmf.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/mitmf.py b/mitmf.py index 1f8c2866..a8a75063 100755 --- a/mitmf.py +++ b/mitmf.py @@ -28,7 +28,7 @@ slogopts.add_argument("-p", "--post", action="store_true",help="Log only SSL POSTs. (default)") slogopts.add_argument("-s", "--ssl", action="store_true", help="Log all SSL traffic to and from server.") slogopts.add_argument("-a", "--all", action="store_true", help="Log all SSL and HTTP traffic to and from server.") - slogopts.add_argument("-c", "--clients", action='store_true', default=False, help='Log each clients data in a seperate file') + #slogopts.add_argument("-c", "--clients", action='store_true', default=False, help='Log each clients data in a seperate file') #not fully tested yet sgroup.add_argument("-l", "--listen", type=int, metavar="port", default=10000, help="Port to listen on (default 10000)") sgroup.add_argument("-f", "--favicon", action="store_true", help="Substitute a lock favicon on secure requests.") sgroup.add_argument("-k", "--killsessions", action="store_true", help="Kill sessions in progress.") @@ -83,7 +83,7 @@ from sslstrip.StrippingProxyHSTS import StrippingProxy from sslstrip.URLMonitorHSTS import URLMonitor - URLMonitor.getInstance().setValues(args.favicon, args.clients) + URLMonitor.getInstance().setFaviconSpoofing(args.favicon) CookieCleaner.getInstance().setEnabled(args.killsessions) ProxyPlugins.getInstance().setPlugins(load) @@ -100,6 +100,7 @@ from sslstrip.StrippingProxy import StrippingProxy from sslstrip.URLMonitor import URLMonitor + args.clients = False # temporary URLMonitor.getInstance().setValues(args.favicon, args.clients) CookieCleaner.getInstance().setEnabled(args.killsessions) ProxyPlugins.getInstance().setPlugins(load)