python sshng2john.py hash.txt
This time, however, I was greeted with an unfriendly
> AttributeError: module 'base64' has no attribute 'decodestring'
After some searching around, I realized that I could change Line 640 in sshng2john.py fromdata = base64.decodestring(data)
to
data = base64.decodebytes(data)
Which solved the issue.Silly Python3.9 breaking changes :(
No comments :
Post a Comment