mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
12 lines
No EOL
316 B
JavaScript
Executable file
12 lines
No EOL
316 B
JavaScript
Executable file
// Detect It Easy: detection rule file
|
|
// Author: horsicq <horsicq@gmail.com>
|
|
|
|
meta("format", "pdf");
|
|
|
|
function detect() {
|
|
var list_autor = PDF.getStringValuesByKey("/Author");
|
|
|
|
for (var i = 0; i < list_autor.length; i++) {
|
|
_setResult("personal data", "Author", "", list_autor[i]);
|
|
}
|
|
} |