Skip to content

Commit 5f2a4ae

Browse files
Update Dev Tools Notes.txt
1 parent 5eb2867 commit 5f2a4ae

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

Dev Tools Notes.txt

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -767,6 +767,22 @@ nasm -f elf exit_shellcode.asm
767767

768768
objdump -d exit_shellcode
769769

770+
57. Elf Binaries
771+
Section .text
772+
773+
global _start
774+
_start:
775+
mov ebx,0
776+
mov eax,1
777+
int 0x80
778+
779+
Now to use the Nasm Assembler
780+
nasm -f elf exit_shellcode.asm
781+
id -o exit_shellcode exit shellcode.o
782+
783+
Now to Run
784+
objdump -d exit_shellcode
785+
770786

771787

772788

0 commit comments

Comments
 (0)