Posts by edinho • 51 points
4 posts
-
0
votes1
answer40
viewsA: Create a PHP array from a variable and organize decreasingly
In PHP we have the following functions: sort => sorts the array by its value rsort => sorts the array, in reverse order by its value and does not keep the index association asort => sort…
-
2
votes1
answer45
viewsQ: Compile linux kernel module
Hello I’m studying about operating systems, through the book: fundamentals of operating systems. La in cap. 2 talks about kernel modules and shows an example: simple. c #include <linux/init.h>…
-
0
votes0
answers18
views -
3
votes1
answer40
viewsQ: shellcode amended "Segmentation fault"
Well I have a file called test.asm with the code (for windows): section .text global _main extern _printf msg: db "%d", 0 _main: mov eax, 10 add eax, 20 push eax push msg call _printf add esp, 8 ret…