├── .gitignore ├── README.md ├── Rhydon1337-tools.md ├── more_stuff.md ├── off-topic └── dot_files.txt ├── pdfs_talks_etc ├── AndroidSecurityResearchIntro-JonathanLevin.pdf ├── android_sec-TOC-JonathanLevin.pdf ├── hijacking the linux kernel 2011 paper.pdf └── offensivecon2023-exploit-engineering-linux-kernel.pdf ├── resources ├── Linux Kernel Resources - eLinux.org.pdf ├── The_linux_process_journey-Shlomi_Boutnaru.pdf ├── kernel_basics_2.6.md └── v2.6_virtual memory manager │ ├── thesis.pdf │ └── understanding the 2_6 linux kernel virtual memory manager.pdf ├── syllabus-subjects ├── LFD440_ Linux Kernel Debugging and Security.pdf ├── The PSCG Embedded Linux Course - 2023.pdf ├── sylabus- Attacking the Linux Kernel - HITBSecConf2023 - Phuket.pdf └── syllabus-kernel_exploitation.pdf ├── videos.md └── xnu_vs_android_kernel.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IdanBanani/Linux-Kernel-VR-Exploitation/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IdanBanani/Linux-Kernel-VR-Exploitation/HEAD/README.md -------------------------------------------------------------------------------- /Rhydon1337-tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IdanBanani/Linux-Kernel-VR-Exploitation/HEAD/Rhydon1337-tools.md -------------------------------------------------------------------------------- /more_stuff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IdanBanani/Linux-Kernel-VR-Exploitation/HEAD/more_stuff.md -------------------------------------------------------------------------------- /off-topic/dot_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IdanBanani/Linux-Kernel-VR-Exploitation/HEAD/off-topic/dot_files.txt -------------------------------------------------------------------------------- /pdfs_talks_etc/AndroidSecurityResearchIntro-JonathanLevin.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IdanBanani/Linux-Kernel-VR-Exploitation/HEAD/pdfs_talks_etc/AndroidSecurityResearchIntro-JonathanLevin.pdf -------------------------------------------------------------------------------- /pdfs_talks_etc/android_sec-TOC-JonathanLevin.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IdanBanani/Linux-Kernel-VR-Exploitation/HEAD/pdfs_talks_etc/android_sec-TOC-JonathanLevin.pdf -------------------------------------------------------------------------------- /pdfs_talks_etc/hijacking the linux kernel 2011 paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IdanBanani/Linux-Kernel-VR-Exploitation/HEAD/pdfs_talks_etc/hijacking the linux kernel 2011 paper.pdf -------------------------------------------------------------------------------- /pdfs_talks_etc/offensivecon2023-exploit-engineering-linux-kernel.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IdanBanani/Linux-Kernel-VR-Exploitation/HEAD/pdfs_talks_etc/offensivecon2023-exploit-engineering-linux-kernel.pdf -------------------------------------------------------------------------------- /resources/Linux Kernel Resources - eLinux.org.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IdanBanani/Linux-Kernel-VR-Exploitation/HEAD/resources/Linux Kernel Resources - eLinux.org.pdf -------------------------------------------------------------------------------- /resources/The_linux_process_journey-Shlomi_Boutnaru.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IdanBanani/Linux-Kernel-VR-Exploitation/HEAD/resources/The_linux_process_journey-Shlomi_Boutnaru.pdf -------------------------------------------------------------------------------- /resources/kernel_basics_2.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IdanBanani/Linux-Kernel-VR-Exploitation/HEAD/resources/kernel_basics_2.6.md -------------------------------------------------------------------------------- /resources/v2.6_virtual memory manager/thesis.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IdanBanani/Linux-Kernel-VR-Exploitation/HEAD/resources/v2.6_virtual memory manager/thesis.pdf -------------------------------------------------------------------------------- /resources/v2.6_virtual memory manager/understanding the 2_6 linux kernel virtual memory manager.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IdanBanani/Linux-Kernel-VR-Exploitation/HEAD/resources/v2.6_virtual memory manager/understanding the 2_6 linux kernel virtual memory manager.pdf -------------------------------------------------------------------------------- /syllabus-subjects/LFD440_ Linux Kernel Debugging and Security.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IdanBanani/Linux-Kernel-VR-Exploitation/HEAD/syllabus-subjects/LFD440_ Linux Kernel Debugging and Security.pdf -------------------------------------------------------------------------------- /syllabus-subjects/The PSCG Embedded Linux Course - 2023.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IdanBanani/Linux-Kernel-VR-Exploitation/HEAD/syllabus-subjects/The PSCG Embedded Linux Course - 2023.pdf -------------------------------------------------------------------------------- /syllabus-subjects/sylabus- Attacking the Linux Kernel - HITBSecConf2023 - Phuket.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IdanBanani/Linux-Kernel-VR-Exploitation/HEAD/syllabus-subjects/sylabus- Attacking the Linux Kernel - HITBSecConf2023 - Phuket.pdf -------------------------------------------------------------------------------- /syllabus-subjects/syllabus-kernel_exploitation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IdanBanani/Linux-Kernel-VR-Exploitation/HEAD/syllabus-subjects/syllabus-kernel_exploitation.pdf -------------------------------------------------------------------------------- /videos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IdanBanani/Linux-Kernel-VR-Exploitation/HEAD/videos.md -------------------------------------------------------------------------------- /xnu_vs_android_kernel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IdanBanani/Linux-Kernel-VR-Exploitation/HEAD/xnu_vs_android_kernel.md --------------------------------------------------------------------------------