This file contains hidden or 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
| #!/usr/bin/env python | |
| # | |
| # Decrypt SSHv2 passwords stored in VanDyke SecureCRT session files | |
| # Can be found on Windows in: | |
| # %APPDATA%\VanDyke\Config\Sessions\sessionname.ini | |
| # Tested with version 7.2.6 (build 606) for Windows | |
| # Eloi Vanderbeken - Synacktiv | |
| from Crypto.Cipher import Blowfish | |
| import argparse |