blob: 074fd654a0ef98e00ce9a607881ee2e99566301e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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
|