-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbinary2image.py
91 lines (72 loc) · 2.27 KB
/
binary2image.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
"""Binary to Image Converter."""
import os
from argparse import ArgumentParser
from PIL import Image
from tqdm import tqdm
def get_binary_data(filename):
"""Extract byte values from binary executable file and store them in list.
:param file: executable file
:return: byte value list
"""
binary_values = []
with open(filename, "rb") as file:
while byte := file.read(1):
binary_values.append(ord(byte))
return binary_values
def get_size(data_length):
"""Obtain image size.
Source: Malware images: visualization and automatic classification.
:param data_length: Number of bytes in file
:return: size as integer tuple
"""
size = data_length
kib = 2**10
if size < 10 * kib:
width = 32
elif size < 30 * kib:
width = 64
elif size < 60 * kib:
width = 128
elif size < 100 * kib:
width = 256
elif size < 200 * kib:
width = 384
elif size < 500 * kib:
width = 512
elif size < 1000 * kib:
width = 768
else:
width = 1024
height = size // width + 1
return (width, height)
def save_file(folder, filename, data, size):
"""Save PIL image to disk.
:param folder: folder where images will be saved
:param filename: binary filename
:param data: grayscale image
:param size: image size
"""
image = Image.new("L", size)
image.putdata(data)
name, _ = os.path.splitext(filename)
name = os.path.basename(name)
imagename = os.path.join(folder, name + ".png")
image.save(imagename)
if __name__ == "__main__":
parser = ArgumentParser(
description="Transform all files in a folder into PNG images"
)
parser.add_argument("input_folder", help="Folder with the original files")
parser.add_argument(
"output_folder", help="Folder where the images will be saved"
)
args = parser.parse_args()
files = [
os.path.join(args.input_folder, bin_file)
for bin_file in os.listdir(args.input_folder)
]
os.makedirs(args.output_folder, exist_ok=True)
for bin_file in tqdm(files):
greyscale_data = get_binary_data(bin_file)
bin_size = get_size(len(greyscale_data))
save_file(args.output_folder, bin_file, greyscale_data, bin_size)