{% extends "base.html" %} {% load static %} {% load gravatar %} {% load custom_tags %} {% block title %}Home - Bug Logging Tool{% endblock %} {% block description %} Welcome to OWASP {% env 'PROJECT_NAME' %}, a platform to report bugs, earn rewards, and help secure the web through community-driven collaboration. {% endblock %} {% block keywords %} Bug Logging Tool, OWASP, security, bug reporting, rewards, open source, community, web security, contributions {% endblock %} {% block og_title %}Home - Bug Logging Tool{% endblock %} {% block og_description %} Welcome to OWASP {% env 'PROJECT_NAME' %}, a platform to report bugs, earn rewards, and help secure the web through community-driven collaboration. {% endblock %} {% block content %} {% include "includes/sidenav.html" %} {% if debug_mode %}

Local Mode

DEBUG=True

System Stats

  • Memory Usage: {{ system_stats.memory_usage }}
  • CPU Usage: {{ system_stats.cpu_percent }}
  • Python Version: {{ system_stats.python_version|truncatechars:20 }}
  • Django Version: {{ system_stats.django_version }}
  • DB Connections: {{ system_stats.db_connections }}

Database Stats

  • Users: Loading...
  • Issues: Loading...
  • Organizations: Loading...
  • Domains: Loading...
  • Repositories: Loading...

Cache Stats

  • Cache Backend: Loading...
  • Cache Keys: Loading...
  • Cache Hit Ratio: Loading...
{% endif %}

OWASP BLT: Secure the Web, Get Rewarded

Strengthen worldwide applications by finding and fixing security & coding issues through bug bounties and issue rewards. Earn money via GitHub Sponsors & BCH and get recognized with BACON, the first open-source security token on Bitcoin Runes.

Protect Applications

Safeguard your applications from security vulnerabilities.

Earn Rewards

Get rewarded for your security findings.

View Bounties

Automate Security

Streamline your security workflows.

NEW

Learn & Grow

Access expert-led security courses.

Start Learning

Our Components

Four key components power OWASP BLT. The core, mobile access, browser integration, and automation—working together to secure applications worldwide.

{% if user.is_authenticated %}

Referral Program

Invite friends to join BLT and earn points!

Earn 2 points for each friend who joins

Track clicks and successful signups

Compete on the referral leaderboard

{% else %}

Join Our Referral Program

Sign in to get your referral link and start earning points!

{% endif %}

Community Leaderboards

Total Bounties Earned: $155

Top Earners

{% for profile in top_earners %}
{{ forloop.counter }} {% if profile.avatar %} {{ profile.user.username }}'s avatar {% elif profile.user.socialaccount_set.all.0.get_avatar_url %} {{ profile.user.username }}'s avatar {% else %} {{ profile.user.username }}'s avatar {% endif %} {{ profile.user.username }}
${{ profile.winnings|floatformat:2 }}
{% empty %}

No earnings recorded yet

{% endfor %}

Top Bug Reporters

{% for user in top_bug_reporters %} {% empty %}

No bug reports yet

{% endfor %}

TOP BLT PRs - {{ current_time|date:"M" }}

{% for user in top_pr_contributors %} {% empty %}

No BLT PRs for {{ current_time|date:"F Y" }}

View PRs on GitHub
{% endfor %}

Top Referrals

{% for invite in top_referrals %}
{{ forloop.counter }} {% if invite.sender.userprofile.avatar %} {{ invite.sender.username }}'s avatar {% elif invite.sender.socialaccount_set.all.0.get_avatar_url %} {{ invite.sender.username }}'s avatar {% else %} {{ invite.sender.username }}'s avatar {% endif %} {{ invite.sender.username }}
{{ invite.point_by_referral }} pts {{ invite.signup_count }}
{% empty %}

No referrals recorded yet

Invite friends
{% endfor %}

Latest Activity

Latest Repositories

({{ total_repos }} total)
{% for repo in latest_repos %}
{{ repo.name }} {{ repo.primary_language|default:"-" }}
{% endfor %}

Recent Discussions

({{ recent_posts.count }} recent)
{% for post in recent_posts %}
{{ post.title }}
{{ post.user|default:"Anonymous" }} {{ post.created|timesince }} ago
{% empty %}

No discussions yet

{% endfor %}

Latest Bug Reports

{% for bug in latest_bugs|slice:":2" %}

{{ bug.description }}

{{ bug.status|default:"open"|title }}
{% if bug.screenshots.all.0 %}
Screenshot
{% endif %}
{% if bug.user %} {% if bug.user.userprofile.avatar %} {{ bug.user.username }} {% else %} {{ bug.user.username }} {% endif %} {{ bug.user.username }} {% else %} Anonymous {% endif %}
{{ bug.created|timesince }} ago
{{ bug.upvoted.count }} {{ bug.get_label_display }}
View Details
{% empty %}

No bug reports available yet.

Report a Bug
{% endfor %}

Latest Blog Posts

{% if latest_blog_posts %} {% for post in latest_blog_posts %}
{% if post.image %}
{{ post.title }}
{% endif %}

{{ post.title }}

{{ post.author.username }} {{ post.created_at|timesince }} ago

{{ post.content|truncatewords:30 }}

Read more
{% endfor %} {% else %}

No blog posts available.

{% endif %}

Corporate Supporters

OWASP Logo

BLT is an official OWASP project, adhering to the highest standards of open-source security.

Sentry Logo

Sentry provides BLT with a free plan for error monitoring and performance tracking.

Google Logo

Google supports BLT through Google Summer of Code, fostering student contributions.

Donate to the BLT project to support our development and have your logo featured here. Become a Supporter

Get Involved

Join our community and help make the internet a safer place.

{% endblock content %}