[20] | 1 | #!/usr/bin/env python |
---|
| 2 | |
---|
| 3 | # Requires Python 2.7+ |
---|
| 4 | |
---|
| 5 | ''' |
---|
| 6 | Simple decoder script; useful in shell scripts |
---|
| 7 | |
---|
| 8 | Copyright (C) 2011-2012 Virtual Security Research, LLC |
---|
| 9 | Author: Timothy D. Morgan |
---|
| 10 | |
---|
| 11 | This program is free software: you can redistribute it and/or modify |
---|
| 12 | it under the terms of the GNU Lesser General Public License, version 3, |
---|
| 13 | as published by the Free Software Foundation. |
---|
| 14 | |
---|
| 15 | This program is distributed in the hope that it will be useful, |
---|
| 16 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 18 | GNU General Public License for more details. |
---|
| 19 | |
---|
| 20 | You should have received a copy of the GNU General Public License |
---|
| 21 | along with this program. If not, see <http://www.gnu.org/licenses/>. |
---|
| 22 | ''' |
---|
| 23 | |
---|
| 24 | |
---|
| 25 | import sys |
---|
| 26 | import argparse |
---|
| 27 | from bletchley import blobtools |
---|
| 28 | |
---|
| 29 | |
---|
| 30 | parser = argparse.ArgumentParser(description='A simple encoder script that is useful in shell scripts.') |
---|
| 31 | parser.add_argument('input_file', nargs='?', default=None, |
---|
| 32 | help='File containing encrypted blobs to analyze, one per line. Omit to read from stdin.') |
---|
| 33 | parser.add_argument('-e', dest='encoding_chain', type=str, required=True, |
---|
| 34 | help='Comma-separated sequence of encoding formats used to encode the token, starting with the last encoding to apply.') |
---|
| 35 | options = parser.parse_args() |
---|
| 36 | |
---|
| 37 | input_file = sys.stdin |
---|
| 38 | if options.input_file is not None: |
---|
| 39 | input_file = file(options.input_file, 'rb') |
---|
| 40 | |
---|
| 41 | blob = input_file.read() |
---|
| 42 | |
---|
| 43 | specified_encodings = options.encoding_chain.split(',') |
---|
| 44 | specified_encodings.reverse() |
---|
| 45 | sys.stdout.write(blobtools.encodeChain(specified_encodings, blob)) |
---|