summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2015-11-10 08:36:52 -0500
committerLibravatar netblue30 <netblue30@yahoo.com>2015-11-10 08:36:52 -0500
commit060697b6960c48060adb78bb073053ebc106ddc2 (patch)
treeccbc5f52bc16c2028ab25b6b856e71b4c535a499 /README.md
parentadded dnscrypt-proxy and unbound profiles (diff)
downloadfirejail-060697b6960c48060adb78bb073053ebc106ddc2.tar.gz
firejail-060697b6960c48060adb78bb073053ebc106ddc2.tar.zst
firejail-060697b6960c48060adb78bb073053ebc106ddc2.zip
added --noblacklist option
Diffstat (limited to 'README.md')
-rw-r--r--README.md15
1 files changed, 15 insertions, 0 deletions
diff --git a/README.md b/README.md
index eb4a1c21b..6d244f8da 100644
--- a/README.md
+++ b/README.md
@@ -63,3 +63,18 @@ If you are using a plugin or extension that requires other directories, please o
63### New security profiles: 63### New security profiles:
64New profiles introduced in this version: unbound, dnscrypt-proxy 64New profiles introduced in this version: unbound, dnscrypt-proxy
65 65
66### --noblacklist
67`````
68 --noblacklist=dirname_or_filename
69 Disable blacklist for this directory or file.
70
71 Example:
72 $ firejail
73 $ nc dict.org 2628
74 bash: /bin/nc: Permission denied
75 $ exit
76
77 $ firejail --noblacklist=/bin/nc
78 $ nc dict.org 2628
79 220 pan.alephnull.com dictd 1.12.1/rf on Linux 3.14-1-amd64
80`````