This commit is contained in:
DosX 2026-06-19 11:22:34 +03:00
commit b92aeb6e9a
4 changed files with 1287 additions and 672 deletions

File diff suppressed because it is too large Load diff

13
db/PE/library_DWMAPI.4.sg Normal file
View file

@ -0,0 +1,13 @@
// Detect It Easy: detection rule file
// Author: BJNFNE <bjnfne@web.de>
// https://windows10dll.nirsoft.net/dwmapi_dll.html
meta("library", "Microsoft Desktop Window Manager API");
function detect() {
if (PE.isLibraryPresent("dwmapi.dll")) {
bDetected = true;
}
return result();
}

View file

@ -0,0 +1,13 @@
// Detect It Easy: detection rule file
// Author: BJNFNE <bjnfne@web.de>
// https://www.fluidsynth.org/
meta("library", "FluidSynth");
function detect() {
if (PE.isLibraryPresentExp(/^libfluidsynth/)) {
bDetected = true;
}
return result();
}

View file

@ -0,0 +1,13 @@
// Detect It Easy: detection rule file
// Author: BJNFNE <bjnfne@web.de>
// https://www.dllme.com/dll/files/og70as
meta("library", "ObjGrid");
function detect() {
if (PE.isLibraryPresent("OG70AS.dll")) {
bDetected = true;
}
return result();
}