-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathszizzleIMON.py
133 lines (108 loc) · 4.6 KB
/
szizzleIMON.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
import binascii
import argparse
import subprocess
from termcolor import colored
import os
import re
def print_debug(message):
print(colored('[DEBUG] ', 'green') + message)
def print_error(message):
print(colored('[ERROR] ', 'red') + message)
def connect_to_ncat(destination, verbose, debug):
command = ['ncat', '--ssl', destination, '443']
process = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, stdin=subprocess.PIPE)
return process
def read_first_lines(process, lines_to_read, verbose):
for _ in range(lines_to_read):
line = process.stdout.readline().decode().strip()
if verbose:
print(line)
else:
print(line, flush=True)
def press_enter(process, debug):
process.stdin.write('\n'.encode())
process.stdin.flush()
hex_lines = []
end_marker_pattern = r'--- Type Answer to provided captcha \d+ ---'
while True:
line = process.stdout.readline().decode().strip()
if re.match(end_marker_pattern, line):
if debug:
print_debug("Hex conversion ended.")
break
if verbose:
print(line)
else:
print(line, flush=True)
if not line.startswith("---"):
hex_lines.append(line)
return ''.join(hex_lines).strip()
def hex_to_png(hexadecimal, filename, debug):
try:
binary_str = binascii.unhexlify(hexadecimal)
with open(filename, 'wb') as f:
f.write(binary_str)
if debug:
print_debug("Hex to PNG conversion completed. PNG saved to " + filename)
except Exception as e:
print_error("Error occurred during hex to PNG conversion: " + str(e))
def remove_control_characters(text):
pattern = r"\x1b\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]"
return re.sub(pattern, "", text)
if __name__ == '__main__':
parser = argparse.ArgumentParser(description='Convert a hexadecimal string to a PNG image.')
parser.add_argument('-s', '--source', required=True, help='Specify the destination for the "ncat" command.')
parser.add_argument('-f', '--file', required=False, help='Specify the file name containing the hexadecimal string.')
parser.add_argument('-o', '--output', default='image.png',
help="Specify the output file name. If not provided, the default is 'image.png'.")
parser.add_argument('-v', '--verbose', action='store_true', help='Display verbose output of the "ncat" command.')
parser.add_argument('--debug', action='store_true', help='Enable debug mode.')
args = parser.parse_args()
debug = args.debug
verbose = args.verbose
if args.source:
if debug:
print_debug("Connecting to " + args.source)
process = connect_to_ncat(args.source, verbose, debug)
lines_to_read = 4
read_first_lines(process, lines_to_read, verbose)
elif args.file:
with open(args.file, 'r') as f:
hexadecimal = f.read().strip()
else:
parser.error('Either --source or -f/--file must be provided.')
for i in range(200):
hexadecimal = press_enter(process, debug)
filename = args.output
if debug:
print_debug("Converting hex to PNG...")
hex_to_png(hexadecimal, filename, debug)
if debug:
print_debug("Running ImageSplit.py...")
image_split_command = ['python3', 'ImageSplit.py', '--image_path', filename]
subprocess.run(image_split_command)
if debug:
print_debug("Running ImageDetermine.py...")
image_determine_command = ['python3', 'ImageDetermine.py', '--split_images_folder', '/home/changeme/Captcha_One', '--data_folder', 'Images/']
subprocess.run(image_determine_command)
if debug:
print_debug("Reading contents of output.txt...")
with open("output.txt", "r") as f:
file_contents = f.read().strip()
if debug:
print_debug("Sending contents of output.txt to netcat...")
file_contents = remove_control_characters(file_contents)[:4]
print_debug("Value sent to netcat: " + file_contents)
process.stdin.write(file_contents.encode() + '\n'.encode())
process.stdin.flush()
if debug:
print_debug("Receiving netcat response...")
response = process.stdout.readline().decode().strip()
print(response)
print(colored("Last One.", 'blue'))
response = process.stdout.readline().decode().strip()
print(response)
process.stdin.write('\n'.encode())
process.stdin.flush()
response = process.stdout.readline().decode().strip()
print(colored(response, 'blue'))