mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
prosodyctl: Verify permissions on directory that certificates are written to
This commit is contained in:
parent
c732b4835f
commit
1dfc20f031
1 changed files with 8 additions and 0 deletions
|
@ -830,6 +830,14 @@ function commands.cert(arg)
|
||||||
if #arg >= 1 and arg[1] ~= "--help" then
|
if #arg >= 1 and arg[1] ~= "--help" then
|
||||||
openssl = require "util.openssl";
|
openssl = require "util.openssl";
|
||||||
lfs = require "lfs";
|
lfs = require "lfs";
|
||||||
|
local cert_dir_attrs = lfs.attributes(cert_basedir);
|
||||||
|
if pposix.getuid() ~= cert_dir_attrs.uid then
|
||||||
|
show_warning("The directory "..cert_basedir.." is not owned by the current user, won't be able to write files to it");
|
||||||
|
return 1;
|
||||||
|
elseif cert_dir_attrs.permissions:match("^%.w..%-..%-.$") then
|
||||||
|
show_warning("The directory "..cert_basedir.." not only writable by its owner");
|
||||||
|
return 1;
|
||||||
|
end
|
||||||
local subcmd = table.remove(arg, 1);
|
local subcmd = table.remove(arg, 1);
|
||||||
if type(cert_commands[subcmd]) == "function" then
|
if type(cert_commands[subcmd]) == "function" then
|
||||||
if not arg[1] then
|
if not arg[1] then
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue