There is an xss vulnerability in your latest version of the v5.5
In the PHPMyWind_5.5/admin/templates/html/default.html:
2.Steps To Reproduce:
Fix:
Strictly verify user input, you must perform strict checks and html escape escaping on all input scripts, iframes, etc. The input here is not only the input interface that the user can directly interact with, but also the variables in the HTTP request in the HTTP request, the variables in the HTTP request header, and so on.
Verify the data type and verify its format, length, scope, and content.
Not only need to be verified on the client side but also on the server side.
The output data should also be checked. The values in the database may be output in multiple places on a large website. Even if the input is coded, the security check should be performed at the output points.
The text was updated successfully, but these errors were encountered:
There is an xss vulnerability in your latest version of the v5.5
In the PHPMyWind_5.5/admin/templates/html/default.html:

2.Steps To Reproduce:


Fix:
The text was updated successfully, but these errors were encountered: