├── .github └── workflows │ └── build.yml ├── .gitignore ├── Makefile ├── README.md ├── doc └── ru_LSM_BPF_pwnkit.pdf ├── share ├── Makefile └── check_argc0_lsm.service.tmpl ├── src ├── Makefile ├── check_argc0_lsm.c ├── common.h └── load_check_argc0_lsm.c └── test ├── .gitignore ├── Makefile ├── test.c └── trigger.c /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evdenis/lsm_bpf_check_argc0/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evdenis/lsm_bpf_check_argc0/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evdenis/lsm_bpf_check_argc0/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evdenis/lsm_bpf_check_argc0/HEAD/README.md -------------------------------------------------------------------------------- /doc/ru_LSM_BPF_pwnkit.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evdenis/lsm_bpf_check_argc0/HEAD/doc/ru_LSM_BPF_pwnkit.pdf -------------------------------------------------------------------------------- /share/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evdenis/lsm_bpf_check_argc0/HEAD/share/Makefile -------------------------------------------------------------------------------- /share/check_argc0_lsm.service.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evdenis/lsm_bpf_check_argc0/HEAD/share/check_argc0_lsm.service.tmpl -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evdenis/lsm_bpf_check_argc0/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/check_argc0_lsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evdenis/lsm_bpf_check_argc0/HEAD/src/check_argc0_lsm.c -------------------------------------------------------------------------------- /src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evdenis/lsm_bpf_check_argc0/HEAD/src/common.h -------------------------------------------------------------------------------- /src/load_check_argc0_lsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evdenis/lsm_bpf_check_argc0/HEAD/src/load_check_argc0_lsm.c -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evdenis/lsm_bpf_check_argc0/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evdenis/lsm_bpf_check_argc0/HEAD/test/test.c -------------------------------------------------------------------------------- /test/trigger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evdenis/lsm_bpf_check_argc0/HEAD/test/trigger.c --------------------------------------------------------------------------------