Created
November 4, 2014 12:42
-
-
Save jahil/deafea895019c9807037 to your computer and use it in GitHub Desktop.
Remmina Password Decoder
This file contains 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
__author__ = 'mohsin' | |
import base64 | |
from Crypto.Cipher import DES3 | |
secret = base64.decodestring('nMfNBx9y1T7Xe+DvWmsFwTeGUevEw3WLQlD5pl74qvo=') | |
password = base64.decodestring('temWEHt1x/0=') | |
print DES3.new(secret[:24], DES3.MODE_CBC, secret[24:]).decrypt(password) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment