Add new file(s): 2025-03-12

This commit is contained in:
horsicq 2025-03-12 00:06:05 +01:00
commit 0e6eebf88f
2 changed files with 17 additions and 0 deletions

View file

@ -0,0 +1,15 @@
// Detect It Easy: detection rule file
init("operation system", "JVM");
function detect() {
if (JavaClass.isVerbose()) {
sName = JavaClass.getOperationSystemName();
sVersion = JavaClass.getOperationSystemVersion();
sOptions = JavaClass.getOperationSystemOptions();
bDetected = true;
}
return result();
}

2
db/JavaClass/_init Normal file
View file

@ -0,0 +1,2 @@
var File = JavaClass;
var X = JavaClass;