section .data
    filename db "penis.txt", 0
    len equ $-filename
section .text
global _start


_start:
    ;create a file that has read/write access
    mov rax, 2
    mov rdi, 0x200 + 0x2 ; O_CREAT + O_RDWR
    mov rsi, 0o777 ; P_FULLACCESS_ALL
    syscall
    
    mov rdi, rax
    mov rax, 3
    syscall
    
    mov rax, 60
    mov rdi, 0
    syscall

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: