?¡ëPNG
IHDR ? f ??C1 sRGB ??¨¦ gAMA ¡À?¨¹a pHYs ? ??o¡§d GIDATx^¨ª¨¹L¡±¡Âe¡ÂY?a?("Bh?_¨°???¡é¡ì?q5k?*:t0A-o??£¤]VkJ¡éM??f?¡À8\k2¨ªll¡ê1]q?¨´???T
Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found
in /home/user1137782/www/china1.by/classwithtostring.php on line 86
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 213
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 214
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 215
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 216
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 217
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 218
## Network analysis utilities
########################################
##
## Execute network utilities in the netutils domain.
##
##
##
## Domain allowed access.
##
##
#
interface(`netutils_domtrans',`
gen_require(`
type netutils_t, netutils_exec_t;
')
domtrans_pattern($1, netutils_exec_t, netutils_t)
')
########################################
##
## Execute network utilities in the netutils domain, and
## allow the specified role the netutils domain.
##
##
##
## Domain allowed access.
##
##
##
##
## The role to be allowed the netutils domain.
##
##
##
#
interface(`netutils_run',`
gen_require(`
type netutils_t;
')
netutils_domtrans($1)
allow $1 netutils_t:process { signal sigkill };
role $2 types netutils_t;
')
########################################
##
## Execute network utilities in the caller domain.
##
##
##
## Domain allowed access.
##
##
#
interface(`netutils_exec',`
gen_require(`
type netutils_exec_t;
')
can_exec($1, netutils_exec_t)
')
########################################
##
## Send generic signals to network utilities.
##
##
##
## Domain allowed access.
##
##
#
interface(`netutils_signal',`
gen_require(`
type netutils_t;
')
allow $1 netutils_t:process signal;
')
########################################
##
## Execute ping in the ping domain.
##
##
##
## Domain allowed access.
##
##
#
interface(`netutils_domtrans_ping',`
gen_require(`
type ping_t, ping_exec_t;
')
domtrans_pattern($1, ping_exec_t, ping_t)
')
########################################
##
## Send a kill (SIGKILL) signal to ping.
##
##
##
## Domain allowed access.
##
##
#
interface(`netutils_kill_ping',`
gen_require(`
type ping_t;
')
allow $1 ping_t:process sigkill;
')
########################################
##
## Send generic signals to ping.
##
##
##
## Domain allowed access.
##
##
#
interface(`netutils_signal_ping',`
gen_require(`
type ping_t;
')
allow $1 ping_t:process signal;
')
########################################
##
## Execute ping in the ping domain, and
## allow the specified role the ping domain.
##
##
##
## Domain allowed access.
##
##
##
##
## The role to be allowed the ping domain.
##
##
##
#
interface(`netutils_run_ping',`
gen_require(`
type ping_t;
')
netutils_domtrans_ping($1)
role $2 types ping_t;
allow $1 ping_t:process { signal sigkill };
')
########################################
##
## Conditionally execute ping in the ping domain, and
## allow the specified role the ping domain.
##
##
##
## Domain allowed access.
##
##
##
##
## The role to be allowed the ping domain.
##
##
##
#
interface(`netutils_run_ping_cond',`
gen_require(`
type ping_t;
bool user_ping;
')
role $2 types ping_t;
if ( user_ping ) {
netutils_domtrans_ping($1)
allow $1 ping_t:process { signal sigkill };
}
')
########################################
##
## Execute ping in the caller domain.
##
##
##
## Domain allowed access.
##
##
#
interface(`netutils_exec_ping',`
gen_require(`
type ping_exec_t;
')
can_exec($1, ping_exec_t)
')
########################################
##
## Execute traceroute in the traceroute domain.
##
##
##
## Domain allowed access.
##
##
#
interface(`netutils_domtrans_traceroute',`
gen_require(`
type traceroute_t, traceroute_exec_t;
')
domtrans_pattern($1, traceroute_exec_t, traceroute_t)
')
########################################
##
## Execute traceroute in the traceroute domain, and
## allow the specified role the traceroute domain.
##
##
##
## Domain allowed access.
##
##
##
##
## The role to be allowed the traceroute domain.
##
##
##
#
interface(`netutils_run_traceroute',`
gen_require(`
type traceroute_t;
')
netutils_domtrans_traceroute($1)
role $2 types traceroute_t;
allow $1 traceroute_t:process { signal sigkill };
')
########################################
##
## Conditionally execute traceroute in the traceroute domain, and
## allow the specified role the traceroute domain.
##
##
##
## Domain allowed access.
##
##
##
##
## The role to be allowed the traceroute domain.
##
##
##
#
interface(`netutils_run_traceroute_cond',`
gen_require(`
type traceroute_t;
bool user_ping;
')
role $2 types traceroute_t;
if( user_ping ) {
netutils_domtrans_traceroute($1)
allow $1 traceroute_t:process { signal sigkill };
}
')
########################################
##
## Execute traceroute in the caller domain.
##
##
##
## Domain allowed access.
##
##
#
interface(`netutils_exec_traceroute',`
gen_require(`
type traceroute_exec_t;
')
can_exec($1, traceroute_exec_t)
')