Skip to content

Commit 2189d93

Browse files
committed
add two new SecuROM variants to SecuROMDetector
1 parent bf6d593 commit 2189d93

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

tools/SecuROMDetector/SecuROMDetector.py

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,21 @@ def identify_exe(exe_path, exe_check):
1616
# Check if the input file has a valid .exe extension
1717
if exe_file.lower().endswith((".exe")):
1818
found_pattern = False
19-
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+
2025
# Check for SecuROM version 4.77.00
2126
if identify_exe(exe_file, "4.77.00"):
2227
print("SecuROM 4.77.00")
2328
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+
found_pattern = True
2434

2535
# Check for .cms_t pattern
2636
if identify_exe(exe_file, ".cms_t"):

0 commit comments

Comments
 (0)