{% if report.analysis.static.pdf|length == 1 and not report.analysis.static.pdf.0.modification and not report.analysis.static.pdf.0.urls and not report.analysis.static.pdf.0.javascript %}
No PDF metadata could be extracted!
{% endif %}
{% for p in report.analysis.static.pdf %}
{% if p.modification %}
Metadata
-
Version: {{ p.version }}
-
Creator: {{ p.creator }}
-
Creation: {{ p.creation }}
-
Title: {{ p.title }}
-
Subject: {{ p.subject }}
-
Producer: {{ p.producer }}
-
Author: {{ p.author }}
-
Modification: {{ p.modification }}
{% endif %}
{% if p.urls %}
URLs
{% for url in p.urls %}
{% if url %}
- {{ url }}
{% endif %}
{% endfor %}
{% endif %}
{% if p.javascript %}
{% for code in p.javascript %}
{% endfor %}
{% endif %}
{% endfor %}