mention the reverse proxy bypass

This commit is contained in:
OniriCorpe 2024-01-17 23:51:38 +01:00
parent 832dc3d55b
commit 8b38cf0924

View file

@ -1550,10 +1550,11 @@ class Configurations(TestSuite):
and not line.strip().startswith(comment) and not line.strip().startswith(comment)
): ):
yield Info( yield Info(
f"{filename}:{number}: Binding to '0.0.0.0' or '::' can result in " f"{filename}:{number}: Binding to '0.0.0.0' or '::' can result "
"a security issue as the SSO can be bypassed by knowing a public " "in a security issue as the reverse proxy and the SSO can be "
"IP (typically an IPv6) and the app port. Please be sure that this " "bypassed by knowing a public IP (typically an IPv6) and the "
"behavior is intentional. Maybe use '127.0.0.1' or '::1' instead." "app port. lease be sure that this behavior is intentional. "
"Maybe use '127.0.0.1' or '::1' instead."
) )
############################################# #############################################