CurlRecon Advanced Scan Report
Total Scanned: {{ report.total_scanned }} | Duration: {{ "%.2f"|format(report.scan_duration) }}s
Successful
{{ report.successful }}
Failed
{{ report.failed }}
{% for target in report.targets %}
{{ target.url }}
{% if target.success %}
{{ target.response.status_code }} OK
{% else %}
Failed
{% endif %}
{% if target.success %}
Overview
Method:
{{ target.request.method }}
Elapsed Time:
{{ "%.3f"|format(target.response.elapsed_seconds) }}s
Content Length:
{{ target.response.content_length }} bytes
Content Type:
{{ target.response.content_type }}
Security Score
{{ target.security.score }}/100
Tech Stack Fingerprints
{% if target.fingerprints %} {% for fp in target.fingerprints %}
{{ fp.category }}: {{ fp.name }}
{% endfor %} {% else %}
No specific tech stack detected.
{% endif %}
Security Headers
Header
Status
Value
{% for header, status in target.security.headers.items() %}
{{ header }}
{% if status.present %}
{% else %}
{% endif %}
{{ status.value if status.present else "Missing" }}
{% endfor %}
{% else %}
Error:
{{ target.error }}
{% endif %}
{% endfor %}