{% extends "drf_inspector/base.html" %} {% block page_header %}

Security Analyzer

Review security configurations and identify potential vulnerabilities.

{% endblock %} {% block action_buttons %}
Download JSON Download Markdown
{% endblock %} {% block content %}
{% for item in endpoints %}

{{ item.view }}

/{{ item.path }}
{% if item.warnings %}
WARNING
{% else %}
SAFE
{% endif %}
Methods
{% for method in item.methods %} {{ method }} {% endfor %}
Permissions: {% if item.permissions %} {% for permission in item.permissions %} {{ permission }} {% endfor %} {% else %} None {% endif %}
Authentication: {% if item.authentication %} {% for auth in item.authentication %} {{ auth }} {% endfor %} {% else %} None {% endif %}
Throttling: {% if item.throttle %} {% for throttle in item.throttle %} {{ throttle }} {% endfor %} {% else %} None {% endif %}
{% if item.warnings %}
Security Warnings
    {% for warning in item.warnings %}
  • {{ warning }}
  • {% endfor %}
{% endif %}
{% endfor %}
{% endblock %}