Archived
1
0
This repository has been archived on 2025-01-28. You can view files and clone it, but cannot push or open issues or pull requests.
2022-11-06 18:21:21 +03:00

29 lines
371 B
NASM

format ELF
public _start
extrn network.IP_to_str
extrn network.get_ip
extrn dnstoys.myip
extrn print.str
extrn print.nl
extrn exit
section '.strtab'
hostname db "google.com", 0
section '.text' executable
_start:
call dnstoys.myip
call print.str
call print.nl
push hostname
call network.get_ip
call network.IP_to_str
call print.str
call print.nl
call exit