浏览代码

ht: limit directory size to 64 chars

Miraty 2 年之前
父节点
当前提交
938dbe4040
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      fn/ht.php

+ 1 - 1
fn/ht.php

@@ -16,7 +16,7 @@ function listFsDirs($username) {
 	$absoluteDirs = glob(CONF['ht']['ht_path'] . "/" . $username . "/*/", GLOB_ONLYDIR);
 	$dirs = [];
 	foreach ($absoluteDirs as $absoluteDir)
-		if (preg_match("/^[\p{L}\p{N}_-]+$/u", basename($absoluteDir)))
+		if (preg_match('/^[\p{L}\p{N}_-]{1,64}$/u', basename($absoluteDir)))
 			array_push($dirs, basename($absoluteDir));
 	return $dirs;
 }