Tags: assembly 

Rating:

this time the source is already nasm-friendly, we just have to compile and execute it:

```
[andrei@jacky 15:30:26] ~/Documents/pico/4
——> nasm -f elf32 comp.nasm -o comp.o
[andrei@jacky 15:30:28] ~/Documents/pico/4
——> gcc -m32 -o comp comp.o
[andrei@jacky 15:30:37] ~/Documents/pico/4
——> ./comp
picoCTF{1_h0p3_y0u_c0mP1l3d_tH15_3205858729}
```

Original writeup (https://xnand.github.io/2018/10/22/picoCTF2018-assembly-0-1-2-3-4.html).