mirror of
https://github.com/YunoHost/package_linter.git
synced 2024-09-03 20:06:12 +02:00
add line numer and fix a trigger on commented lines
This commit is contained in:
parent
90ad5247a9
commit
832dc3d55b
1 changed files with 7 additions and 8 deletions
|
@ -1543,18 +1543,17 @@ class Configurations(TestSuite):
|
|||
yield Warning("Can't open/read %s: %s" % (filename, e))
|
||||
return
|
||||
|
||||
for line in content.split("\n"):
|
||||
comment = ["#", "//", ";"]
|
||||
for number, line in enumerate(content.split("\n"), 1):
|
||||
comment = ("#", "//", ";")
|
||||
if (
|
||||
"0.0.0.0" in line
|
||||
or "::" in line
|
||||
( "0.0.0.0" in line or "::" in line )
|
||||
and not line.strip().startswith(comment)
|
||||
):
|
||||
yield Info(
|
||||
"%s: Binding to '0.0.0.0' or '::' can result in a security issue as "
|
||||
"the SSO can be bypassed by knowing a public IP (typically an IPv6) "
|
||||
"and the app port. Please be sure that this behavior is intentional.\n"
|
||||
"Maybe use '127.0.0.1' or '::1' instead." % filename
|
||||
f"{filename}:{number}: Binding to '0.0.0.0' or '::' can result in "
|
||||
"a security issue as the SSO can be bypassed by knowing a public "
|
||||
"IP (typically an IPv6) and the app port. Please be sure that this "
|
||||
"behavior is intentional. Maybe use '127.0.0.1' or '::1' instead."
|
||||
)
|
||||
|
||||
#############################################
|
||||
|
|
Loading…
Reference in a new issue