Skip to content

Instantly share code, notes, and snippets.

@jahil
Created November 4, 2014 12:42
Show Gist options
  • Save jahil/deafea895019c9807037 to your computer and use it in GitHub Desktop.
Save jahil/deafea895019c9807037 to your computer and use it in GitHub Desktop.
Remmina Password Decoder
__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