We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf6d593 commit 2189d93Copy full SHA for 2189d93
tools/SecuROMDetector/SecuROMDetector.py
@@ -16,11 +16,21 @@ def identify_exe(exe_path, exe_check):
16
# Check if the input file has a valid .exe extension
17
if exe_file.lower().endswith((".exe")):
18
found_pattern = False
19
-
+
20
+ # Check for SecuROM version 4.00.00
21
+ if identify_exe(exe_file, "4.00.00"):
22
+ print("SecuROM 4.00.00")
23
+ found_pattern = True
24
25
# Check for SecuROM version 4.77.00
26
if identify_exe(exe_file, "4.77.00"):
27
print("SecuROM 4.77.00")
28
found_pattern = True
29
30
+ # Check for SecuROM version 4.83.11
31
+ if identify_exe(exe_file, "4.83.11"):
32
+ print("SecuROM 4.83.11")
33
34
35
# Check for .cms_t pattern
36
if identify_exe(exe_file, ".cms_t"):
0 commit comments