diff options
author | Sven Vermeulen <sven.vermeulen@siphos.be> | 2012-04-21 20:07:46 +0200 |
---|---|---|
committer | Sven Vermeulen <sven.vermeulen@siphos.be> | 2012-04-21 20:07:46 +0200 |
commit | 3962a6834f4e7ef04441de4f3134ff329d8602f9 (patch) | |
tree | cae07463edd5b609a97513e00d63e1bd410cc8bb /policy/modules/contrib/awstats.if | |
parent | Initial commit (diff) | |
download | hardened-refpolicy-3962a6834f4e7ef04441de4f3134ff329d8602f9.tar.gz hardened-refpolicy-3962a6834f4e7ef04441de4f3134ff329d8602f9.tar.bz2 hardened-refpolicy-3962a6834f4e7ef04441de4f3134ff329d8602f9.zip |
Pushing 2.20120215 (current version)
Diffstat (limited to 'policy/modules/contrib/awstats.if')
-rw-r--r-- | policy/modules/contrib/awstats.if | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/policy/modules/contrib/awstats.if b/policy/modules/contrib/awstats.if new file mode 100644 index 00000000..283ff0d1 --- /dev/null +++ b/policy/modules/contrib/awstats.if @@ -0,0 +1,42 @@ +## <summary> +## AWStats is a free powerful and featureful tool that generates advanced +## web, streaming, ftp or mail server statistics, graphically. +## </summary> + +######################################## +## <summary> +## Read and write awstats unnamed pipes. +## </summary> +## <param name="domain"> +## <summary> +## Domain allowed access. +## </summary> +## </param> +# +interface(`awstats_rw_pipes',` + gen_require(` + type awstats_t; + ') + + allow $1 awstats_t:fifo_file rw_fifo_file_perms; +') + +######################################## +## <summary> +## Execute awstats cgi scripts in the caller domain. +## </summary> +## <param name="domain"> +## <summary> +## Domain allowed access. +## </summary> +## </param> +# +interface(`awstats_cgi_exec',` + gen_require(` + type httpd_awstats_script_exec_t, httpd_awstats_content_t; + ') + + allow $1 httpd_awstats_content_t:dir search_dir_perms; + allow $1 httpd_awstats_script_exec_t:dir search_dir_perms; + can_exec($1, httpd_awstats_script_exec_t) +') |