├── 14-aug-24.txt ├── README.md ├── SELinux_live_july23.pdf ├── ansible.cfg ├── countdown ├── dec25.txt ├── httpd.conf ├── june25.txt ├── my-VGAuthService.pp ├── my-VGAuthService.te ├── my-kdumpctl.pp ├── my-kdumpctl.te ├── my-legedpy.pp ├── my-legedpy.te ├── my-systemdudevd.pp ├── my-systemdudevd.te ├── my-vmtoolsd.pp ├── my-vmtoolsd.te ├── myapp ├── myapp.service ├── mydaemon.c ├── mydaemon.service ├── myfile ├── rot13.service ├── sander.fc ├── sander.mod ├── sander.pp ├── sander.te ├── server.php ├── setup-rot.sh ├── startrot13 └── using_sepolicy_generate_history.txt /14-aug-24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/selinux/HEAD/14-aug-24.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # selinux 2 | -------------------------------------------------------------------------------- /SELinux_live_july23.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/selinux/HEAD/SELinux_live_july23.pdf -------------------------------------------------------------------------------- /ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/selinux/HEAD/ansible.cfg -------------------------------------------------------------------------------- /countdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/selinux/HEAD/countdown -------------------------------------------------------------------------------- /dec25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/selinux/HEAD/dec25.txt -------------------------------------------------------------------------------- /httpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/selinux/HEAD/httpd.conf -------------------------------------------------------------------------------- /june25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/selinux/HEAD/june25.txt -------------------------------------------------------------------------------- /my-VGAuthService.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/selinux/HEAD/my-VGAuthService.pp -------------------------------------------------------------------------------- /my-VGAuthService.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/selinux/HEAD/my-VGAuthService.te -------------------------------------------------------------------------------- /my-kdumpctl.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/selinux/HEAD/my-kdumpctl.pp -------------------------------------------------------------------------------- /my-kdumpctl.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/selinux/HEAD/my-kdumpctl.te -------------------------------------------------------------------------------- /my-legedpy.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/selinux/HEAD/my-legedpy.pp -------------------------------------------------------------------------------- /my-legedpy.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/selinux/HEAD/my-legedpy.te -------------------------------------------------------------------------------- /my-systemdudevd.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/selinux/HEAD/my-systemdudevd.pp -------------------------------------------------------------------------------- /my-systemdudevd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/selinux/HEAD/my-systemdudevd.te -------------------------------------------------------------------------------- /my-vmtoolsd.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/selinux/HEAD/my-vmtoolsd.pp -------------------------------------------------------------------------------- /my-vmtoolsd.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/selinux/HEAD/my-vmtoolsd.te -------------------------------------------------------------------------------- /myapp: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | while sleep 60 4 | do 5 | echo $(date) >> /tmp/myappfile.txt 6 | done 7 | -------------------------------------------------------------------------------- /myapp.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/selinux/HEAD/myapp.service -------------------------------------------------------------------------------- /mydaemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/selinux/HEAD/mydaemon.c -------------------------------------------------------------------------------- /mydaemon.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/selinux/HEAD/mydaemon.service -------------------------------------------------------------------------------- /myfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rot13.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/selinux/HEAD/rot13.service -------------------------------------------------------------------------------- /sander.fc: -------------------------------------------------------------------------------- 1 | /opt/sander(/.*)? system_u:object_r:httpd_sys_content_t:s0 2 | -------------------------------------------------------------------------------- /sander.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/selinux/HEAD/sander.mod -------------------------------------------------------------------------------- /sander.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/selinux/HEAD/sander.pp -------------------------------------------------------------------------------- /sander.te: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/selinux/HEAD/sander.te -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/selinux/HEAD/server.php -------------------------------------------------------------------------------- /setup-rot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/selinux/HEAD/setup-rot.sh -------------------------------------------------------------------------------- /startrot13: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | systemctl start rot13 4 | -------------------------------------------------------------------------------- /using_sepolicy_generate_history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/selinux/HEAD/using_sepolicy_generate_history.txt --------------------------------------------------------------------------------