mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
12 lines
233 B
JavaScript
12 lines
233 B
JavaScript
// Detect It Easy: detection rule file
|
|
// Author: BJNFNE <bjnfne@web.de>
|
|
|
|
init("text", "VCF");
|
|
|
|
function detect() {
|
|
if (Binary.compare("42 45 47 49 4E 3A 56 43 41 52 44")) {
|
|
bDetected = true
|
|
}
|
|
|
|
return result();
|
|
}
|