Skip to content

Instantly share code, notes, and snippets.

@Ch3shireDev
Ch3shireDev / httpd.asm
Created October 23, 2017 18:53 — forked from xenomuta/httpd.asm
httpd.asm: Arguably the world smallest web server. ( for GNU/Linux i386. Compile with nasm )
section .text
global _start
_start:
xor eax, eax
xor ebx, ebx
xor esi, esi
jmp _socket
_socket_call: