{% extends 'base.html' %} {% block content %}

SSH bots login attempts

Have you ever tried having a publicly accessible server with SSH open, do you know what happens?
The logs get filled with login attempts
Well i decided to log these login attempts, here's the data

Want to avoid this? Use public / private keys and disable password login see this guide: landchad.net - SSH Keys
{% include 'chart.html' %}

Top usernames

{% with data=top_usernames %} {% include 'table.html' %} {% endwith %}

Top passwords

{% with data=top_passwords %} {% include 'table.html' %} {% endwith %}

Latest login attempts

{% with data=latest_login_attempts %} {% include 'table.html' %} {% endwith %}
Full screen chart

Link to the source code

Do you like living life dangerously? use password of the month as your next password

{% endblock %}