diff options
Diffstat (limited to 'libmproxy/console')
-rw-r--r-- | libmproxy/console/__init__.py | 2 | ||||
-rw-r--r-- | libmproxy/console/flowlist.py | 6 |
2 files changed, 6 insertions, 2 deletions
diff --git a/libmproxy/console/__init__.py b/libmproxy/console/__init__.py index 6fd83141..dc20d21f 100644 --- a/libmproxy/console/__init__.py +++ b/libmproxy/console/__init__.py @@ -423,6 +423,8 @@ class ConsoleMaster(flow.FlowMaster): self.eventlog = options.eventlog self.eventlist = urwid.SimpleListWalker([]) + self.statusbar = None + if options.client_replay: self.client_playback_path(options.client_replay) diff --git a/libmproxy/console/flowlist.py b/libmproxy/console/flowlist.py index fa430fdd..fbcf1052 100644 --- a/libmproxy/console/flowlist.py +++ b/libmproxy/console/flowlist.py @@ -124,14 +124,16 @@ class ConnectionItem(common.WWrap): [i.copy() for i in self.master.state.view], self.master.killextra, self.master.rheaders, False, self.master.nopop, - self.master.options.replay_ignore_params, self.master.options.replay_ignore_content + self.master.options.replay_ignore_params, self.master.options.replay_ignore_content, + self.master.options.replay_ignore_payload_params ) elif k == "t": self.master.start_server_playback( [self.flow.copy()], self.master.killextra, self.master.rheaders, False, self.master.nopop, - self.master.options.replay_ignore_params, self.master.options.replay_ignore_content + self.master.options.replay_ignore_params, self.master.options.replay_ignore_content, + self.master.options.replay_ignore_payload_params ) else: self.master.path_prompt( |