-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.py
181 lines (148 loc) · 8.1 KB
/
main.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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
# argparse, hashlib, json, sys ve openai modüllerini içe aktar
import argparse
import hashlib
import json
import sys
from gpt_session import gptSession
from constants import CHATGPT, FILE_EXTENSIONS
from prompts import PromptGenerator
# pefile ve peutils modüllerini içe aktar
import pefile
import peutils
def get_imported_symbols(filename: str):
imports = ""
pe = pefile.PE(filename)
imphash = pe.get_imphash() # PE dosyasının imza hash'ini hesaplar
try:
for entry in pe.DIRECTORY_ENTRY_IMPORT: # PE dosyasının içe aktarımlarını döngüye alır
imports += entry.dll.decode('ascii') + ' ' # DLL adını imports string'ine ekler
for imp in entry.imports: # DLL'nin içe aktardığı fonksiyonları döngüye alır
imports += imp.name.decode('ascii') + ' ' # Fonksiyon adını imports string'ine ekler
except:
pass
return imports, imphash # Imports string'ini ve imphash'i döndürür
def get_hashes(filename: str, imphash: str):
"""PE dosyasının SHA256 hash'ini hesaplar ve VT ve HA linklerini yazdırır."""
with open(filename, "rb") as f: # PE dosyasını ikili modda okur
content = f.read() # PE dosyasının içeriğini alır
hash_object = hashlib.sha256(content) # SHA256 hash nesnesi oluşturur
hex_dig = hash_object.hexdigest() # Hash nesnesinin onaltılık değerini alır
print("[*] SHA256 search in vt: {}: https://www.virustotal.com/gui/file/{}".format(filename, hex_dig)) # VT linkini yazdırır
"""print('Search imphash in web: {}: https://www.hybrid-analysis.com/search?query=imphash:{}'.format(filename,
imphash)) # HA linkini yazdırır"""
return hex_dig # Hash nesnesinin onaltılık değerini döndürür
def generate_prompt(input: str, file_type: str) -> str:
print("INPUTS:",input, file_type)
if file_type in FILE_EXTENSIONS["tested"]["scripts"]:
return PromptGenerator.script_anylze_in_json(input)
elif file_type in FILE_EXTENSIONS["tested"]["PE"]:
#print(input)
return PromptGenerator.pe_anlyze_in_json(input)
else:
print("[!] Invalid file type")
sys.exit(1)
def is_malware(prompt: str, gpt_session:gptSession):
#response = json.loads(completion.choices[0].message.content) # Tamamlamanın içeriğini JSON olarak yükler
response = gpt_session.send_message(prompt)
print("JSON:", response)
"""if response['malware'] == '1': # Eğer zararlı ise
print("[+] Malware detected!") # Zararlı olduğunu yazdırır
print("[+] Reason:", response['reason']) # Sebebini yazdırır
return True # True döndürür
else: # Eğer zararlı değilse
print(
"[-] We did not find any signs of malware in that file. If you believe the file is not trustworthy, please check this data on VirusTotal.\n\thttps://www.virustotal.com/gui/home/search") # Zararlı olmadığını yazdırır
return False # False döndürür"""
def read_file(filename: str):
"""PE dosyasını okur ve içeriğini döndürür."""
try:
with open(filename, 'r') as filecode: # PE dosyasını metin modda okur
data = filecode.read() # PE dosyasının içeriğini alır
return data # İçeriği döndürür
except FileNotFoundError: # Dosya bulunamazsa
print(f'[!] I cant find the file named {filename}') # Hata mesajı yazdırır
except: # Başka bir hata olursa
print('[!] File read failed!') # Hata mesajı yazdırır
def get_file_features(filename):
"""PE dosyasının tüm özelliklerini döndürür."""
features = {}
# PE dosyasını oku
pe = pefile.PE(filename)
# PEiD imzalarını yükle
signatures = peutils.SignatureDatabase("userdb.txt")
# PE dosyasının imzasını eşleştir
match = signatures.match(pe, ep_only=True)
# Eşleşme varsa, paketleyici, şifreleyici veya derleyici bilgisini özelliklere ekle
if match:
print("[+] Signature match:", match[0])
features["signature"] = match[0]
# PE dosyasının özelliklerini çıkar
features["number_of_sections"] = pe.FILE_HEADER.NumberOfSections # Bölüm sayısı
features["size_of_code"] = pe.OPTIONAL_HEADER.SizeOfCode # Kod boyutu
features["size_of_initialized_data"] = pe.OPTIONAL_HEADER.SizeOfInitializedData # Başlatılan veri boyutu
features["size_of_uninitialized_data"] = pe.OPTIONAL_HEADER.SizeOfUninitializedData # Başlatılmayan veri boyutu
features["address_of_entry_point"] = pe.OPTIONAL_HEADER.AddressOfEntryPoint # Giriş noktası adresi
features["dll_characteristics"] = pe.OPTIONAL_HEADER.DllCharacteristics # DLL özellikleri
#UNTESTED FEATURES - WILL BE ADDED LATER
""" features["machine"] = pe.FILE_HEADER.Machine # PE dosyasının çalıştığı makine tipi
features["time_date_stamp"] = pe.FILE_HEADER.TimeDateStamp # PE dosyasının oluşturulduğu veya değiştirildiği zaman damgası
features["image_base"] = pe.OPTIONAL_HEADER.ImageBase # PE dosyasının yükleneceği taban adresi
features["subsystem"] = pe.OPTIONAL_HEADER.Subsystem # PE dosyasının çalıştığı alt sistem
features["checksum"] = pe.OPTIONAL_HEADER.CheckSum # PE dosyasının kontrol toplamı
features["number_of_rva_and_sizes"] = pe.OPTIONAL_HEADER.NumberOfRvaAndSizes # PE dosyasının veri dizinleri sayısı
features["data_directories"] = pe.OPTIONAL_HEADER.DATA_DIRECTORY # PE dosyasının veri dizinleri"""
# Bölüm tablosundan özellikler çıkar
section_features = []
for section in pe.sections:
section_features.append(section.Misc_VirtualSize) # Sanal boyut
section_features.append(section.SizeOfRawData) # Ham veri boyutu
section_features.append(section.Characteristics) # Bölüm özellikleri
features["section_features"] = section_features
return features
def analyze_malware(file_type: str, file_name: str, gpt_session:gptSession):
if file_type in FILE_EXTENSIONS["tested"]["scripts"]:
content = read_file(file_name)
if content:
prompt = generate_prompt(content, file_type)
is_malware(prompt, gpt_session)
elif file_type in FILE_EXTENSIONS["tested"]["PE"]:
file_imports, file_imphash = get_imported_symbols(file_name)
file_hash = get_hashes(file_name, file_imphash)
file_features = get_file_features(file_name)
all_features = {
"file_imports": file_imports,
"file_imphash": file_imphash,
"file_hash": file_hash,
"file_features": file_features
}
prompt = generate_prompt(str(all_features), file_type)
is_malware(prompt, gpt_session)
if __name__ == "__main__":
parser = argparse.ArgumentParser(
description="Malware identification with OpenAI"
)
parser.add_argument("--file", help="Specify the full file name (e.g., --file script.py or --file test.exe)")
parser.add_argument("--api_key", help="Specify the OpenAI API key (e.g., --api_key YOUR_API_KEY_HERE)")
if len(sys.argv) == 1:
parser.print_help(sys.stderr)
sys.exit(1)
args = parser.parse_args()
if args.api_key:
gpt_session = gpt_session = gptSession(args.api_key, CHATGPT.API_ENDPOINT)
else:
if CHATGPT.API_key != None:
gpt_session = gptSession(CHATGPT.API_key, CHATGPT.API_ENDPOINT)
else:
print("[!] Please specify the OpenAI API key with --api_key or set the API_key variable in constants.py")
sys.exit(1)
if args.file:
if "." in args.file:
file_name = args.file
file_type = args.file.split(".")[-1]
print("[*] File name:", file_name)
print("[*] File type:", file_type)
print("[*] Analyzing file:", args.file)
analyze_malware(file_type, file_name, gpt_session)
else:
print("[!] Invalid file type, missing file extension!")
sys.exit(1)