The fix is confirmed as working so please check your website’s Root and wp-admin files under the B-Core >>> htaccess File Editor page >>> Your Current Root htaccess File tab and Your Current wp-admin htaccess File tab and see if the security filters were successfully automatically modified during the BPS Pro 5.3.3 upgrade. If the filters were not automatically updated then please manually change them in your website’s root and wp-admin .htaccess files. Thank you.
Old filters in the Root .htaccess file
RewriteCond %{QUERY_STRING} ^.*(\[|\]|\(|\)|<|>|%3c|%3e|%5b|%5d).* [NC,OR]RewriteCond %{QUERY_STRING} ^.*(\0|\x04|\x08|\r|\x1b|\x20|\x3c|\x3e|\x5b|\x5d|\x7f).* [NC,OR]
New filters in the Root .htacces file
RewriteCond %{QUERY_STRING} ^.*(\(|\)|<|>|%3c|%3e).* [NC,OR]RewriteCond %{QUERY_STRING} ^.*(\0|\x04|\x08|\r|\x1b|\x20|\x3c|\x3e|\x7f).* [NC,OR]
Old filter in the wp-admin .htaccess file
RewriteCond %{QUERY_STRING} ^.*(\[|\]|\(|\)|<|>).* [NC,OR]
New filter in the wp-admin .htaccess file
RewriteCond %{QUERY_STRING} ^.*(\(|\)|<|>).* [NC,OR]