mirror of
				https://github.com/sqlmapproject/sqlmap.git
				synced 2025-11-04 01:47:37 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			89 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			89 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
#!/usr/bin/env python
 | 
						|
 | 
						|
"""
 | 
						|
cloak.py - Simple file encryption/compression utility
 | 
						|
 | 
						|
Copyright (c) 2006-2022 sqlmap developers (https://sqlmap.org/)
 | 
						|
See the file 'LICENSE' for copying permission
 | 
						|
"""
 | 
						|
 | 
						|
from __future__ import print_function
 | 
						|
 | 
						|
import os
 | 
						|
import struct
 | 
						|
import sys
 | 
						|
import zlib
 | 
						|
 | 
						|
from optparse import OptionError
 | 
						|
from optparse import OptionParser
 | 
						|
 | 
						|
if sys.version_info >= (3, 0):
 | 
						|
    xrange = range
 | 
						|
    ord = lambda _: _
 | 
						|
 | 
						|
KEY = b"ENWsCymUeJcXqSbD"
 | 
						|
 | 
						|
def xor(message, key):
 | 
						|
    return b"".join(struct.pack('B', ord(message[i]) ^ ord(key[i % len(key)])) for i in range(len(message)))
 | 
						|
 | 
						|
def cloak(inputFile=None, data=None):
 | 
						|
    if data is None:
 | 
						|
        with open(inputFile, "rb") as f:
 | 
						|
            data = f.read()
 | 
						|
 | 
						|
    return xor(zlib.compress(data), KEY)
 | 
						|
 | 
						|
def decloak(inputFile=None, data=None):
 | 
						|
    if data is None:
 | 
						|
        with open(inputFile, "rb") as f:
 | 
						|
            data = f.read()
 | 
						|
    try:
 | 
						|
        data = zlib.decompress(xor(data, KEY))
 | 
						|
    except Exception as ex:
 | 
						|
        print(ex)
 | 
						|
        print('ERROR: the provided input file \'%s\' does not contain valid cloaked content' % inputFile)
 | 
						|
        sys.exit(1)
 | 
						|
    finally:
 | 
						|
        f.close()
 | 
						|
 | 
						|
    return data
 | 
						|
 | 
						|
def main():
 | 
						|
    usage = '%s [-d] -i <input file> [-o <output file>]' % sys.argv[0]
 | 
						|
    parser = OptionParser(usage=usage, version='0.2')
 | 
						|
 | 
						|
    try:
 | 
						|
        parser.add_option('-d', dest='decrypt', action="store_true", help='Decrypt')
 | 
						|
        parser.add_option('-i', dest='inputFile', help='Input file')
 | 
						|
        parser.add_option('-o', dest='outputFile', help='Output file')
 | 
						|
 | 
						|
        (args, _) = parser.parse_args()
 | 
						|
 | 
						|
        if not args.inputFile:
 | 
						|
            parser.error('Missing the input file, -h for help')
 | 
						|
 | 
						|
    except (OptionError, TypeError) as ex:
 | 
						|
        parser.error(ex)
 | 
						|
 | 
						|
    if not os.path.isfile(args.inputFile):
 | 
						|
        print('ERROR: the provided input file \'%s\' is non existent' % args.inputFile)
 | 
						|
        sys.exit(1)
 | 
						|
 | 
						|
    if not args.decrypt:
 | 
						|
        data = cloak(args.inputFile)
 | 
						|
    else:
 | 
						|
        data = decloak(args.inputFile)
 | 
						|
 | 
						|
    if not args.outputFile:
 | 
						|
        if not args.decrypt:
 | 
						|
            args.outputFile = args.inputFile + '_'
 | 
						|
        else:
 | 
						|
            args.outputFile = args.inputFile[:-1]
 | 
						|
 | 
						|
    f = open(args.outputFile, 'wb')
 | 
						|
    f.write(data)
 | 
						|
    f.close()
 | 
						|
 | 
						|
if __name__ == '__main__':
 | 
						|
    main()
 |