Skip to content

TypeError in ssh.py #9

Description

@samari-k

Using trevorspray with --ssh on python 3.12 raises the following error:

[ERRR] Traceback (most recent call last):
  File "/usr/lib/python3.12/site-packages/trevorspray/cli.py", line 285, in main
    sprayer = TrevorSpray(options)
              ^^^^^^^^^^^^^^^^^^^^
  File "/usr/lib/python3.12/site-packages/trevorspray/lib/trevor.py", line 58, in __init__
    proxy = ProxyThread(
            ^^^^^^^^^^^^
  File "/usr/lib/python3.12/site-packages/trevorspray/lib/proxy.py", line 66, in __init__
    self.proxy.start()
  File "/usr/lib/python3.12/site-packages/trevorproxy/lib/ssh.py", line 49, in start
    self.command = b" ".join(self.sh.cmd)
                   ^^^^^^^^^^^^^^^^^^^^^^
TypeError: sequence item 0: expected a bytes-like object, str found

Changing the lines 49 and 98 in lib/ssh.py fixed it for me. Here is the diff:

49c49
<             self.command = b" ".join(self.sh.cmd).decode()
---
>             self.command = " ".join(self.sh.cmd).encode()
98c98
<             log.debug(f'Waiting for {" ".join([x.decode() for x in self.sh.cmd])}')
---
>             log.debug(f'Waiting for {" ".join([x for x in self.sh.cmd])}')

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions