Skip to content

Commit e768e3f

Browse files
committed
Adjusted setup.py
1 parent 3faa8cf commit e768e3f

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def get_entry_points():
2222
version='0.1',
2323
author='Simon Böhm',
2424
author_email='[email protected]',
25-
description='plugins for ssh-mitm server, advanced features',
25+
description='advanced features for ssh-mitm server',
2626
long_description=long_description,
2727
long_description_content_type='text/markdown',
2828
keywords="ssh proxy mitm network security audit plugins features advanced",
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,19 @@ class SSHInjectableForwarder(SSHForwarder):
1818

1919
@classmethod
2020
def parser_arguments(cls):
21-
cls.PARSER.add_argument(
21+
cls.parser().add_argument(
2222
'--ssh-injector-net',
2323
dest='ssh_injector_net',
2424
default='127.0.0.1',
2525
help='local address/interface where injector sessions are served'
2626
)
27-
cls.PARSER.add_argument(
27+
cls.parser().add_argument(
2828
'--ssh-injector-enable-mirror',
2929
dest='ssh_injector_enable_mirror',
3030
action="store_true",
3131
help='disables host session mirroring for the injector shell'
3232
)
33-
cls.PARSER.add_argument(
33+
cls.parser().add_argument(
3434
'--ssh-injectshell-key',
3535
dest='ssh_injectshell_key'
3636
)
@@ -126,9 +126,9 @@ class InjectorShell(threading.Thread):
126126
BUF_LEN = 1024
127127
STEALTH_WARNING = """
128128
[NOTE]\r\n
129-
This is a hidden shell injected into the secure session the originally host created.\r\n
129+
This is a hidden shell injected into the secure session the original host created.\r\n
130130
Any commands issued CAN affect the environment of the user BUT will not be displayed on their terminal!\r\n
131-
Exit the hidden shell with CTRL+C
131+
Exit the hidden shell with CTRL+C\r\n
132132
"""
133133

134134
def __init__(self, remote, client_channel, forwarder):

0 commit comments

Comments
 (0)