-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsys_write_file.asm
More file actions
57 lines (48 loc) · 847 Bytes
/
sys_write_file.asm
File metadata and controls
57 lines (48 loc) · 847 Bytes
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
; Assembly syscall write with output file by 0pc0de Alchimiste
BITS 64
global _main
section .rodata
path db 'flags.txt', 0
write_file db "Hello", 0
write_file_len equ $-write_file
file_not_exist db "Le fichier n'existe pas.", 0
file_not_exist_len equ $-file_not_exist
file_exist db "Good.", 0
file_exist_len equ $-file_exist
section .text
_main:
mov rax, 2
mov rdi, path
mov rsi, 02
mov rdx, 777
syscall
push rax
cmp rax, 3
je _writing
jmp _file_not_found
_writing:
mov rax, 1
pop rsi
mov rdi,rsi
mov rsi, write_file
mov rdx, write_file_len
syscall
jmp _good
_good:
mov rax, 1
mov rdi, 1
mov rsi, file_exist
mov rdx, file_exist_len
syscall
jmp _exit
_file_not_found:
mov rax, 1
mov rdi, 1
mov rsi, file_not_exist
mov rdx, file_not_exist_len
syscall
jmp _exit
_exit:
mov rax, 0x3C
mov rdi, 0
syscall