Wednesday, September 17, 2014

Super Simple Shell Spawner in C

I needed this code for a project i was working on. Keeping it here for posterity:
#include "stdlib.h"
int main(){
  system("/bin/sh");
}

No comments:

Post a Comment