jenkins-decrypt icon indicating copy to clipboard operation
jenkins-decrypt copied to clipboard

Credentials dumper for Jenkins

Results 11 jenkins-decrypt issues
Sort by recently updated
recently updated
newest added

Added secrets in addition to passwords

Hi there, You might wanna update your script to remove the warning: ``` decrypt.py:76: DeprecationWarning: decodestring() is a deprecated alias since Python 3.1, use decodebytes() p = base64.decodestring(bytes(password, 'utf-8')) ```

Was running into a few issues decrypting creds from older Jenkins versions.. * change magic regex types to binary * specify encoding for credentials * change pattern regex to original...

change the base64 decode method whitch is throwing error in new version.

Updated the base64 decode parameter as it was throwing error in newer versions.

The error AttributeError: module 'base64' has no attribute 'decodestring' occurs because the base64.decodestring() method was deprecated and removed in Python 3. decodestring() was an alias for decodebytes(), and the latter...