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
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 %}