├── .github └── workflows │ └── codeql-analysis.yml ├── AGENTS.md ├── AUTHORS ├── COPYING ├── COPYING.LIB ├── ChangeLog ├── INSTALL ├── Makefile.am ├── README.md ├── autogen.sh ├── bindings ├── Makefile.am ├── python3 │ ├── Makefile.am │ └── test │ │ ├── Makefile.am │ │ └── capng-test.py ├── src │ ├── Makefile.am │ └── capng_swig.i └── test │ ├── Makefile.am │ └── lib_test.py ├── configure.ac ├── docs ├── Makefile.am ├── capng_apply.3 ├── capng_apply_caps_fd.3 ├── capng_capability_to_name.3 ├── capng_change_id.3 ├── capng_clear.3 ├── capng_fill.3 ├── capng_get_caps_fd.3 ├── capng_get_caps_process.3 ├── capng_get_rootid.3 ├── capng_have_capabilities.3 ├── capng_have_capability.3 ├── capng_lock.3 ├── capng_name_to_capability.3 ├── capng_print_caps_numeric.3 ├── capng_print_caps_text.3 ├── capng_restore_state.3 ├── capng_save_state.3 ├── capng_set_rootid.3 ├── capng_setpid.3 ├── capng_update.3 ├── capng_updatev.3 └── libdrop_ambient.7 ├── libcap-ng.spec ├── m4 ├── Makefile.am └── cap-ng.m4 ├── src ├── Makefile.am ├── cap-ng.c ├── cap-ng.h ├── captab.h ├── libcap-ng.pc.in ├── libdrop_ambient.c ├── lookup_table.c └── test │ ├── Makefile.am │ ├── lib_test.c │ └── thread_test.c └── utils ├── Makefile.am ├── captest.8 ├── captest.c ├── filecap.8 ├── filecap.c ├── netcap.8 ├── netcap.c ├── proc-llist.c ├── proc-llist.h ├── pscap.8 └── pscap.c /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/AGENTS.md -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/COPYING.LIB -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/autogen.sh -------------------------------------------------------------------------------- /bindings/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/bindings/Makefile.am -------------------------------------------------------------------------------- /bindings/python3/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/bindings/python3/Makefile.am -------------------------------------------------------------------------------- /bindings/python3/test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/bindings/python3/test/Makefile.am -------------------------------------------------------------------------------- /bindings/python3/test/capng-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/bindings/python3/test/capng-test.py -------------------------------------------------------------------------------- /bindings/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/bindings/src/Makefile.am -------------------------------------------------------------------------------- /bindings/src/capng_swig.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/bindings/src/capng_swig.i -------------------------------------------------------------------------------- /bindings/test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/bindings/test/Makefile.am -------------------------------------------------------------------------------- /bindings/test/lib_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/bindings/test/lib_test.py -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/configure.ac -------------------------------------------------------------------------------- /docs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/docs/Makefile.am -------------------------------------------------------------------------------- /docs/capng_apply.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/docs/capng_apply.3 -------------------------------------------------------------------------------- /docs/capng_apply_caps_fd.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/docs/capng_apply_caps_fd.3 -------------------------------------------------------------------------------- /docs/capng_capability_to_name.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/docs/capng_capability_to_name.3 -------------------------------------------------------------------------------- /docs/capng_change_id.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/docs/capng_change_id.3 -------------------------------------------------------------------------------- /docs/capng_clear.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/docs/capng_clear.3 -------------------------------------------------------------------------------- /docs/capng_fill.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/docs/capng_fill.3 -------------------------------------------------------------------------------- /docs/capng_get_caps_fd.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/docs/capng_get_caps_fd.3 -------------------------------------------------------------------------------- /docs/capng_get_caps_process.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/docs/capng_get_caps_process.3 -------------------------------------------------------------------------------- /docs/capng_get_rootid.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/docs/capng_get_rootid.3 -------------------------------------------------------------------------------- /docs/capng_have_capabilities.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/docs/capng_have_capabilities.3 -------------------------------------------------------------------------------- /docs/capng_have_capability.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/docs/capng_have_capability.3 -------------------------------------------------------------------------------- /docs/capng_lock.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/docs/capng_lock.3 -------------------------------------------------------------------------------- /docs/capng_name_to_capability.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/docs/capng_name_to_capability.3 -------------------------------------------------------------------------------- /docs/capng_print_caps_numeric.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/docs/capng_print_caps_numeric.3 -------------------------------------------------------------------------------- /docs/capng_print_caps_text.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/docs/capng_print_caps_text.3 -------------------------------------------------------------------------------- /docs/capng_restore_state.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/docs/capng_restore_state.3 -------------------------------------------------------------------------------- /docs/capng_save_state.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/docs/capng_save_state.3 -------------------------------------------------------------------------------- /docs/capng_set_rootid.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/docs/capng_set_rootid.3 -------------------------------------------------------------------------------- /docs/capng_setpid.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/docs/capng_setpid.3 -------------------------------------------------------------------------------- /docs/capng_update.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/docs/capng_update.3 -------------------------------------------------------------------------------- /docs/capng_updatev.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/docs/capng_updatev.3 -------------------------------------------------------------------------------- /docs/libdrop_ambient.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/docs/libdrop_ambient.7 -------------------------------------------------------------------------------- /libcap-ng.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/libcap-ng.spec -------------------------------------------------------------------------------- /m4/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/m4/Makefile.am -------------------------------------------------------------------------------- /m4/cap-ng.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/m4/cap-ng.m4 -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/cap-ng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/src/cap-ng.c -------------------------------------------------------------------------------- /src/cap-ng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/src/cap-ng.h -------------------------------------------------------------------------------- /src/captab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/src/captab.h -------------------------------------------------------------------------------- /src/libcap-ng.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/src/libcap-ng.pc.in -------------------------------------------------------------------------------- /src/libdrop_ambient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/src/libdrop_ambient.c -------------------------------------------------------------------------------- /src/lookup_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/src/lookup_table.c -------------------------------------------------------------------------------- /src/test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/src/test/Makefile.am -------------------------------------------------------------------------------- /src/test/lib_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/src/test/lib_test.c -------------------------------------------------------------------------------- /src/test/thread_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/src/test/thread_test.c -------------------------------------------------------------------------------- /utils/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/utils/Makefile.am -------------------------------------------------------------------------------- /utils/captest.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/utils/captest.8 -------------------------------------------------------------------------------- /utils/captest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/utils/captest.c -------------------------------------------------------------------------------- /utils/filecap.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/utils/filecap.8 -------------------------------------------------------------------------------- /utils/filecap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/utils/filecap.c -------------------------------------------------------------------------------- /utils/netcap.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/utils/netcap.8 -------------------------------------------------------------------------------- /utils/netcap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/utils/netcap.c -------------------------------------------------------------------------------- /utils/proc-llist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/utils/proc-llist.c -------------------------------------------------------------------------------- /utils/proc-llist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/utils/proc-llist.h -------------------------------------------------------------------------------- /utils/pscap.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/utils/pscap.8 -------------------------------------------------------------------------------- /utils/pscap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegrubb/libcap-ng/HEAD/utils/pscap.c --------------------------------------------------------------------------------