Replies: 1 comment
-
Here is the error log (env) root@kali:/opt/cybersec/pwncat/personal/pwncat
# pc 5b0f9eda9edee73d418f07badbbe1705
[01:10:59] Welcome to pwncat 🐈! __main__.py:143
Traceback (most recent call last):
File "/opt/cybersec/pwncat/personal/env/bin/pc", line 33, in <module>
sys.exit(load_entry_point('pwncat', 'console_scripts', 'pc')())
File "/opt/cybersec/pwncat/personal/pwncat/__main__.py", line 255, in main
session = implant.trigger(manager, target)
File "/opt/cybersec/pwncat/personal/pwncat/facts/__init__.py", line 367, in trigger
session = manager.create_session(
File "/opt/cybersec/pwncat/personal/pwncat/manager.py", line 666, in create_session
session = Session(self, platform, channel, **kwargs)
File "/opt/cybersec/pwncat/personal/pwncat/manager.py", line 93, in __init__
self.hash = self.platform.get_host_hash()
File "/opt/cybersec/pwncat/personal/pwncat/platform/linux.py", line 711, in get_host_hash
with self.session.task("calculating host hash") as task:
File "/usr/lib/python3.9/contextlib.py", line 117, in __enter__
return next(self.gen)
File "/opt/cybersec/pwncat/personal/pwncat/manager.py", line 275, in task
self._progress.start()
File "/opt/cybersec/pwncat/personal/env/lib/python3.9/site-packages/rich-10.6.0-py3.9.egg/rich/progress.py", line 644, in start
self.live.start(refresh=True)
File "/opt/cybersec/pwncat/personal/env/lib/python3.9/site-packages/rich-10.6.0-py3.9.egg/rich/live.py", line 113, in start
self.console.set_live(self)
File "/opt/cybersec/pwncat/personal/env/lib/python3.9/site-packages/rich-10.6.0-py3.9.egg/rich/console.py", line 794, in set_live
raise errors.LiveError("Only one live display may be active at once")
rich.errors.LiveError: Only one live display may be active at once |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have gathered
linux.enumerate.creds.private_key
for a user on the victim systemTrying to connect using the host hash raises the exception
rich.errors.LiveError
We have one progress bar created in
pwncat/__main__.py
And another progress bar is created in
pwncat/platform/linux.py
Also,
PlatformError
is not caught inpwncat/facts/__init__.py
Should we pass host hash to
Session(...)
?Current SSH is buggy, I think you are still waiting for the merge at paramiko
The help command output...fixed by 5477cfa
The help command output isn't consistent due to the inconsitent use of Docstrings
Beta Was this translation helpful? Give feedback.
All reactions