{% extends "base.html" %} {% load static %} {% block title %}OWASP Project Compliance Checker{% endblock %} {% block description %}Check if your OWASP project follows compliance guidelines and best practices.{% endblock %} {% block keywords %}OWASP, compliance, project guidelines, best practices, open source{% endblock %} {% block content %}

OWASP Project Compliance Checker

Verify if your project follows OWASP guidelines and best practices

{% if not url %}
{% csrf_token %}

Enter the GitHub repository URL or project website

{% endif %} {% if url %}

Compliance Check Results

{{ url }}

Overall Status: {% if overall_status == 'compliant' %} Compliant {% else %} Needs Improvement {% endif %}

{% if recommendations %}

Recommendations:

    {% for rec in recommendations %}
  • {{ rec }}
  • {% endfor %}
{% endif %}

GitHub Compliance

  • Hosted on GitHub {% if github_compliance.github_hosted %} Yes {% else %} No {% endif %}
  • Under OWASP Organization {% if github_compliance.under_owasp_org %} Yes {% else %} No {% endif %}

Website Compliance

  • OWASP Mention {% if website_compliance.has_owasp_mention %} Yes {% else %} No {% endif %}
  • Links to OWASP {% if website_compliance.has_project_link %} Yes {% else %} No {% endif %}
  • Up-to-date Information {% if website_compliance.has_dates %} Yes {% else %} Check {% endif %}

Vendor Neutrality

  • Possible Paywall Detected {% if vendor_neutrality.possible_paywall %} Yes {% else %} No {% endif %}
{% endif %}
{% endblock %}