diff options
author | Maximilian Hils <git@maximilianhils.com> | 2017-03-11 14:46:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-11 14:46:33 +0100 |
commit | 74f2a28e416ceb75c07baf8202b959efcbef1b37 (patch) | |
tree | 8adfa9ed65c08c157164f879795dc87c4493acba /docs | |
parent | e0382fde2f6869554d68137639e2921ceb1e63b6 (diff) | |
download | mitmproxy-74f2a28e416ceb75c07baf8202b959efcbef1b37.tar.gz mitmproxy-74f2a28e416ceb75c07baf8202b959efcbef1b37.tar.bz2 mitmproxy-74f2a28e416ceb75c07baf8202b959efcbef1b37.zip |
minor fixes
Diffstat (limited to 'docs')
-rw-r--r-- | docs/features/replacements.rst | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/docs/features/replacements.rst b/docs/features/replacements.rst index d46b3a8b..39dccca2 100644 --- a/docs/features/replacements.rst +++ b/docs/features/replacements.rst @@ -48,15 +48,14 @@ In practice, it's pretty common for the replacement literal to be long and complex. For instance, it might be an XSS exploit that weighs in at hundreds or thousands of characters. To cope with this, there's a variation of the replacement hook specifier that lets you load the replacement text from a file. -To specify a file as replacement, prefix the file path with ``@`` -So, you might start **mitmdump** as follows: +To specify a file as replacement, prefix the file path with ``@``. +You might start **mitmdump** as follows: >>> mitmdump --replacements :~q:foo:@~/xss-exploit This will load the replacement text from the file ``~/xss-exploit``. -The ``--replacements`` flag can be passed multiple -times. +The ``--replacements`` flag can be passed multiple times. Interactively |