Skip to content

Instantly share code, notes, and snippets.

@yvan
Last active June 9, 2019 19:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yvan/89bd70d969a9353a66c0181855f5cc85 to your computer and use it in GitHub Desktop.
Save yvan/89bd70d969a9353a66c0181855f5cc85 to your computer and use it in GitHub Desktop.
section .text
global _start
section .data
hash db '1234'
_start:
mov edx,4
mov ecx,hash
mov ebx,1
mov eax,4
int 0x80
mov eax,1
int 0x80
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment