If anyone wants a guide to how to remove most of the impact of this issue, plug this into the .htaccess:
RewriteCond %{QUERY_STRING} ^a.*$ [NC,OR]
RewriteCond %{QUERY_STRING} ^b.*$ [NC,OR]
RewriteCond %{QUERY_STRING} ^c.*$ [NC,OR]
RewriteCond %{QUERY_STRING} ^d.*$ [NC,OR]
RewriteCond %{QUERY_STRING} ^e.*$ [NC,OR]
RewriteCond %{QUERY_STRING} ^f.*$ [NC,OR]
RewriteCond %{QUERY_STRING} ^g.*$ [NC,OR]
RewriteCond %{QUERY_STRING} ^h.*$ [NC,OR]
RewriteCond %{QUERY_STRING} ^i.*$ [NC,OR]
RewriteCond %{QUERY_STRING} ^j.*$ [NC,OR]
RewriteCond %{QUERY_STRING} ^k.*$ [NC,OR]
RewriteCond %{QUERY_STRING} ^l.*$ [NC,OR]
RewriteCond %{QUERY_STRING} ^m.*$ [NC,OR]
RewriteCond %{QUERY_STRING} ^n.*$ [NC,OR]
RewriteCond %{QUERY_STRING} ^o.*$ [NC,OR]
RewriteCond %{QUERY_STRING} ^p.*$ [NC,OR]
RewriteCond %{QUERY_STRING} ^q.*$ [NC,OR]
RewriteCond %{QUERY_STRING} ^r.*$ [NC,OR]
RewriteCond %{QUERY_STRING} ^t.*$ [NC,OR]
RewriteCond %{QUERY_STRING} ^u.*$ [NC,OR]
RewriteCond %{QUERY_STRING} ^v.*$ [NC,OR]
RewriteCond %{QUERY_STRING} ^w.*$ [NC,OR]
RewriteCond %{QUERY_STRING} ^x.*$ [NC,OR]
RewriteCond %{QUERY_STRING} ^y.*$ [NC,OR]
RewriteCond %{QUERY_STRING} ^z.*$ [NC,OR]
RewriteCond %{QUERY_STRING} ^1.*$ [NC,OR]
RewriteCond %{QUERY_STRING} ^2.*$ [NC,OR]
RewriteCond %{QUERY_STRING} ^3.*$ [NC,OR]
RewriteCond %{QUERY_STRING} ^4.*$ [NC,OR]
RewriteCond %{QUERY_STRING} ^5.*$ [NC,OR]
RewriteCond %{QUERY_STRING} ^6.*$ [NC,OR]
RewriteCond %{QUERY_STRING} ^7.*$ [NC,OR]
RewriteCond %{QUERY_STRING} ^8.*$ [NC,OR]
RewriteCond %{QUERY_STRING} ^9.*$ [NC,OR]
RewriteCond %{QUERY_STRING} ^0.*$ [NC]
RewriteRule ^page/(.*)/?$ https://domain.com/page/$1/$2? [R=301,L]
and you could add ^sa, ^sb, etc. to give some extra safeguards.