Searched refs:deny (Results 1 - 16 of 16) sorted by relevance

/freebsd-11-stable/contrib/wpa/wpa_supplicant/dbus/
H A Ddbus-wpa_supplicant.conf13 <deny own="fi.w1.wpa_supplicant1"/>
14 <deny send_destination="fi.w1.wpa_supplicant1"/>
15 <deny receive_sender="fi.w1.wpa_supplicant1" receive_type="signal"/>
/freebsd-11-stable/release/picobsd/floppy.tree/etc/ppp/
H A Dppp.conf8 deny lqr
/freebsd-11-stable/etc/
H A Drc.firewall86 ${fwcmd} add 200 deny all from any to 127.0.0.0/8
87 ${fwcmd} add 300 deny ip from 127.0.0.0/8 to any
89 ${fwcmd} add 400 deny all from any to ::1
90 ${fwcmd} add 500 deny all from ::1 to any
248 ${fwcmd} add deny tcp from any to any setup
292 ${fwcmd} add deny all from ${inet} to any in via ${oif}
293 ${fwcmd} add deny all from ${onet} to any in via ${iif}
295 ${fwcmd} add deny all from ${inet6} to any in via ${oif6}
297 ${fwcmd} add deny all from ${onet6} to any in \
318 ${fwcmd} add deny al
[all...]
/freebsd-11-stable/tools/tools/tinybsd/conf/firewall/etc/
H A Drc.firewall85 ${fwcmd} add 200 deny all from any to 127.0.0.0/8
86 ${fwcmd} add 300 deny ip from 127.0.0.0/8 to any
177 ${fwcmd} add deny tcp from any to any setup
212 ${fwcmd} add deny all from ${inet}:${imask} to any in via ${oif}
213 ${fwcmd} add deny all from ${onet}:${omask} to any in via ${iif}
216 ${fwcmd} add deny all from any to 10.0.0.0/8 via ${oif}
217 ${fwcmd} add deny all from any to 172.16.0.0/12 via ${oif}
218 ${fwcmd} add deny all from any to 192.168.0.0/16 via ${oif}
223 ${fwcmd} add deny all from any to 0.0.0.0/8 via ${oif}
224 ${fwcmd} add deny al
[all...]
/freebsd-11-stable/tools/tools/tinybsd/conf/wireless/etc/
H A Drc.firewall85 ${fwcmd} add 200 deny all from any to 127.0.0.0/8
86 ${fwcmd} add 300 deny ip from 127.0.0.0/8 to any
177 ${fwcmd} add deny tcp from any to any setup
212 ${fwcmd} add deny all from ${inet}:${imask} to any in via ${oif}
213 ${fwcmd} add deny all from ${onet}:${omask} to any in via ${iif}
216 ${fwcmd} add deny all from any to 10.0.0.0/8 via ${oif}
217 ${fwcmd} add deny all from any to 172.16.0.0/12 via ${oif}
218 ${fwcmd} add deny all from any to 192.168.0.0/16 via ${oif}
223 ${fwcmd} add deny all from any to 0.0.0.0/8 via ${oif}
224 ${fwcmd} add deny al
[all...]
/freebsd-11-stable/crypto/openssh/regress/
H A Dallow-deny-users.sh14 deny="$1"
19 start_sshd -oDenyUsers="$deny" -oAllowUsers="$allow"
H A DMakefile82 allow-deny-users
/freebsd-11-stable/contrib/pjdfstest/tests/granular/
H A D02.t25 expect 0 prependacl ${n0} user:65534:read_acl::deny
107 # ACL and file mode, even if ACL_{READ,WRITE}_ACL would deny it.
110 expect 0 -u 65534 -g 65534 prependacl ${n0} user:65534:write_acl::deny
111 expect 0 -u 65534 -g 65534 prependacl ${n0} user:65534:read_acl::deny
118 expect 0 -u 65534 -g 65534 prependacl ${n0} user:65534:write_acl::deny
119 expect 0 -u 65534 -g 65534 prependacl ${n0} user:65534:read_acl::deny
127 expect 0 prependacl ${n0} everyone@:write_acl::deny
128 expect 0 prependacl ${n0} everyone@:read_acl::deny
135 expect 0 prependacl ${n0} everyone@:write_acl::deny
136 expect 0 prependacl ${n0} everyone@:read_acl::deny
[all...]
H A D03.t31 expect 0 prependacl . user:65534:write_data::deny
44 expect 0 prependacl . user:65534:write_data::deny
52 expect 0 prependacl ${n0} user:65534:delete::deny
63 expect 0 prependacl . user:65534:delete_child::deny
72 # DELETE_CHILD does not deny moving file from elsewhere
100 expect 0 prependacl . user:65534:write_data::deny
101 expect 0 prependacl . user:65534:delete_child::deny
130 expect 0 prependacl ${n0} user:65534:delete::deny
H A D05.t31 expect 0 prependacl . user:65534:write_data::deny
47 expect 0 prependacl . user:65534:write_data::deny
56 expect 0 prependacl ${n0} user:65534:delete::deny
67 expect 0 prependacl . user:65534:delete_child::deny
77 # DELETE_CHILD does not deny moving directory from elsewhere
106 expect 0 prependacl . user:65534:write_data::deny
107 expect 0 prependacl . user:65534:delete_child::deny
145 expect 0 prependacl ${n0} user:65534:delete::deny
H A D01.t25 expect 0 prependacl ${n0} user:65534:read_attributes::deny
H A D00.t38 expect 0 prependacl . user:65534:write_data::allow,user:65534:append_data::deny
74 expect 0 prependacl . user:65534:write_data::deny,user:65534:append_data::allow
/freebsd-11-stable/usr.sbin/cron/lib/
H A Dmisc.c352 FILE *allow, *deny; local
357 deny = NULL;
361 if ((deny = fopen(DENY_FILE, "r")) == NULL && errno != ENOENT)
363 Debug(DMISC, ("allow/deny enabled, %d/%d\n", !!allow, !!deny))
370 else if (deny)
371 isallowed = !in_file(username, deny);
381 if (deny)
382 fclose(deny);
/freebsd-11-stable/usr.sbin/rpcbind/
H A Dsecurity.c251 goto deny;
257 goto deny;
265 goto deny;
272 goto deny;
281 deny:
/freebsd-11-stable/sys/cddl/contrib/opensolaris/common/acl/
H A Dacl_common.c435 ace_make_deny(ace_t *allow, ace_t *deny, int isdir, int isowner) argument
437 (void) memcpy(deny, allow, sizeof (ace_t));
439 deny->a_who = allow->a_who;
441 deny->a_type = ACE_ACCESS_DENIED_ACE_TYPE;
442 deny->a_access_mask ^= ACE_POSIX_SUPPORTED_BITS;
444 deny->a_access_mask ^= ACE_DELETE_CHILD;
446 deny->a_access_mask &= ~(ACE_SYNCHRONIZE | ACE_WRITE_OWNER |
449 deny->a_access_mask |= access_mask_set((allow->a_access_mask &
523 /* allow + deny for each aclent */
527 * stick extra deny o
[all...]
/freebsd-11-stable/contrib/unbound/daemon/
H A Dworker.c1047 enum acl_access deny, enum acl_access refuse,
1050 if(acl == deny) {
1046 deny_refuse(struct comm_point* c, enum acl_access acl, enum acl_access deny, enum acl_access refuse, struct worker* worker, struct comm_reply* repinfo) argument

Completed in 274 milliseconds