diff options
| -rw-r--r-- | md/writeup.md | 3 | ||||
| -rw-r--r-- | md/writeup/compile_linux_kernel.md | 3 | 
2 files changed, 4 insertions, 2 deletions
diff --git a/md/writeup.md b/md/writeup.md index c3e3e7b..038d2f4 100644 --- a/md/writeup.md +++ b/md/writeup.md @@ -6,13 +6,14 @@  [Using mitmproxy](writeup/mitmproxy.md)    [Linux syscall table](notes/syscalls.md)     [Using GDB](writeup/using_gdb.md)   -[Compile Linux Kernel](writeup/compile_linux_kernel.md)    [QEMU usage](writeup/qemu_usage.md)    [Multiboot USB drive](writeup/multiboot_usb_drive.md)    [Solving crackmes](writeup/crackme.md)    [Using iptables](writeup/using_iptables.md)    [GCC inline assembly](writeup/gcc_inline_assembly.md)   +[Compile Linux Kernel](writeup/compile_linux_kernel.md)    [Kernel:Hello World](writeup/kernel_hello_world.md)   +[Kernel:Debug messages](writeup/kernel_debug_messages.md)    ## Projects diff --git a/md/writeup/compile_linux_kernel.md b/md/writeup/compile_linux_kernel.md index 821b46c..52fa7d9 100644 --- a/md/writeup/compile_linux_kernel.md +++ b/md/writeup/compile_linux_kernel.md @@ -111,7 +111,6 @@ All of this should be enought to run kernel with qemu  ## Compile module  --> -  ## Linux patches @@ -121,6 +120,8 @@ Linux security enhancments  https://grsecurity.net/ +Latest patches could be downloaded from https://grsecurity.net/download.php#test +  ### Tomoyo  MAC based securty mechanism  | 
