From d0c8ea393f5b195012a4e30191f370c6abb261bc Mon Sep 17 00:00:00 2001 From: yj94 <2991645986@qq.com> Date: Thu, 29 Aug 2024 19:40:21 +0800 Subject: [PATCH] Update BinarySpy.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 添加待选白名单.dll --- BinarySpy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BinarySpy.py b/BinarySpy.py index e94c8f6..e02c2c2 100644 --- a/BinarySpy.py +++ b/BinarySpy.py @@ -311,7 +311,7 @@ def fuzz_run(): modify_pe_file_label.pack() modify_pe_file_entry = tk.Entry(root, width=50) modify_pe_file_entry.pack() -modify_pe_file_button = tk.Button(root, text="浏览", command=lambda: browse_file(modify_pe_file_entry, "选择待修改的PE文件", [("PE文件", "*.exe")])) +modify_pe_file_button = tk.Button(root, text="浏览", command=lambda: browse_file(modify_pe_file_entry, "选择待修改的PE文件", [("PE文件", "*.exe *.dll")])) modify_pe_file_button.pack() va_label = tk.Label(root, text="要修改PE文件的VA (十六进制):")