
readelf
List of commands for readelf:
-
readelf:tldr:0f461 readelf: Display the entries in symbol table section of the ELF file, if it has one.$ readelf --symbols ${path-to-binary}try on your machineexplain this command
-
readelf:tldr:17334 readelf: Display all the headers present in the ELF file.$ readelf --headers ${path-to-binary}try on your machineexplain this command
-
readelf:tldr:30537 readelf: Display all information about the ELF file.$ readelf -all ${path-to-binary}try on your machineexplain this command
-
readelf:tldr:9b85d readelf: Display the information contained in the ELF header at the start of the file.$ readelf --file-header ${path-to-binary}try on your machineexplain this command