summaryrefslogtreecommitdiff
path: root/other/shellkit/shellkit.h
diff options
context:
space:
mode:
authorRoot THC2026-02-24 12:42:47 +0000
committerRoot THC2026-02-24 12:42:47 +0000
commitc9cbeced5b3f2bdd7407e29c0811e65954132540 (patch)
treeaefc355416b561111819de159ccbd86c3004cf88 /other/shellkit/shellkit.h
parent073fe4bf9fca6bf40cef2886d75df832ef4b6fca (diff)
initial
Diffstat (limited to 'other/shellkit/shellkit.h')
-rw-r--r--other/shellkit/shellkit.h31
1 files changed, 31 insertions, 0 deletions
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 @@
1/* shellkit.h - main shellcode kit definition file
2 *
3 * everything is merged here.
4 *
5 * team teso
6 */
7
8#ifndef SHELLKIT_H
9#define SHELLKIT_H
10
11#include "shellcode.h"
12
13/* individual architectures */
14#include "hppa_hpux.h"
15#include "mips_irix.h"
16#include "sparc_solaris.h"
17#include "x86_bsd.h"
18#include "x86_linux.h"
19
20arch * shellcodes[] = {
21 &hppa_hpux,
22 &mips_irix,
23 &sparc_solaris,
24 &x86_bsd,
25 &x86_linux,
26 NULL,
27};
28
29
30#endif
31