decrypt 썸네일형 리스트형 remmina 에 저장된 원격제어 접속 비밀번호 복호화(Decrypt) 서버 접속정보를 정리하지 않은 상태에서 남아 있는 정보라고는 remmina의 암호화하여 저장된 비밀번호만 있는 경우 이를 복고화하여 비밀번호를 알아낼 수 있다. 방법은 일단 아래 스크립트를 파일로 저장한다. #!/usr/bin/python from Crypto.Cipher import DES3 import base64 secret = base64.decodestring('remmina.pref 파일안의 secret 문자열') key = secret[:24] iv = secret[24:] # Encoded Encrypted password EEpwd = '***.remmina 파일의 password 문자열' # Decoded Encrypted password DEpwd = base64.decodestrin.. 더보기 이전 1 다음