From c9cbeced5b3f2bdd7407e29c0811e65954132540 Mon Sep 17 00:00:00 2001 From: Root THC Date: Tue, 24 Feb 2026 12:42:47 +0000 Subject: initial --- other/shellkit/shellkit.h | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 other/shellkit/shellkit.h (limited to 'other/shellkit/shellkit.h') diff --git a/other/shellkit/shellkit.h b/other/shellkit/shellkit.h new file mode 100644 index 0000000..074fd65 --- /dev/null +++ b/other/shellkit/shellkit.h @@ -0,0 +1,31 @@ +/* shellkit.h - main shellcode kit definition file + * + * everything is merged here. + * + * team teso + */ + +#ifndef SHELLKIT_H +#define SHELLKIT_H + +#include "shellcode.h" + +/* individual architectures */ +#include "hppa_hpux.h" +#include "mips_irix.h" +#include "sparc_solaris.h" +#include "x86_bsd.h" +#include "x86_linux.h" + +arch * shellcodes[] = { + &hppa_hpux, + &mips_irix, + &sparc_solaris, + &x86_bsd, + &x86_linux, + NULL, +}; + + +#endif + -- cgit v1.3