We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Server XSS occurs when untrusted user supplied data is included in an HTTP response generated by the server. -- https://owasp.org/www-community/Types_of_Cross-Site_Scripting
opensips-cp/web/tools/admin/list_admins/template/list_admins.edit_tools.php
Line 42 in 4402206
For example, both $_GET['id'] and $_GET['uname'] are user supplied data.
$_GET['id']
$_GET['uname']
I'd recommend use of static code analysis tools like SonarQube for discovering basic XSS vulnerabilities.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
opensips-cp/web/tools/admin/list_admins/template/list_admins.edit_tools.php
Line 42 in 4402206
For example, both
$_GET['id']
and$_GET['uname']
are user supplied data.I'd recommend use of static code analysis tools like SonarQube for discovering basic XSS vulnerabilities.
The text was updated successfully, but these errors were encountered: