gitextract_wdal68gi/ ├── .dockerignore ├── .github/ │ └── workflows/ │ └── main.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── docker/ │ ├── debian/ │ │ └── Dockerfile-10 │ ├── fedora/ │ │ └── Dockerfile-37 │ └── ubuntu/ │ ├── Dockerfile-20.04 │ └── Dockerfile-22.04 ├── src/ │ ├── algorithm/ │ │ ├── algorithm.h │ │ ├── part_hash_algorithm.cpp │ │ └── part_hash_algorithm.h │ ├── binaries/ │ │ ├── bin_extractor.h │ │ ├── bin_handler.cpp │ │ ├── bin_handler.h │ │ ├── bin_identifier.cpp │ │ ├── bin_identifier.h │ │ ├── bin_types.h │ │ ├── extractors/ │ │ │ ├── go_extractor.cpp │ │ │ ├── go_extractor.h │ │ │ ├── libelf_extractor.cpp │ │ │ ├── libelf_extractor.h │ │ │ ├── lief_extractor.cpp │ │ │ ├── lief_extractor.h │ │ │ ├── radare_extractor.cpp │ │ │ └── radare_extractor.h │ │ ├── handlers/ │ │ │ ├── elf_handler.cpp │ │ │ ├── elf_handler.h │ │ │ ├── pe_handler.cpp │ │ │ └── pe_handler.h │ │ ├── lib/ │ │ │ ├── install/ │ │ │ │ ├── go_lib_installer.cpp │ │ │ │ ├── go_lib_installer.h │ │ │ │ ├── lib_installer.h │ │ │ │ ├── rust_lib_installer.cpp │ │ │ │ └── rust_lib_installer.h │ │ │ ├── lib_manager.cpp │ │ │ └── lib_manager.h │ │ └── pe_types.h │ ├── command/ │ │ ├── command_executor.cpp │ │ └── command_executor.h │ ├── global_defs.h │ ├── langs/ │ │ ├── lang_manager.cpp │ │ ├── lang_manager.h │ │ ├── lang_types.h │ │ ├── lib_regex.cpp │ │ └── lib_regex.h │ ├── main.cpp │ ├── types/ │ │ └── value_ordered_map.h │ ├── user/ │ │ ├── dependencies/ │ │ │ ├── dependency_manager.cpp │ │ │ └── dependency_manager.h │ │ ├── local_config.cpp │ │ ├── local_config.h │ │ ├── user_prompt.cpp │ │ └── user_prompt.h │ └── utils/ │ ├── arg_parser.cpp │ ├── arg_parser.h │ ├── config.h │ ├── convert.cpp │ ├── convert.h │ ├── file_downloader.cpp │ ├── file_downloader.h │ ├── file_operations.cpp │ ├── file_operations.h │ ├── logger.cpp │ ├── logger.h │ ├── search.cpp │ └── search.h └── test/ ├── Go/ │ └── test_1/ │ ├── result.txt │ └── src/ │ ├── go.mod │ ├── go.sum │ └── test_1.go └── Rust/ └── test_1/ ├── Cargo.toml ├── result.txt └── src/ └── main.rs