Adding shellpopscript

This commit is contained in:
Christopher Talib 2020-02-24 19:04:51 +01:00
parent 0ec9bc3d9f
commit d6850e2f6f
3 changed files with 13 additions and 1 deletions

View file

@ -1,3 +1,4 @@
function Rev4(str){
return srt.split(".").reverse().join(".") + ".in-addr.arpa"
return str.split(".").reverse().join(".") + ".in-addr.arpa"
}

BIN
shell Executable file

Binary file not shown.

11
shell.c Normal file
View file

@ -0,0 +1,11 @@
#include <stdio.h>
#include <stdlib.h>
int main() {
char *name[2];
name[0] = "/bin/sh";
name[1] = 0x0;
execve(name[0], name, 0x0);
exit(0);
}