ssh: support raw string input for 'key' argument as documented#2671
Open
theferalafk wants to merge 2 commits intoGallopsled:devfrom
Open
ssh: support raw string input for 'key' argument as documented#2671theferalafk wants to merge 2 commits intoGallopsled:devfrom
theferalafk wants to merge 2 commits intoGallopsled:devfrom
Conversation
added 2 commits
January 31, 2026 22:19
Implement support for passing the actual private key as a string or bytes, as specified in the documentation. This prevents an AttributeError by converting the string to the appropriate Paramiko PKey object (RSA/ECDSA/Ed25519).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The documentation of pwntools says that the key attribute of the ssh() function takes "key (str) – Try to authenticate using this private key. The string should be the actual private key."
Currently, passing a raw string or bytes object results in "AttributeError: 'str' object has no attribute 'get_fingerprint'" because paramiko expects a PKey object, not a raw string.
This adds conversion for str / bytes of RSA, ECDSA, Ed25519 key strings into the appropriate paramiko.PKey object. This aligns the actual behavior with the documented behavior.