hueta2
build-and-push / detect (push) Successful in 12s
build-and-push / build (${{ fromJSON(needs.detect.outputs.services) }}) (push) Successful in 25s

This commit is contained in:
frogolonso
2026-08-26 13:06:59 +03:00
parent 2ae70fc165
commit 526374b5a6
4 changed files with 45 additions and 8 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ def safe_username(username):
return False
if "/" in username or "\\" in username or username in (".", ".."):
return False
if "\x00" in username:
if "\x00" in username or any(ord(c) < 0x20 for c in username):
return False
return True