aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAge
* Update copyright to 2023 (#5664)Libravatar David Fetter2023-02-15
|
* fix buildLibravatar netblue302023-02-14
|
* merges; more on cleaning up esc charsLibravatar netblue302023-02-14
|
* Merge pull request #5613 from layderv/escape-cntrl-sequencesLibravatar netblue302023-02-14
|\ | | | | modif: Escape control characters of the command line
| * Style changesLibravatar layderv2023-02-06
| |
| * Escape control charactersLibravatar layderv2023-01-15
| | | | | | | | | | | | | | | | | | | | | | Names and commands can contain control characters: ``` firejail --name="$(echo -e '\e[31mRed\n\b\b\bText\e[0m')" sleep 10s ``` results in "Text" printed in red. Prevent commands like `--tree` to control the terminal.
* | merges, disable sort.py in profile checks temporarely, two more private-etc ↵Libravatar netblue302023-02-14
| | | | | | | | profiles
* | private-etc: more on gcryptLibravatar netblue302023-02-09
| |
* | private-etc: moving gcrypt from tls-ca to x11 groupLibravatar netblue302023-02-08
| |
* | private-etc: libreoffice, audacity, forzen-bubble, transmission, ↵Libravatar netblue302023-02-08
| | | | | | | | md5sum/sha512sum, more sysutils testing, fix electron-hardened.inc.profile
* | adding machine-id to x11 groupLibravatar netblue302023-02-08
| |
* | build fixLibravatar netblue302023-02-06
| |
* | installing etc-cleanup tool in /usr/lib/firejail directoryLibravatar netblue302023-02-06
| |
* | Merge pull request #5634 from acatton/masterLibravatar netblue302023-02-06
|\ \ | | | | | | feature: Add 'keep-shell-rc' command and option
| * | feature: add 'keep-shell-rc' flag and optionLibravatar Antoine Catton2023-02-03
| | | | | | | | | | | | | | | | | | | | | | | | This fixes #1127. This allow a user to provide their own zshrc/bashrc inside the jail. This is very useful when using firejail to develop and prevent bad pip packages to access your system.
* | | private-etc: pushing vulkan into games groupLibravatar netblue302023-02-06
| | |
* | | private-etc: groups modifiedLibravatar netblue302023-02-05
| | |
* | | private-etc: big profile changesLibravatar netblue302023-02-05
| | |
* | | private-etc: cleanup toolLibravatar netblue302023-02-05
| | |
* | | etc_groups.h: sort groups alphabeticallyLibravatar glitsj162023-02-04
| | |
* | | etc_groups.h: internally sort groups alphabeticallyLibravatar glitsj162023-02-04
|/ /
* | Merge pull request #5578 from layderv/masterLibravatar netblue302023-01-30
|\ \ | | | | | | modif: Prevent sandbox name from containing only digits
| * | Prevent sandbox name from containing only digitsLibravatar layderv2023-01-24
| | | | | | | | | | | | | | | Names should not contain only numbers, as they are used in other commands as PIDs.
* | | private-etc: moved group names to @group syntax; GUI group renamed as @x11 ↵Libravatar netblue302023-01-30
| | | | | | | | | | | | group; added nvidia and X11 directories to @x11 group.
* | | private-etc: corss-distro test for curl, gimp, inkscape, firefox, warzone2100Libravatar netblue302023-01-28
| | |
* | | private-etc: fixesLibravatar netblue302023-01-25
| | |
* | | private-etc: fix man pageLibravatar netblue302023-01-25
| | |
* | | private-etc rework: new man pageLibravatar netblue302023-01-25
| | |
* | | private-etc rework: file groups moved to src/include/etc_groups.h, new ↵Libravatar netblue302023-01-25
| | | | | | | | | | | | groups added
* | | private-etc rework: /etc file groupsLibravatar netblue302023-01-22
| | |
* | | compile fixLibravatar netblue302023-01-20
| | |
* | | private-etc rework: remove hiding blacklisted files in private-etc directory ↵Libravatar netblue302023-01-20
| | | | | | | | | | | | feature
* | | Merge pull request #5600 from kmk3/fix-stop-ddash-shLibravatar netblue302023-01-19
|\ \ \ | | | | | | | | modif: Stop forwarding own double-dash to the shell
| * | | Stop forwarding own double-dash to the shellLibravatar Kelvin M. Klann2023-01-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently, if double-dash ("--") is passed to firejail, it is forwarded to the user shell: $ firejail --debug --noprofile -- echo test 2>&1 | grep -e execvp -e test Building quoted command line: 'echo' 'test' Building quoted command line: 'echo' 'test' Running 'echo' 'test' command through /bin/bash execvp argument 0: /bin/bash execvp argument 1: -c execvp argument 2: -- execvp argument 3: 'echo' 'test' test This causes issues when the user shell does not accept "--" / is not POSIX-compatible: $ /bin/bash -c -- 'echo test' test $ /bin/fish -c -- 'echo test' fish: Unknown command: -- fish: -- ^ Fixes #5599. Relates to #3434. Reported-by: @iltep64 Reported-by: @ferreum
* | | | cleanupLibravatar netblue302023-01-19
| | | |
* | | | mergesLibravatar netblue302023-01-18
|/ / /
* | | Reword CFG_ETC_HIDE_BLACKLISTED explanationLibravatar Kelvin M. Klann2023-01-16
| | | | | | | | | | | | | | | | | | | | | To make it clearer. Added on commit ded50200e ("opt-in: skip blacklisted files in private-etc - #5010, #5230", 2023-01-15) / PR #5591.
* | | Rename etc-no-blacklisted to etc-hide-blacklistedLibravatar Kelvin M. Klann2023-01-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | To avoid boolean confusion (`no-foo no` / `no-foo yes`) in firejail.config: etc-no-blacklisted no etc-no-blacklisted yes Commands used to search and replace: git grep -Ilz -i 'etc.no.blacklisted' -- etc src | xargs -0 -I '{}' sh -c "printf '%s\n' \"\$(sed \ -e 's/etc-no-blacklisted/etc-hide-blacklisted/' \ -e 's/ETC_NO_BLACKLISTED/ETC_HIDE_BLACKLISTED/' \ '{}')\" >'{}'" Added on commit ded50200e ("opt-in: skip blacklisted files in private-etc - #5010, #5230", 2023-01-15) / PR #5591.
* | | Merge pull request #5591 from smitsohu/private-etc-no-blacklistedLibravatar netblue302023-01-15
|\ \ \ | | | | | | | | opt-in: hide blacklisted files in /etc
| * | | opt-in: skip blacklisted files in private-etc - #5010, #5230Libravatar smitsohu2023-01-15
| |/ /
* | | Merge pull request #5563 from glitsj16/linuxqqLibravatar netblue302023-01-15
|\ \ \ | |_|/ |/| | New profiles: linuxqq/qq
| * | Merge branch 'netblue30:master' into linuxqqLibravatar glitsj162023-01-04
| |\|
| * | firecfg: add linuxqq/qqLibravatar glitsj162023-01-03
| | |
* | | fix restrict-namespaces for Debian 10 and olderLibravatar netblue302023-01-14
| | |
* | | bringing back whitelisting /devLibravatar netblue302023-01-14
| | |
* | | Remove --profile-path from --helprusty-snake-patch-1Libravatar rusty-snake2023-01-13
| | | | | | | | | Fixes #5585
* | | rel 0.9.72 testing: disable whitelisting /dev directoryLibravatar netblue302023-01-12
| | |
* | | rel 0.9.72 testingLibravatar netblue302023-01-12
| |/ |/|
* | Merge pull request #5475 from KOLANICH-tools/aa_fixLibravatar netblue302023-01-04
|\ \ | | | | | | A temporary fix to the bug caused by apparmor profiles stacking.
| * | A temporary fix to the bug caused by apparmor profiles stacking.Libravatar KOLANICH2022-11-15
| | |