Detect-It-Easy/db/Binary/format_Empty.1.sg
2026-05-25 21:03:46 +03:00

12 lines
No EOL
229 B
JavaScript
Executable file

// Detect It Easy: detection rule file
// Author: horsicq <horsicq@gmail.com>
meta("format", "Empty file");
function detect() {
if (Binary.getSize() == 0) {
bDetected = true;
}
return result();
}