79433827

Date: 2025-02-12 16:43:33
Score: 1
Natty:
Report link

I think its supposed to be _start and not start ` global _start

section .text

_start: mov rax, 0x20000004 mov rdi, 1 lea rsi, [rel msg] mov rdx, msg.len syscall

mov rax, 0x20000001
mov rdi, 0
syscall

section .data

msg: db "Hello, World!", 10 .len: equ $ - msg `

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: theKentoRico