Guest User

Untitled

a guest
Jul 17th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <unistd.h>
  3.  
  4. void main(){
  5. setuid(0);
  6. getuid(0);
  7. execl("/bin/sh", "sh", 0);
  8. }
Add Comment
Please, Sign In to add comment