mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
Merge branch 'master' of https://github.com/horsicq/Detect-It-Easy
This commit is contained in:
commit
b92aeb6e9a
4 changed files with 1287 additions and 672 deletions
1922
db/Binary/audio.1.sg
1922
db/Binary/audio.1.sg
File diff suppressed because it is too large
Load diff
13
db/PE/library_DWMAPI.4.sg
Normal file
13
db/PE/library_DWMAPI.4.sg
Normal 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();
|
||||
}
|
||||
13
db/PE/library_FluidSynth.4.sg
Normal file
13
db/PE/library_FluidSynth.4.sg
Normal 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();
|
||||
}
|
||||
13
db/PE/library_ObjGrid.4.sg
Normal file
13
db/PE/library_ObjGrid.4.sg
Normal 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();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue