Skip to content

Latest commit

 

History

History
15 lines (8 loc) · 623 Bytes

File metadata and controls

15 lines (8 loc) · 623 Bytes

Reversing a "Hello World" C program

  • To start you can either 'gcc' hello-world.c or you can just download the precompiled one in this repository.

loadingFile

  1. First drop your file into IDA PRO, and make sure that the filetype selected is 'ELF64 for x86-64 (Executable) [elf64.l64]' and that the processor type is 'MetaPC', then press OK.

selectProximityView

  1. If available select 'No' to view without proximity view.

main()Decompiled

  1. There it is! The disassembled version of your compiled "Hello World!" c program.