Skip to content

Commit fb90f59

Browse files
committed
Update Astral-PE.2.sg
1 parent d197376 commit fb90f59

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

db/PE/Astral-PE.2.sg

+5-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,11 @@
99
init("protector", "Astral-PE");
1010

1111
function detect() {
12-
if (PE.section[0].Name === "" && PE.getImportLibraryName(0)[0] === '.') {
12+
var firstSection = PE.section[0];
13+
14+
if (firstSection.Name === "" &&
15+
firstSection.Characteristics === 0xe0000020 &&
16+
PE.getImportLibraryName(0)[0] === '.') {
1317
bDetected = true;
1418
}
1519

0 commit comments

Comments
 (0)