manifest.lua (638B)
1 return { 2 name = "passprompt", 3 developer = "luajitos", 4 version = "1.0.0", 5 category = "system", 6 description = "Administrative password prompt for permission requests", 7 entry = "init.lua", 8 type = "gui", 9 hidden = true, -- Hide from start menu 10 permissions = { 11 "draw", 12 "filesystem", 13 "crypto", 14 "system-all", -- Required to access sys.ADMIN_AppAddPermission and sys.ADMIN_AppAddPath 15 "export" -- Required to export admin.requestPermission and admin.requestPath 16 }, 17 allowedPaths = { 18 "/os/password.hash" -- Read access to password hash file 19 } 20 }