mirror of
https://github.com/netblue30/firejail.git
synced 2026-05-15 14:16:14 -06:00
[GH-ISSUE #484] noblacklistfor process child #345
Labels
No labels
LTS merge
LTS merge
bug
bug
converted-to-discussion
doc-todo
documentation
duplicate
enhancement
file-transfer
firecfg
firejail-in-firejail
firetools
graphics
help wanted
information_old
installation
invalid
modif
moved
needinfo
networking
notabug
notourbug
old-version
overlayfs
packaging
profile-request
pull-request
question
question_old
removal
runtime-permissions
sandbox-ipc
security
stale
wiki
wiki
wontfix
wordpress
workaround
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: github-starred/firejail#345
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @liloman on GitHub (Apr 27, 2016).
Original GitHub issue: https://github.com/netblue30/firejail/issues/484
Related to the issue #475.
I've been checking the source code briefly and I have noticed how the blacklist mechanism works. (by the way good to have proper comments on the code cause some projects ... :S )
So in order to implement this feature it needs some kind of dynamic approach.
First I'd like to know if it could be developed and then how.
To the later I reckon several options:
Like I said I would like to know if It has a green red first.
Cheers
@netblue30 commented on GitHub (May 1, 2016):
I looked into it, the problem is inotify message from the kernel is asynchronous. By the time you get the message, the program already started. Actually the message has very low priority, you cannot act on it in real time.
I commented out python blacklists in disable-devel.inc, so this will fix your problem for now. I'll add support for globbing in noblacklist command and put real noblacklists in firefox profile.
@netblue30 commented on GitHub (May 7, 2016):
I'll go with python commented out in disable-devel.inc for the upcoming release. I'll revisit the issue for the release after that.
@Fred-Barclay commented on GitHub (May 7, 2016):
Thanks netblue. 😄
@liloman commented on GitHub (May 8, 2016):
That's true.
I haven't though in that kind of issue.
Anyway I should better fix actual bugs reported here first than making new features. ;)