Replies: 1 comment 1 reply
-
|
Thanks for reporting this and for sharing the details. ProxMenux analyzes system logs using How to verify the source of these attempts: View failed authentication attempts from the last 24 hours: journalctl --since '24 hours ago' -g 'authentication failure|failed password|invalid user' | head -100Get a summary grouped by service: journalctl --since '24 hours ago' -g 'authentication failure|failed password|invalid user' | grep -oP '(sshd|pvedaemon|pveproxy|systemd-logind)' | sort | uniq -c | sort -rnSee the IP addresses attempting access (SSH-related): journalctl --since '24 hours ago' -g 'failed password|invalid user' | grep -oP 'from \K[0-9.]+' | sort | uniq -c | sort -rn | head -20This should help you better understand where these attempts are coming from and which services are being targeted. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Description:
The ProxMenux Monitor dashboard is showing a high number of failed login attempts (e.g., 6000+ in 24h), even though there are no actual failed login events on the system.
What I observed:
The dashboard displays a warning about failed login attempts.
However, checking the Proxmox logs shows no failed authentication attempts.
Verification steps:
I checked the Proxmox access logs with the following command:
sudo grep "POST /api2/json/access/ticket" /var/log/pveproxy/access.log | grep -E "401|403"
Result:
0 matches found
This confirms there are no failed login attempts recorded.
Environment:
Proxmox VE (latest version)
ProxMenux Monitor (Stable and Beta tested)
Installed via official script
Additional notes:
The issue appeared after reinstalling ProxMenux.
The warning persists even after a clean reinstall and system reboot.
No external exposure (internal network only).
Logs show normal API activity (HTTP 200 responses only).
Impact:
This creates a misleading security warning in the dashboard, which can cause confusion and unnecessary troubleshooting.
Expected behavior:
The dashboard should accurately reflect failed login attempts based on actual log data.
Actual behavior:
The dashboard reports a large number of failed login attempts that do not exist in the logs.
Possible cause:
It may be incorrectly parsing logs or counting non-authentication requests as failed logins.
Let me know if you need additional logs or testing from my side.
Beta Was this translation helpful? Give feedback.
All reactions