Detect-It-Easy/db/PDF/HeaderComment.2.sg
2025-05-21 21:47:02 +02:00

10 lines
249 B
JavaScript

// Detect It Easy: detection rule file
init("format", "pdf");
function detect() {
var sHeaderComment = PDF.getHeaderCommentAsHex();
if (sHeaderComment != "") {
_setResult("complier", "HeaderComment", sHeaderComment, "");
}
}