Skip to content

Commit 97955e1

Browse files
committed
Update dummy.py to present 'params' object at __init__
1 parent 773a5d7 commit 97955e1

File tree

3 files changed

+18
-4
lines changed

3 files changed

+18
-4
lines changed

plugins/dummy.py

+16-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,23 @@
55

66
class ProxyHandler:
77

8-
def __init__(self, logger):
8+
#
9+
# `logger' stands for logging object instance, `params' will be
10+
# a dictonary of input paramerers for the script. Having passed to the
11+
# program a string like:
12+
#
13+
# $ ./proxy2 -p "plugins/my_plugin.py",argument1="test",argument2,argument3=test2
14+
#
15+
# This plugin shall receive:
16+
#
17+
# params = {'path':'plugins/my_plugin.py',
18+
# 'argument1':'t,e,s,t', 'argument2':'', 'argument3':'test2'}
19+
#
20+
def __init__(self, logger, params):
921
self.logger = logger
10-
logger.info('hello world from __init__ in ProxyHandler')
22+
logger.info('hello world from __init__ in ProxyHandler.')
23+
if len(params) > 1:
24+
logger.info('\tI have received such params: %s' % str(params))
1125

1226
def request_handler(self, req, req_body):
1327
self.logger.info('hello world from request_handler! Req: "%s"' % req.path)

plugins/sslstrip.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
class ProxyHandler:
66
replaced_urls = deque(maxlen=1024)
77

8-
def __init__(self, logger):
8+
def __init__(self, logger, params):
99
self.logger = logger
1010
logger.info('hello world from __init__ in SSLStrip ProxyHandler')
1111

pluginsloader.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def load(self, path):
8484
handler = getattr(module, self.options['plugin_class_name'])
8585

8686
# Call plugin's __init__ with the `logger' instance passed to it.
87-
instance = handler(self.logger)
87+
instance = handler(self.logger, decomposed)
8888

8989
self.logger.dbg('Found class "%s".' % self.options['plugin_class_name'])
9090

0 commit comments

Comments
 (0)