You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The number of returned leaderboard entries is not limited at all. Allowing anyone to dump all players with e.g. score > 0 in a single request. Depending on the number of players in the database, this becomes a DoS vector.
The number of returned leaderboard entries is not limited at all. Allowing anyone to dump all players with e.g.
score > 0
in a single request. Depending on the number of players in the database, this becomes a DoS vector.asp/src/ASP/aspx/getleaderboard.php
Lines 82 to 90 in df86f71
The game loads 20 entries per page by default, which seems like a sensible limit. So
$max
should simply be set the minimum of$min+min($after+1, 20)
.The text was updated successfully, but these errors were encountered: