├── .clang-format ├── .gitattributes ├── .github └── workflows │ ├── c-cpp.yml │ └── codeql-analysis.yml ├── .gitignore ├── .vscode ├── c_cpp_properties.json ├── launch.json ├── settings.json └── tasks.json ├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── ario └── ario.hpp ├── cmake └── elfioConfig.cmake.in ├── doc ├── elfio.docx ├── elfio.pdf ├── images │ ├── annot-close.png │ ├── annot-open.png │ ├── blank.png │ ├── callouts │ │ ├── 1.gif │ │ ├── 1.png │ │ ├── 1.svg │ │ ├── 10.gif │ │ ├── 10.png │ │ ├── 10.svg │ │ ├── 11.gif │ │ ├── 11.png │ │ ├── 11.svg │ │ ├── 12.gif │ │ ├── 12.png │ │ ├── 12.svg │ │ ├── 13.gif │ │ ├── 13.png │ │ ├── 13.svg │ │ ├── 14.gif │ │ ├── 14.png │ │ ├── 14.svg │ │ ├── 15.gif │ │ ├── 15.png │ │ ├── 15.svg │ │ ├── 16.svg │ │ ├── 17.svg │ │ ├── 18.svg │ │ ├── 19.svg │ │ ├── 2.gif │ │ ├── 2.png │ │ ├── 2.svg │ │ ├── 20.svg │ │ ├── 21.svg │ │ ├── 22.svg │ │ ├── 23.svg │ │ ├── 24.svg │ │ ├── 25.svg │ │ ├── 26.svg │ │ ├── 27.svg │ │ ├── 28.svg │ │ ├── 29.svg │ │ ├── 3.gif │ │ ├── 3.png │ │ ├── 3.svg │ │ ├── 30.svg │ │ ├── 4.gif │ │ ├── 4.png │ │ ├── 4.svg │ │ ├── 5.gif │ │ ├── 5.png │ │ ├── 5.svg │ │ ├── 6.gif │ │ ├── 6.png │ │ ├── 6.svg │ │ ├── 7.gif │ │ ├── 7.png │ │ ├── 7.svg │ │ ├── 8.gif │ │ ├── 8.png │ │ ├── 8.svg │ │ ├── 9.gif │ │ ├── 9.png │ │ └── 9.svg │ ├── caution.gif │ ├── caution.png │ ├── caution.svg │ ├── caution.tif │ ├── colorsvg │ │ ├── caution.svg │ │ ├── home.svg │ │ ├── important.svg │ │ ├── next.svg │ │ ├── note.svg │ │ ├── prev.svg │ │ ├── tip.svg │ │ ├── up.svg │ │ └── warning.svg │ ├── draft.png │ ├── home.gif │ ├── home.png │ ├── home.svg │ ├── important.gif │ ├── important.png │ ├── important.svg │ ├── important.tif │ ├── next.gif │ ├── next.png │ ├── next.svg │ ├── note.gif │ ├── note.png │ ├── note.svg │ ├── note.tif │ ├── prev.gif │ ├── prev.png │ ├── prev.svg │ ├── res │ │ ├── 20231119165006-100.png │ │ └── title.png │ ├── res2 │ │ ├── 20231119095119.jpg │ │ ├── 20231119095351.jpg │ │ ├── 20231119095425.jpg │ │ ├── 20231119095558.jpg │ │ ├── 20231119095613.jpg │ │ ├── 20231119095721.jpg │ │ ├── 20231119095920.jpg │ │ ├── 20231119095932.jpg │ │ ├── 20231119095944.jpg │ │ ├── 20231119100133.jpg │ │ ├── 20231119100142.jpg │ │ ├── 20231119165006-1.jpg │ │ ├── 20231119165006-256.png │ │ ├── 20231119165006.jpg │ │ ├── 20231119165016.jpg │ │ ├── 20231119165024.jpg │ │ ├── 20231119165842.jpg │ │ ├── 20231119165851.jpg │ │ ├── 20231119165907.jpg │ │ ├── 20231119165912.jpg │ │ └── iceland.jpeg │ ├── tip.gif │ ├── tip.png │ ├── tip.svg │ ├── tip.tif │ ├── toc-blank.png │ ├── toc-minus.png │ ├── toc-plus.png │ ├── up.gif │ ├── up.png │ ├── up.svg │ ├── warning.gif │ ├── warning.png │ ├── warning.svg │ └── warning.tif └── site │ ├── index.htm │ └── style.css ├── elfio ├── elf_types.hpp ├── elfio.hpp ├── elfio_array.hpp ├── elfio_dump.hpp ├── elfio_dynamic.hpp ├── elfio_header.hpp ├── elfio_modinfo.hpp ├── elfio_note.hpp ├── elfio_relocation.hpp ├── elfio_section.hpp ├── elfio_segment.hpp ├── elfio_strings.hpp ├── elfio_symbols.hpp ├── elfio_utils.hpp ├── elfio_version.hpp └── elfio_versym.hpp ├── examples ├── CMakeLists.txt ├── add_section │ ├── CMakeLists.txt │ └── add_section.cpp ├── anonymizer │ ├── CMakeLists.txt │ └── anonymizer.cpp ├── arion │ ├── CMakeLists.txt │ └── arion.cpp ├── arioso │ ├── CMakeLists.txt │ └── arioso.cpp ├── c_wrapper │ ├── CMakeLists.txt │ ├── c_example.c │ ├── elfio_c_wrapper.cpp │ └── elfio_c_wrapper.h ├── elfdump │ ├── CMakeLists.txt │ └── elfdump.cpp ├── elfio_ldd │ ├── CMakeLists.txt │ └── elfio_ldd.cpp ├── proc_mem │ ├── CMakeLists.txt │ └── proc_mem.cpp ├── sudo_gdb.sh ├── tutorial │ ├── CMakeLists.txt │ └── tutorial.cpp ├── write_obj │ ├── CMakeLists.txt │ └── write_obj.cpp └── writer │ ├── CMakeLists.txt │ └── writer.cpp └── tests ├── ARIOTest.cpp ├── CMakeLists.txt ├── ELFIOTest.cpp ├── ELFIOTest1.cpp ├── ELFIOTest2.cpp ├── ario ├── empty.a ├── invalid_magic.a ├── libgcov.a ├── long_name.a └── simple_text.a ├── elf_examples ├── 64bitLOAD.elf ├── ARMSCII-8.so ├── arm_v7m_test_debug.elf ├── arm_v7m_test_release.elf ├── asm ├── asm.lst ├── asm.o ├── asm.readelf ├── asm.s ├── asm64 ├── asm64.lst ├── asm64.o ├── crash-060833f08dc14d1712428742b3cad7af17b36bb7 ├── crash-7d695153fd8052529d480c2352d4ada33a44bada ├── crash-b82f05b0b25c8fdc98480e6d76b6d5f9164ae2bc ├── crash-e1ce7cecf01cf800397a4302854d9d76fa19763c ├── crash-e3c41070342cf84dea077356ddbb8ebf4326a601 ├── crash.elf ├── ctors ├── elf_header_i386_32.elf ├── entropy.so ├── hello.c ├── hello_32 ├── hello_32.o ├── hello_32.txt ├── hello_32_o.txt ├── hello_64 ├── hello_64.o ├── hello_64.txt ├── hello_64_o.txt ├── hello_arm ├── hello_arm.o ├── hello_arm_stripped ├── helloworld.rpx ├── libfunc.so ├── libfunc32.so ├── libversion_d.so ├── main ├── main32 ├── mismatched_segments.elf ├── null_endianess_convertor ├── ppc-32bit-specimen3.elf ├── read_write_arm_elf32_input ├── startup.eln ├── startup_orig.eln ├── test_ppc ├── test_ppc.cpp ├── test_ppc.o ├── test_ppc.txt ├── test_ppc_o.txt ├── version_d.cpp ├── version_d.map ├── write_exe_i386_32_match ├── write_exe_i386_32_work_dump.txt ├── write_obj_i386_32_match.o ├── write_obj_i386_64_match.o ├── x86_64_static └── zavl.ko ├── elfio_fuzzer.cpp └── runELFtests /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.a binary 2 | -------------------------------------------------------------------------------- /.github/workflows/c-cpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/.github/workflows/c-cpp.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/README.md -------------------------------------------------------------------------------- /ario/ario.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/ario/ario.hpp -------------------------------------------------------------------------------- /cmake/elfioConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/cmake/elfioConfig.cmake.in -------------------------------------------------------------------------------- /doc/elfio.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/elfio.docx -------------------------------------------------------------------------------- /doc/elfio.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/elfio.pdf -------------------------------------------------------------------------------- /doc/images/annot-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/annot-close.png -------------------------------------------------------------------------------- /doc/images/annot-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/annot-open.png -------------------------------------------------------------------------------- /doc/images/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/blank.png -------------------------------------------------------------------------------- /doc/images/callouts/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/1.gif -------------------------------------------------------------------------------- /doc/images/callouts/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/1.png -------------------------------------------------------------------------------- /doc/images/callouts/1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/1.svg -------------------------------------------------------------------------------- /doc/images/callouts/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/10.gif -------------------------------------------------------------------------------- /doc/images/callouts/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/10.png -------------------------------------------------------------------------------- /doc/images/callouts/10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/10.svg -------------------------------------------------------------------------------- /doc/images/callouts/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/11.gif -------------------------------------------------------------------------------- /doc/images/callouts/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/11.png -------------------------------------------------------------------------------- /doc/images/callouts/11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/11.svg -------------------------------------------------------------------------------- /doc/images/callouts/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/12.gif -------------------------------------------------------------------------------- /doc/images/callouts/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/12.png -------------------------------------------------------------------------------- /doc/images/callouts/12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/12.svg -------------------------------------------------------------------------------- /doc/images/callouts/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/13.gif -------------------------------------------------------------------------------- /doc/images/callouts/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/13.png -------------------------------------------------------------------------------- /doc/images/callouts/13.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/13.svg -------------------------------------------------------------------------------- /doc/images/callouts/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/14.gif -------------------------------------------------------------------------------- /doc/images/callouts/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/14.png -------------------------------------------------------------------------------- /doc/images/callouts/14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/14.svg -------------------------------------------------------------------------------- /doc/images/callouts/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/15.gif -------------------------------------------------------------------------------- /doc/images/callouts/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/15.png -------------------------------------------------------------------------------- /doc/images/callouts/15.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/15.svg -------------------------------------------------------------------------------- /doc/images/callouts/16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/16.svg -------------------------------------------------------------------------------- /doc/images/callouts/17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/17.svg -------------------------------------------------------------------------------- /doc/images/callouts/18.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/18.svg -------------------------------------------------------------------------------- /doc/images/callouts/19.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/19.svg -------------------------------------------------------------------------------- /doc/images/callouts/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/2.gif -------------------------------------------------------------------------------- /doc/images/callouts/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/2.png -------------------------------------------------------------------------------- /doc/images/callouts/2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/2.svg -------------------------------------------------------------------------------- /doc/images/callouts/20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/20.svg -------------------------------------------------------------------------------- /doc/images/callouts/21.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/21.svg -------------------------------------------------------------------------------- /doc/images/callouts/22.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/22.svg -------------------------------------------------------------------------------- /doc/images/callouts/23.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/23.svg -------------------------------------------------------------------------------- /doc/images/callouts/24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/24.svg -------------------------------------------------------------------------------- /doc/images/callouts/25.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/25.svg -------------------------------------------------------------------------------- /doc/images/callouts/26.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/26.svg -------------------------------------------------------------------------------- /doc/images/callouts/27.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/27.svg -------------------------------------------------------------------------------- /doc/images/callouts/28.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/28.svg -------------------------------------------------------------------------------- /doc/images/callouts/29.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/29.svg -------------------------------------------------------------------------------- /doc/images/callouts/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/3.gif -------------------------------------------------------------------------------- /doc/images/callouts/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/3.png -------------------------------------------------------------------------------- /doc/images/callouts/3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/3.svg -------------------------------------------------------------------------------- /doc/images/callouts/30.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/30.svg -------------------------------------------------------------------------------- /doc/images/callouts/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/4.gif -------------------------------------------------------------------------------- /doc/images/callouts/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/4.png -------------------------------------------------------------------------------- /doc/images/callouts/4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/4.svg -------------------------------------------------------------------------------- /doc/images/callouts/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/5.gif -------------------------------------------------------------------------------- /doc/images/callouts/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/5.png -------------------------------------------------------------------------------- /doc/images/callouts/5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/5.svg -------------------------------------------------------------------------------- /doc/images/callouts/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/6.gif -------------------------------------------------------------------------------- /doc/images/callouts/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/6.png -------------------------------------------------------------------------------- /doc/images/callouts/6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/6.svg -------------------------------------------------------------------------------- /doc/images/callouts/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/7.gif -------------------------------------------------------------------------------- /doc/images/callouts/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/7.png -------------------------------------------------------------------------------- /doc/images/callouts/7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/7.svg -------------------------------------------------------------------------------- /doc/images/callouts/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/8.gif -------------------------------------------------------------------------------- /doc/images/callouts/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/8.png -------------------------------------------------------------------------------- /doc/images/callouts/8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/8.svg -------------------------------------------------------------------------------- /doc/images/callouts/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/9.gif -------------------------------------------------------------------------------- /doc/images/callouts/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/9.png -------------------------------------------------------------------------------- /doc/images/callouts/9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/callouts/9.svg -------------------------------------------------------------------------------- /doc/images/caution.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/caution.gif -------------------------------------------------------------------------------- /doc/images/caution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/caution.png -------------------------------------------------------------------------------- /doc/images/caution.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/caution.svg -------------------------------------------------------------------------------- /doc/images/caution.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/caution.tif -------------------------------------------------------------------------------- /doc/images/colorsvg/caution.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/colorsvg/caution.svg -------------------------------------------------------------------------------- /doc/images/colorsvg/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/colorsvg/home.svg -------------------------------------------------------------------------------- /doc/images/colorsvg/important.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/colorsvg/important.svg -------------------------------------------------------------------------------- /doc/images/colorsvg/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/colorsvg/next.svg -------------------------------------------------------------------------------- /doc/images/colorsvg/note.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/colorsvg/note.svg -------------------------------------------------------------------------------- /doc/images/colorsvg/prev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/colorsvg/prev.svg -------------------------------------------------------------------------------- /doc/images/colorsvg/tip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/colorsvg/tip.svg -------------------------------------------------------------------------------- /doc/images/colorsvg/up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/colorsvg/up.svg -------------------------------------------------------------------------------- /doc/images/colorsvg/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/colorsvg/warning.svg -------------------------------------------------------------------------------- /doc/images/draft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/draft.png -------------------------------------------------------------------------------- /doc/images/home.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/home.gif -------------------------------------------------------------------------------- /doc/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/home.png -------------------------------------------------------------------------------- /doc/images/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/home.svg -------------------------------------------------------------------------------- /doc/images/important.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/important.gif -------------------------------------------------------------------------------- /doc/images/important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/important.png -------------------------------------------------------------------------------- /doc/images/important.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/important.svg -------------------------------------------------------------------------------- /doc/images/important.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/important.tif -------------------------------------------------------------------------------- /doc/images/next.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/next.gif -------------------------------------------------------------------------------- /doc/images/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/next.png -------------------------------------------------------------------------------- /doc/images/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/next.svg -------------------------------------------------------------------------------- /doc/images/note.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/note.gif -------------------------------------------------------------------------------- /doc/images/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/note.png -------------------------------------------------------------------------------- /doc/images/note.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/note.svg -------------------------------------------------------------------------------- /doc/images/note.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/note.tif -------------------------------------------------------------------------------- /doc/images/prev.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/prev.gif -------------------------------------------------------------------------------- /doc/images/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/prev.png -------------------------------------------------------------------------------- /doc/images/prev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/prev.svg -------------------------------------------------------------------------------- /doc/images/res/20231119165006-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/res/20231119165006-100.png -------------------------------------------------------------------------------- /doc/images/res/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/res/title.png -------------------------------------------------------------------------------- /doc/images/res2/20231119095119.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/res2/20231119095119.jpg -------------------------------------------------------------------------------- /doc/images/res2/20231119095351.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/res2/20231119095351.jpg -------------------------------------------------------------------------------- /doc/images/res2/20231119095425.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/res2/20231119095425.jpg -------------------------------------------------------------------------------- /doc/images/res2/20231119095558.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/res2/20231119095558.jpg -------------------------------------------------------------------------------- /doc/images/res2/20231119095613.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/res2/20231119095613.jpg -------------------------------------------------------------------------------- /doc/images/res2/20231119095721.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/res2/20231119095721.jpg -------------------------------------------------------------------------------- /doc/images/res2/20231119095920.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/res2/20231119095920.jpg -------------------------------------------------------------------------------- /doc/images/res2/20231119095932.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/res2/20231119095932.jpg -------------------------------------------------------------------------------- /doc/images/res2/20231119095944.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/res2/20231119095944.jpg -------------------------------------------------------------------------------- /doc/images/res2/20231119100133.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/res2/20231119100133.jpg -------------------------------------------------------------------------------- /doc/images/res2/20231119100142.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/res2/20231119100142.jpg -------------------------------------------------------------------------------- /doc/images/res2/20231119165006-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/res2/20231119165006-1.jpg -------------------------------------------------------------------------------- /doc/images/res2/20231119165006-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/res2/20231119165006-256.png -------------------------------------------------------------------------------- /doc/images/res2/20231119165006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/res2/20231119165006.jpg -------------------------------------------------------------------------------- /doc/images/res2/20231119165016.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/res2/20231119165016.jpg -------------------------------------------------------------------------------- /doc/images/res2/20231119165024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/res2/20231119165024.jpg -------------------------------------------------------------------------------- /doc/images/res2/20231119165842.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/res2/20231119165842.jpg -------------------------------------------------------------------------------- /doc/images/res2/20231119165851.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/res2/20231119165851.jpg -------------------------------------------------------------------------------- /doc/images/res2/20231119165907.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/res2/20231119165907.jpg -------------------------------------------------------------------------------- /doc/images/res2/20231119165912.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/res2/20231119165912.jpg -------------------------------------------------------------------------------- /doc/images/res2/iceland.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/res2/iceland.jpeg -------------------------------------------------------------------------------- /doc/images/tip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/tip.gif -------------------------------------------------------------------------------- /doc/images/tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/tip.png -------------------------------------------------------------------------------- /doc/images/tip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/tip.svg -------------------------------------------------------------------------------- /doc/images/tip.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/tip.tif -------------------------------------------------------------------------------- /doc/images/toc-blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/toc-blank.png -------------------------------------------------------------------------------- /doc/images/toc-minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/toc-minus.png -------------------------------------------------------------------------------- /doc/images/toc-plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/toc-plus.png -------------------------------------------------------------------------------- /doc/images/up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/up.gif -------------------------------------------------------------------------------- /doc/images/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/up.png -------------------------------------------------------------------------------- /doc/images/up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/up.svg -------------------------------------------------------------------------------- /doc/images/warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/warning.gif -------------------------------------------------------------------------------- /doc/images/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/warning.png -------------------------------------------------------------------------------- /doc/images/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/warning.svg -------------------------------------------------------------------------------- /doc/images/warning.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/images/warning.tif -------------------------------------------------------------------------------- /doc/site/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/site/index.htm -------------------------------------------------------------------------------- /doc/site/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/doc/site/style.css -------------------------------------------------------------------------------- /elfio/elf_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/elfio/elf_types.hpp -------------------------------------------------------------------------------- /elfio/elfio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/elfio/elfio.hpp -------------------------------------------------------------------------------- /elfio/elfio_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/elfio/elfio_array.hpp -------------------------------------------------------------------------------- /elfio/elfio_dump.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/elfio/elfio_dump.hpp -------------------------------------------------------------------------------- /elfio/elfio_dynamic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/elfio/elfio_dynamic.hpp -------------------------------------------------------------------------------- /elfio/elfio_header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/elfio/elfio_header.hpp -------------------------------------------------------------------------------- /elfio/elfio_modinfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/elfio/elfio_modinfo.hpp -------------------------------------------------------------------------------- /elfio/elfio_note.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/elfio/elfio_note.hpp -------------------------------------------------------------------------------- /elfio/elfio_relocation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/elfio/elfio_relocation.hpp -------------------------------------------------------------------------------- /elfio/elfio_section.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/elfio/elfio_section.hpp -------------------------------------------------------------------------------- /elfio/elfio_segment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/elfio/elfio_segment.hpp -------------------------------------------------------------------------------- /elfio/elfio_strings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/elfio/elfio_strings.hpp -------------------------------------------------------------------------------- /elfio/elfio_symbols.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/elfio/elfio_symbols.hpp -------------------------------------------------------------------------------- /elfio/elfio_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/elfio/elfio_utils.hpp -------------------------------------------------------------------------------- /elfio/elfio_version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/elfio/elfio_version.hpp -------------------------------------------------------------------------------- /elfio/elfio_versym.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/elfio/elfio_versym.hpp -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/add_section/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/examples/add_section/CMakeLists.txt -------------------------------------------------------------------------------- /examples/add_section/add_section.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/examples/add_section/add_section.cpp -------------------------------------------------------------------------------- /examples/anonymizer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/examples/anonymizer/CMakeLists.txt -------------------------------------------------------------------------------- /examples/anonymizer/anonymizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/examples/anonymizer/anonymizer.cpp -------------------------------------------------------------------------------- /examples/arion/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/examples/arion/CMakeLists.txt -------------------------------------------------------------------------------- /examples/arion/arion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/examples/arion/arion.cpp -------------------------------------------------------------------------------- /examples/arioso/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/examples/arioso/CMakeLists.txt -------------------------------------------------------------------------------- /examples/arioso/arioso.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/examples/arioso/arioso.cpp -------------------------------------------------------------------------------- /examples/c_wrapper/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/examples/c_wrapper/CMakeLists.txt -------------------------------------------------------------------------------- /examples/c_wrapper/c_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/examples/c_wrapper/c_example.c -------------------------------------------------------------------------------- /examples/c_wrapper/elfio_c_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/examples/c_wrapper/elfio_c_wrapper.cpp -------------------------------------------------------------------------------- /examples/c_wrapper/elfio_c_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/examples/c_wrapper/elfio_c_wrapper.h -------------------------------------------------------------------------------- /examples/elfdump/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/examples/elfdump/CMakeLists.txt -------------------------------------------------------------------------------- /examples/elfdump/elfdump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/examples/elfdump/elfdump.cpp -------------------------------------------------------------------------------- /examples/elfio_ldd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/examples/elfio_ldd/CMakeLists.txt -------------------------------------------------------------------------------- /examples/elfio_ldd/elfio_ldd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/examples/elfio_ldd/elfio_ldd.cpp -------------------------------------------------------------------------------- /examples/proc_mem/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/examples/proc_mem/CMakeLists.txt -------------------------------------------------------------------------------- /examples/proc_mem/proc_mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/examples/proc_mem/proc_mem.cpp -------------------------------------------------------------------------------- /examples/sudo_gdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/examples/sudo_gdb.sh -------------------------------------------------------------------------------- /examples/tutorial/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/examples/tutorial/CMakeLists.txt -------------------------------------------------------------------------------- /examples/tutorial/tutorial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/examples/tutorial/tutorial.cpp -------------------------------------------------------------------------------- /examples/write_obj/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/examples/write_obj/CMakeLists.txt -------------------------------------------------------------------------------- /examples/write_obj/write_obj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/examples/write_obj/write_obj.cpp -------------------------------------------------------------------------------- /examples/writer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/examples/writer/CMakeLists.txt -------------------------------------------------------------------------------- /examples/writer/writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/examples/writer/writer.cpp -------------------------------------------------------------------------------- /tests/ARIOTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/ARIOTest.cpp -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ELFIOTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/ELFIOTest.cpp -------------------------------------------------------------------------------- /tests/ELFIOTest1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/ELFIOTest1.cpp -------------------------------------------------------------------------------- /tests/ELFIOTest2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/ELFIOTest2.cpp -------------------------------------------------------------------------------- /tests/ario/empty.a: -------------------------------------------------------------------------------- 1 | ! 2 | -------------------------------------------------------------------------------- /tests/ario/invalid_magic.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/ario/invalid_magic.a -------------------------------------------------------------------------------- /tests/ario/libgcov.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/ario/libgcov.a -------------------------------------------------------------------------------- /tests/ario/long_name.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/ario/long_name.a -------------------------------------------------------------------------------- /tests/ario/simple_text.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/ario/simple_text.a -------------------------------------------------------------------------------- /tests/elf_examples/64bitLOAD.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/64bitLOAD.elf -------------------------------------------------------------------------------- /tests/elf_examples/ARMSCII-8.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/ARMSCII-8.so -------------------------------------------------------------------------------- /tests/elf_examples/arm_v7m_test_debug.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/arm_v7m_test_debug.elf -------------------------------------------------------------------------------- /tests/elf_examples/arm_v7m_test_release.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/arm_v7m_test_release.elf -------------------------------------------------------------------------------- /tests/elf_examples/asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/asm -------------------------------------------------------------------------------- /tests/elf_examples/asm.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/asm.lst -------------------------------------------------------------------------------- /tests/elf_examples/asm.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/asm.o -------------------------------------------------------------------------------- /tests/elf_examples/asm.readelf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/asm.readelf -------------------------------------------------------------------------------- /tests/elf_examples/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/asm.s -------------------------------------------------------------------------------- /tests/elf_examples/asm64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/asm64 -------------------------------------------------------------------------------- /tests/elf_examples/asm64.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/asm64.lst -------------------------------------------------------------------------------- /tests/elf_examples/asm64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/asm64.o -------------------------------------------------------------------------------- /tests/elf_examples/crash-060833f08dc14d1712428742b3cad7af17b36bb7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/crash-060833f08dc14d1712428742b3cad7af17b36bb7 -------------------------------------------------------------------------------- /tests/elf_examples/crash-7d695153fd8052529d480c2352d4ada33a44bada: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/crash-7d695153fd8052529d480c2352d4ada33a44bada -------------------------------------------------------------------------------- /tests/elf_examples/crash-b82f05b0b25c8fdc98480e6d76b6d5f9164ae2bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/crash-b82f05b0b25c8fdc98480e6d76b6d5f9164ae2bc -------------------------------------------------------------------------------- /tests/elf_examples/crash-e1ce7cecf01cf800397a4302854d9d76fa19763c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/crash-e1ce7cecf01cf800397a4302854d9d76fa19763c -------------------------------------------------------------------------------- /tests/elf_examples/crash-e3c41070342cf84dea077356ddbb8ebf4326a601: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/crash-e3c41070342cf84dea077356ddbb8ebf4326a601 -------------------------------------------------------------------------------- /tests/elf_examples/crash.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/crash.elf -------------------------------------------------------------------------------- /tests/elf_examples/ctors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/ctors -------------------------------------------------------------------------------- /tests/elf_examples/elf_header_i386_32.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/elf_header_i386_32.elf -------------------------------------------------------------------------------- /tests/elf_examples/entropy.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/entropy.so -------------------------------------------------------------------------------- /tests/elf_examples/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/hello.c -------------------------------------------------------------------------------- /tests/elf_examples/hello_32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/hello_32 -------------------------------------------------------------------------------- /tests/elf_examples/hello_32.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/hello_32.o -------------------------------------------------------------------------------- /tests/elf_examples/hello_32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/hello_32.txt -------------------------------------------------------------------------------- /tests/elf_examples/hello_32_o.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/hello_32_o.txt -------------------------------------------------------------------------------- /tests/elf_examples/hello_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/hello_64 -------------------------------------------------------------------------------- /tests/elf_examples/hello_64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/hello_64.o -------------------------------------------------------------------------------- /tests/elf_examples/hello_64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/hello_64.txt -------------------------------------------------------------------------------- /tests/elf_examples/hello_64_o.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/hello_64_o.txt -------------------------------------------------------------------------------- /tests/elf_examples/hello_arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/hello_arm -------------------------------------------------------------------------------- /tests/elf_examples/hello_arm.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/hello_arm.o -------------------------------------------------------------------------------- /tests/elf_examples/hello_arm_stripped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/hello_arm_stripped -------------------------------------------------------------------------------- /tests/elf_examples/helloworld.rpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/helloworld.rpx -------------------------------------------------------------------------------- /tests/elf_examples/libfunc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/libfunc.so -------------------------------------------------------------------------------- /tests/elf_examples/libfunc32.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/libfunc32.so -------------------------------------------------------------------------------- /tests/elf_examples/libversion_d.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/libversion_d.so -------------------------------------------------------------------------------- /tests/elf_examples/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/main -------------------------------------------------------------------------------- /tests/elf_examples/main32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/main32 -------------------------------------------------------------------------------- /tests/elf_examples/mismatched_segments.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/mismatched_segments.elf -------------------------------------------------------------------------------- /tests/elf_examples/null_endianess_convertor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/null_endianess_convertor -------------------------------------------------------------------------------- /tests/elf_examples/ppc-32bit-specimen3.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/ppc-32bit-specimen3.elf -------------------------------------------------------------------------------- /tests/elf_examples/read_write_arm_elf32_input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/read_write_arm_elf32_input -------------------------------------------------------------------------------- /tests/elf_examples/startup.eln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/startup.eln -------------------------------------------------------------------------------- /tests/elf_examples/startup_orig.eln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/startup_orig.eln -------------------------------------------------------------------------------- /tests/elf_examples/test_ppc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/test_ppc -------------------------------------------------------------------------------- /tests/elf_examples/test_ppc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/test_ppc.cpp -------------------------------------------------------------------------------- /tests/elf_examples/test_ppc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/test_ppc.o -------------------------------------------------------------------------------- /tests/elf_examples/test_ppc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/test_ppc.txt -------------------------------------------------------------------------------- /tests/elf_examples/test_ppc_o.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/test_ppc_o.txt -------------------------------------------------------------------------------- /tests/elf_examples/version_d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/version_d.cpp -------------------------------------------------------------------------------- /tests/elf_examples/version_d.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/version_d.map -------------------------------------------------------------------------------- /tests/elf_examples/write_exe_i386_32_match: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/write_exe_i386_32_match -------------------------------------------------------------------------------- /tests/elf_examples/write_exe_i386_32_work_dump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/write_exe_i386_32_work_dump.txt -------------------------------------------------------------------------------- /tests/elf_examples/write_obj_i386_32_match.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/write_obj_i386_32_match.o -------------------------------------------------------------------------------- /tests/elf_examples/write_obj_i386_64_match.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/write_obj_i386_64_match.o -------------------------------------------------------------------------------- /tests/elf_examples/x86_64_static: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/x86_64_static -------------------------------------------------------------------------------- /tests/elf_examples/zavl.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elf_examples/zavl.ko -------------------------------------------------------------------------------- /tests/elfio_fuzzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/elfio_fuzzer.cpp -------------------------------------------------------------------------------- /tests/runELFtests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serge1/ELFIO/HEAD/tests/runELFtests --------------------------------------------------------------------------------