mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
11 lines
No EOL
290 B
JavaScript
Executable file
11 lines
No EOL
290 B
JavaScript
Executable file
// Detect It Easy: detection rule file
|
|
// Author: horsicq <horsicq@gmail.com>
|
|
|
|
meta("format", "pdf");
|
|
|
|
function detect() {
|
|
var sHeaderComment = PDF.getHeaderCommentAsHex();
|
|
if (sHeaderComment) {
|
|
_setResult("complier", "HeaderComment", sHeaderComment, "");
|
|
}
|
|
} |