├── .circleci └── config.yml ├── .gitattributes ├── .github └── workflows │ └── semantic-commits.yml ├── .gitignore ├── .npmignore ├── CMakeLists.txt ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DEPENDENCIES ├── LICENSE ├── README.markdown ├── package.json ├── patches └── lief │ └── 0001-feat-add-log-level-with-l.patch ├── postject-api.h ├── scripts └── build.mjs ├── src ├── api.js ├── cli.js └── postject.cpp ├── test ├── CMakeLists.txt ├── cli.mjs ├── test.S ├── test.c └── test.cpp └── vendor ├── lief ├── .circleci │ └── config.yml ├── .clang-tidy ├── .dockerignore ├── AUTHORS ├── Acknowledgements ├── CHANGELOG ├── CMakeLists.txt ├── Dockerfile ├── LICENSE ├── LIEF.pc.in ├── LIEFConfig.cmake.in ├── MANIFEST.in ├── README.md ├── api │ ├── c │ │ ├── CMakeLists.txt │ │ ├── ELF │ │ │ ├── Binary.cpp │ │ │ ├── Binary.hpp │ │ │ ├── CMakeLists.txt │ │ │ ├── DynamicEntry.cpp │ │ │ ├── DynamicEntry.hpp │ │ │ ├── EnumToString.cpp │ │ │ ├── Header.cpp │ │ │ ├── Header.hpp │ │ │ ├── Section.cpp │ │ │ ├── Section.hpp │ │ │ ├── Segment.cpp │ │ │ ├── Segment.hpp │ │ │ ├── Symbol.cpp │ │ │ ├── Symbol.hpp │ │ │ └── utils.cpp │ │ ├── MachO │ │ │ ├── Binary.cpp │ │ │ ├── Binary.hpp │ │ │ ├── CMakeLists.txt │ │ │ ├── EnumToString.cpp │ │ │ ├── Header.cpp │ │ │ ├── Header.hpp │ │ │ ├── LoadCommand.cpp │ │ │ ├── LoadCommand.hpp │ │ │ ├── Parser.cpp │ │ │ ├── Section.cpp │ │ │ ├── Section.hpp │ │ │ ├── Segment.cpp │ │ │ ├── Segment.hpp │ │ │ ├── Symbol.cpp │ │ │ └── Symbol.hpp │ │ ├── PE │ │ │ ├── Binary.cpp │ │ │ ├── Binary.hpp │ │ │ ├── CMakeLists.txt │ │ │ ├── DataDirectory.cpp │ │ │ ├── DataDirectory.hpp │ │ │ ├── DosHeader.cpp │ │ │ ├── DosHeader.hpp │ │ │ ├── EnumToString.cpp │ │ │ ├── Header.cpp │ │ │ ├── Header.hpp │ │ │ ├── Import.cpp │ │ │ ├── Import.hpp │ │ │ ├── ImportEntry.cpp │ │ │ ├── ImportEntry.hpp │ │ │ ├── OptionalHeader.cpp │ │ │ ├── OptionalHeader.hpp │ │ │ ├── Section.cpp │ │ │ └── Section.hpp │ │ ├── include │ │ │ └── LIEF │ │ │ │ ├── ELF.h │ │ │ │ ├── ELF │ │ │ │ ├── Binary.h │ │ │ │ ├── DynamicEntry.h │ │ │ │ ├── EnumToString.h │ │ │ │ ├── Header.h │ │ │ │ ├── Section.h │ │ │ │ ├── Segment.h │ │ │ │ ├── Symbol.h │ │ │ │ ├── enums.h │ │ │ │ └── utils.h │ │ │ │ ├── LIEF.h │ │ │ │ ├── MachO.h │ │ │ │ ├── MachO │ │ │ │ ├── Binary.h │ │ │ │ ├── EnumToString.h │ │ │ │ ├── Header.h │ │ │ │ ├── LoadCommand.h │ │ │ │ ├── Section.h │ │ │ │ ├── Segment.h │ │ │ │ ├── Symbol.h │ │ │ │ └── enums.h │ │ │ │ ├── PE.h │ │ │ │ ├── PE │ │ │ │ ├── Binary.h │ │ │ │ ├── DataDirectory.h │ │ │ │ ├── DosHeader.h │ │ │ │ ├── EnumToString.h │ │ │ │ ├── Header.h │ │ │ │ ├── Import.h │ │ │ │ ├── ImportEntry.h │ │ │ │ ├── OptionalHeader.h │ │ │ │ ├── Section.h │ │ │ │ └── enums.h │ │ │ │ ├── logging.h │ │ │ │ └── types.h │ │ └── logging.cpp │ └── python │ │ ├── ART │ │ ├── CMakeLists.txt │ │ ├── objects │ │ │ ├── pyFile.cpp │ │ │ ├── pyHeader.cpp │ │ │ └── pyParser.cpp │ │ ├── pyART.cpp │ │ ├── pyART.hpp │ │ ├── pyEnums.cpp │ │ └── pyUtils.cpp │ │ ├── Abstract │ │ ├── CMakeLists.txt │ │ ├── objects │ │ │ ├── pyBinary.cpp │ │ │ ├── pyFunction.cpp │ │ │ ├── pyHeader.cpp │ │ │ ├── pyParser.cpp │ │ │ ├── pyRelocation.cpp │ │ │ ├── pySection.cpp │ │ │ └── pySymbol.cpp │ │ ├── pyAbstract.cpp │ │ ├── pyAbstract.hpp │ │ └── pyEnums.cpp │ │ ├── CMakeLists.txt │ │ ├── DEX │ │ ├── CMakeLists.txt │ │ ├── objects │ │ │ ├── pyClass.cpp │ │ │ ├── pyCodeInfo.cpp │ │ │ ├── pyField.cpp │ │ │ ├── pyFile.cpp │ │ │ ├── pyHeader.cpp │ │ │ ├── pyMapItem.cpp │ │ │ ├── pyMapList.cpp │ │ │ ├── pyMethod.cpp │ │ │ ├── pyParser.cpp │ │ │ ├── pyPrototype.cpp │ │ │ └── pyType.cpp │ │ ├── pyDEX.cpp │ │ ├── pyDEX.hpp │ │ ├── pyEnums.cpp │ │ └── pyUtils.cpp │ │ ├── ELF │ │ ├── CMakeLists.txt │ │ ├── objects │ │ │ ├── NoteDetails │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── core │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── pyCoreAuxv.cpp │ │ │ │ │ ├── pyCoreFile.cpp │ │ │ │ │ ├── pyCoreFileEntry.cpp │ │ │ │ │ ├── pyCorePrPsInfo.cpp │ │ │ │ │ ├── pyCorePrStatus.cpp │ │ │ │ │ └── pyCoreSigInfo.cpp │ │ │ │ ├── pyAndroidNote.cpp │ │ │ │ └── pyNoteAbi.cpp │ │ │ ├── pyBinary.cpp │ │ │ ├── pyBuilder.cpp │ │ │ ├── pyDynamicEntry.cpp │ │ │ ├── pyDynamicEntryArray.cpp │ │ │ ├── pyDynamicEntryFlags.cpp │ │ │ ├── pyDynamicEntryLibrary.cpp │ │ │ ├── pyDynamicEntryRpath.cpp │ │ │ ├── pyDynamicEntryRunPath.cpp │ │ │ ├── pyDynamicSharedObject.cpp │ │ │ ├── pyGnuHash.cpp │ │ │ ├── pyHeader.cpp │ │ │ ├── pyNote.cpp │ │ │ ├── pyNoteDetails.cpp │ │ │ ├── pyParser.cpp │ │ │ ├── pyRelocation.cpp │ │ │ ├── pySection.cpp │ │ │ ├── pySegment.cpp │ │ │ ├── pySymbol.cpp │ │ │ ├── pySymbolVersion.cpp │ │ │ ├── pySymbolVersionAux.cpp │ │ │ ├── pySymbolVersionAuxRequirement.cpp │ │ │ ├── pySymbolVersionDefinition.cpp │ │ │ ├── pySymbolVersionRequirement.cpp │ │ │ └── pySysvHash.cpp │ │ ├── pyELF.cpp │ │ ├── pyELF.hpp │ │ ├── pyEnums.cpp │ │ └── pySizes.cpp │ │ ├── MachO │ │ ├── CMakeLists.txt │ │ ├── objects │ │ │ ├── pyBinary.cpp │ │ │ ├── pyBindingInfo.cpp │ │ │ ├── pyBuildVersion.cpp │ │ │ ├── pyBuilder.cpp │ │ │ ├── pyChainedBindingInfo.cpp │ │ │ ├── pyCodeSignature.cpp │ │ │ ├── pyCodeSignatureDir.cpp │ │ │ ├── pyDataCodeEntry.cpp │ │ │ ├── pyDataInCode.cpp │ │ │ ├── pyDyldBindingInfo.cpp │ │ │ ├── pyDyldChainedFixups.cpp │ │ │ ├── pyDyldEnvironment.cpp │ │ │ ├── pyDyldExportsTrie.cpp │ │ │ ├── pyDyldInfo.cpp │ │ │ ├── pyDylibCommand.cpp │ │ │ ├── pyDylinker.cpp │ │ │ ├── pyDynamicSymbolCommand.cpp │ │ │ ├── pyEncryptionInfo.cpp │ │ │ ├── pyExportInfo.cpp │ │ │ ├── pyFatBinary.cpp │ │ │ ├── pyFilesetCommand.cpp │ │ │ ├── pyFunctionStarts.cpp │ │ │ ├── pyHeader.cpp │ │ │ ├── pyLinkerOptHint.cpp │ │ │ ├── pyLoadCommand.cpp │ │ │ ├── pyMainCommand.cpp │ │ │ ├── pyParser.cpp │ │ │ ├── pyParserConfig.cpp │ │ │ ├── pyRPathCommand.cpp │ │ │ ├── pyRelocation.cpp │ │ │ ├── pyRelocationDyld.cpp │ │ │ ├── pyRelocationFixup.cpp │ │ │ ├── pyRelocationObject.cpp │ │ │ ├── pySection.cpp │ │ │ ├── pySegmentCommand.cpp │ │ │ ├── pySegmentSplitInfo.cpp │ │ │ ├── pySourceVersion.cpp │ │ │ ├── pySubFramework.cpp │ │ │ ├── pySymbol.cpp │ │ │ ├── pySymbolCommand.cpp │ │ │ ├── pyThreadCommand.cpp │ │ │ ├── pyTwoLevelHints.cpp │ │ │ ├── pyUUID.cpp │ │ │ └── pyVersionMin.cpp │ │ ├── pyEnums.cpp │ │ ├── pyMachO.cpp │ │ ├── pyMachO.hpp │ │ └── pyUtils.cpp │ │ ├── OAT │ │ ├── CMakeLists.txt │ │ ├── objects │ │ │ ├── pyBinary.cpp │ │ │ ├── pyClass.cpp │ │ │ ├── pyDexFile.cpp │ │ │ ├── pyHeader.cpp │ │ │ ├── pyMethod.cpp │ │ │ └── pyParser.cpp │ │ ├── pyEnums.cpp │ │ ├── pyOAT.cpp │ │ ├── pyOAT.hpp │ │ └── pyUtils.cpp │ │ ├── PE │ │ ├── CMakeLists.txt │ │ ├── objects │ │ │ ├── LoadConfigurations │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── pyLoadConfiguration.cpp │ │ │ │ ├── pyLoadConfigurationV0.cpp │ │ │ │ ├── pyLoadConfigurationV1.cpp │ │ │ │ ├── pyLoadConfigurationV2.cpp │ │ │ │ ├── pyLoadConfigurationV3.cpp │ │ │ │ ├── pyLoadConfigurationV4.cpp │ │ │ │ ├── pyLoadConfigurationV5.cpp │ │ │ │ ├── pyLoadConfigurationV6.cpp │ │ │ │ └── pyLoadConfigurationV7.cpp │ │ │ ├── pyBinary.cpp │ │ │ ├── pyBuilder.cpp │ │ │ ├── pyCodeIntegrity.cpp │ │ │ ├── pyCodeView.cpp │ │ │ ├── pyCodeViewPDB.cpp │ │ │ ├── pyDataDirectory.cpp │ │ │ ├── pyDebug.cpp │ │ │ ├── pyDelayImport.cpp │ │ │ ├── pyDelayImportEntry.cpp │ │ │ ├── pyDosHeader.cpp │ │ │ ├── pyExport.cpp │ │ │ ├── pyExportEntry.cpp │ │ │ ├── pyHeader.cpp │ │ │ ├── pyImport.cpp │ │ │ ├── pyImportEntry.cpp │ │ │ ├── pyOptionalHeader.cpp │ │ │ ├── pyParser.cpp │ │ │ ├── pyPogo.cpp │ │ │ ├── pyPogoEntry.cpp │ │ │ ├── pyRelocation.cpp │ │ │ ├── pyRelocationEntry.cpp │ │ │ ├── pyResourceData.cpp │ │ │ ├── pyResourceDirectory.cpp │ │ │ ├── pyResourceNode.cpp │ │ │ ├── pyResourcesManager.cpp │ │ │ ├── pyRichEntry.cpp │ │ │ ├── pyRichHeader.cpp │ │ │ ├── pySection.cpp │ │ │ ├── pySymbol.cpp │ │ │ ├── pyTLS.cpp │ │ │ ├── resources │ │ │ │ ├── pyLangCodeItem.cpp │ │ │ │ ├── pyResourceAccelerator.cpp │ │ │ │ ├── pyResourceDialog.cpp │ │ │ │ ├── pyResourceDialogItem.cpp │ │ │ │ ├── pyResourceFixedFileInfo.cpp │ │ │ │ ├── pyResourceIcon.cpp │ │ │ │ ├── pyResourceStringFileInfo.cpp │ │ │ │ ├── pyResourceStringTable.cpp │ │ │ │ ├── pyResourceVarFileInfo.cpp │ │ │ │ └── pyResourceVersion.cpp │ │ │ └── signature │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── attributes │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── pyContentType.cpp │ │ │ │ ├── pyGenericType.cpp │ │ │ │ ├── pyMsCounterSign.cpp │ │ │ │ ├── pyMsSpcNestedSignature.cpp │ │ │ │ ├── pyMsSpcStatementType.cpp │ │ │ │ ├── pyPKCS9AtSequenceNumber.cpp │ │ │ │ ├── pyPKCS9CounterSignature.cpp │ │ │ │ ├── pyPKCS9MessageDigest.cpp │ │ │ │ ├── pyPKCS9SigningTime.cpp │ │ │ │ └── pySpcSpOpusInfo.cpp │ │ │ │ ├── pyAttribute.cpp │ │ │ │ ├── pyContentInfo.cpp │ │ │ │ ├── pyRsaInfo.cpp │ │ │ │ ├── pySignature.cpp │ │ │ │ ├── pySignerInfo.cpp │ │ │ │ └── pyx509.cpp │ │ ├── pyEnums.cpp │ │ ├── pyPE.cpp │ │ ├── pyPE.hpp │ │ └── pyUtils.cpp │ │ ├── VDEX │ │ ├── CMakeLists.txt │ │ ├── objects │ │ │ ├── pyFile.cpp │ │ │ ├── pyHeader.cpp │ │ │ └── pyParser.cpp │ │ ├── pyUtils.cpp │ │ ├── pyVDEX.cpp │ │ └── pyVDEX.hpp │ │ ├── encoding.cpp │ │ ├── encoding.hpp │ │ ├── enums_wrapper.hpp │ │ ├── platforms │ │ ├── CMakeLists.txt │ │ ├── android │ │ │ ├── CMakeLists.txt │ │ │ ├── pyAndroid.cpp │ │ │ ├── pyAndroid.hpp │ │ │ └── pyVersion.cpp │ │ ├── pyPlatform.cpp │ │ └── pyPlatform.hpp │ │ ├── pyErr.cpp │ │ ├── pyErr.hpp │ │ ├── pyExceptions.cpp │ │ ├── pyHash.cpp │ │ ├── pyIterators.hpp │ │ ├── pyJson.cpp │ │ ├── pyLIEF.cpp │ │ ├── pyLIEF.hpp │ │ ├── pyLogger.cpp │ │ ├── pyObject.cpp │ │ └── pyUtils.cpp ├── cmake │ ├── ChooseMSVCCRT.cmake │ ├── FindPythonLibsNew.cmake │ ├── FindSphinx.cmake │ ├── LIEFApi.cmake │ ├── LIEFCompilerDetection.cmake │ ├── LIEFCompilerFlags.cmake │ ├── LIEFDependencies.cmake │ ├── LIEFGit.cmake │ ├── LIEFOptions.cmake │ ├── cpack.config.cmake │ ├── ios.toolchain.cmake │ └── strip.cmake ├── doc │ ├── CMakeLists.txt │ ├── doxygen │ │ ├── Doxyfile │ │ ├── doxygen_index.md │ │ └── logo_lief_55.png │ ├── requirements.txt │ └── sphinx │ │ ├── _static │ │ ├── archi_elf.png │ │ ├── architecture.png │ │ ├── css │ │ │ └── custom.css │ │ ├── data_handler.png │ │ ├── example.cpp │ │ ├── favicon.ico │ │ ├── iat3.png │ │ ├── iat4.png │ │ ├── logo_blue.png │ │ ├── logo_blue_412.png │ │ ├── tutorial │ │ │ ├── 10 │ │ │ │ ├── elf_oat.png │ │ │ │ └── java2oat.png │ │ │ ├── 11 │ │ │ │ ├── extendtxt.png │ │ │ │ ├── image1.png │ │ │ │ ├── image2.png │ │ │ │ ├── image3.png │ │ │ │ └── lief_bytecode.png │ │ │ ├── 12 │ │ │ │ ├── elf_notes.png │ │ │ │ ├── gdb.original.png │ │ │ │ └── gdb.png │ │ │ ├── 03 │ │ │ │ ├── hashme.png │ │ │ │ └── hashme_obf.png │ │ │ ├── 05 │ │ │ │ ├── pltgot.png │ │ │ │ ├── pltgot2.png │ │ │ │ └── pltgot3.png │ │ │ ├── 06 │ │ │ │ ├── 06_hooking_1.png │ │ │ │ ├── 06_hooking_2.png │ │ │ │ └── 06_hooking_3.png │ │ │ ├── 07 │ │ │ │ ├── 07_pe_resource_manager.png │ │ │ │ ├── 07_resource_tree.png │ │ │ │ ├── filezilla.png │ │ │ │ ├── mfc.png │ │ │ │ ├── mfc_modified.png │ │ │ │ └── resource_manager_output.txt │ │ │ ├── 08 │ │ │ │ ├── bin2lib_a.pdf │ │ │ │ ├── bin2lib_a.png │ │ │ │ ├── bin2lib_b.pdf │ │ │ │ ├── bin2lib_b.png │ │ │ │ └── crackme101_ida.png │ │ │ └── 09 │ │ │ │ └── telegram.png │ │ ├── windows_sdk │ │ │ ├── s1.png │ │ │ ├── s2.png │ │ │ ├── s3.png │ │ │ ├── s4.png │ │ │ └── s5.png │ │ └── xcode_integration │ │ │ ├── code.png │ │ │ ├── result.png │ │ │ ├── step1.png │ │ │ ├── step2.png │ │ │ ├── step3.png │ │ │ ├── step4.png │ │ │ ├── step5.png │ │ │ ├── step6.png │ │ │ └── step7.png │ │ ├── api │ │ ├── c │ │ │ ├── elf.rst │ │ │ ├── index.rst │ │ │ ├── logging.rst │ │ │ ├── macho.rst │ │ │ └── pe.rst │ │ ├── cpp │ │ │ ├── abstract.rst │ │ │ ├── art.rst │ │ │ ├── dex.rst │ │ │ ├── elf.rst │ │ │ ├── index.rst │ │ │ ├── macho.rst │ │ │ ├── oat.rst │ │ │ ├── pe.rst │ │ │ ├── platforms │ │ │ │ └── android.rst │ │ │ └── vdex.rst │ │ ├── index.rst │ │ └── python │ │ │ ├── abstract.rst │ │ │ ├── art.rst │ │ │ ├── dex.rst │ │ │ ├── elf.rst │ │ │ ├── index.rst │ │ │ ├── macho.rst │ │ │ ├── oat.rst │ │ │ ├── pe.rst │ │ │ ├── platforms │ │ │ └── android.rst │ │ │ ├── utilities.rst │ │ │ └── vdex.rst │ │ ├── changelog.rst │ │ ├── compilation.rst │ │ ├── conf.py │ │ ├── error_handling.rst │ │ ├── formats │ │ ├── elf.rst │ │ ├── index.rst │ │ └── pe.rst │ │ ├── getting_started.rst │ │ ├── index.rst │ │ ├── installation.rst │ │ ├── intro.rst │ │ ├── references.rst │ │ └── tutorials │ │ ├── 01_play_with_formats.rst │ │ ├── 02_pe_from_scratch.rst │ │ ├── 03_elf_change_symbols.rst │ │ ├── 04_elf_hooking.rst │ │ ├── 05_elf_infect_plt_got.rst │ │ ├── 06_pe_hooking.rst │ │ ├── 07_pe_resource.rst │ │ ├── 08_elf_bin2lib.rst │ │ ├── 09_frida_lief.rst │ │ ├── 10_android_formats.rst │ │ ├── 11_macho_modification.rst │ │ ├── 12_elf_coredump.rst │ │ ├── 13_pe_authenticode.rst │ │ └── index.rst ├── examples │ ├── CMakeLists.txt │ ├── c │ │ ├── CMakeLists.txt │ │ ├── elf_reader.c │ │ ├── macho_reader.c │ │ └── pe_reader.c │ ├── cmake │ │ ├── add_subdirectory │ │ │ ├── CMakeLists.txt │ │ │ ├── README.rst │ │ │ └── main.cpp │ │ ├── external_project │ │ │ ├── CMakeLists.txt │ │ │ ├── HelloLIEF │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.cpp │ │ │ └── README.rst │ │ └── find_package │ │ │ ├── CMakeLists.txt │ │ │ ├── README.rst │ │ │ └── main.cpp │ ├── cpp │ │ ├── CMakeLists.txt │ │ ├── abstract_reader.cpp │ │ ├── art_reader.cpp │ │ ├── benchmark.cpp │ │ ├── dex_reader.cpp │ │ ├── elf_add_section.cpp │ │ ├── elf_builder.cpp │ │ ├── elf_reader.cpp │ │ ├── elf_section_rename.cpp │ │ ├── elf_strip.cpp │ │ ├── elf_symbols.cpp │ │ ├── logging.cpp │ │ ├── macho_builder.cpp │ │ ├── macho_reader.cpp │ │ ├── oat_reader.cpp │ │ ├── pe_authenticode_check.cpp │ │ ├── pe_builder.cpp │ │ ├── pe_reader.cpp │ │ └── vdex_reader.cpp │ └── python │ │ ├── abstract_json.py │ │ ├── abstract_reader.py │ │ ├── authenticode │ │ ├── api_example.py │ │ └── authenticode_reader.py │ │ ├── change_elf_interpreter.py │ │ ├── dex_json.py │ │ ├── dex_reader.py │ │ ├── elf_bin2lib.py │ │ ├── elf_json.py │ │ ├── elf_reader.py │ │ ├── elf_remove_section_table.py │ │ ├── elf_symbol_obfuscation.py │ │ ├── elf_unstrip.py │ │ ├── entropy.py │ │ ├── json_dump.py │ │ ├── keygen │ │ ├── KeygenMe │ │ └── lief_patch.py │ │ ├── library_symbols_obfuscation │ │ ├── Makefile │ │ ├── README.md │ │ ├── binadd.c │ │ ├── libadd.c │ │ ├── libadd.h │ │ └── obfu.py │ │ ├── macho_parser_tweak.py │ │ ├── macho_reader.py │ │ ├── nm.py │ │ ├── oat_reader.py │ │ ├── pe_authenticode.py │ │ ├── pe_forwardinfo.py │ │ ├── pe_from_scratch.py │ │ ├── pe_json.py │ │ ├── pe_reader.py │ │ ├── pe_resources_manager.py │ │ ├── vdex_json.py │ │ └── vdex_reader.py ├── fuzzing │ ├── CMakeLists.txt │ ├── clean-corpus.py │ ├── elf_fuzzer.cpp │ ├── macho_fuzzer.cpp │ ├── pe_fuzzer.cpp │ ├── pkcs7_signature.cpp │ └── pme_fuzzer.cpp ├── include │ └── LIEF │ │ ├── ART.hpp │ │ ├── ART │ │ ├── EnumToString.hpp │ │ ├── File.hpp │ │ ├── Header.hpp │ │ ├── Parser.hpp │ │ ├── enums.hpp │ │ ├── hash.hpp │ │ ├── java_structures.hpp │ │ ├── json.hpp │ │ ├── types.hpp │ │ └── utils.hpp │ │ ├── Abstract.hpp │ │ ├── Abstract │ │ ├── Binary.hpp │ │ ├── EnumToString.hpp │ │ ├── Function.hpp │ │ ├── Header.hpp │ │ ├── Parser.hpp │ │ ├── Relocation.hpp │ │ ├── Section.hpp │ │ ├── Symbol.hpp │ │ ├── enums.hpp │ │ ├── hash.hpp │ │ └── json.hpp │ │ ├── BinaryStream │ │ ├── BinaryStream.hpp │ │ ├── Convert.hpp │ │ ├── FileStream.hpp │ │ ├── MemoryStream.hpp │ │ ├── SpanStream.hpp │ │ └── VectorStream.hpp │ │ ├── DEX.hpp │ │ ├── DEX │ │ ├── Class.hpp │ │ ├── CodeInfo.hpp │ │ ├── EnumToString.hpp │ │ ├── Field.hpp │ │ ├── File.hpp │ │ ├── Header.hpp │ │ ├── MapItem.hpp │ │ ├── MapList.hpp │ │ ├── Method.hpp │ │ ├── Parser.hpp │ │ ├── Prototype.hpp │ │ ├── Type.hpp │ │ ├── deopt.hpp │ │ ├── enums.hpp │ │ ├── hash.hpp │ │ ├── instructions.hpp │ │ ├── json.hpp │ │ ├── types.hpp │ │ └── utils.hpp │ │ ├── DWARF.hpp │ │ ├── DWARF │ │ └── enums.hpp │ │ ├── ELF.hpp │ │ ├── ELF │ │ ├── Binary.hpp │ │ ├── Builder.hpp │ │ ├── DynamicEntry.hpp │ │ ├── DynamicEntryArray.hpp │ │ ├── DynamicEntryFlags.hpp │ │ ├── DynamicEntryLibrary.hpp │ │ ├── DynamicEntryRpath.hpp │ │ ├── DynamicEntryRunPath.hpp │ │ ├── DynamicSharedObject.hpp │ │ ├── EnumToString.hpp │ │ ├── GnuHash.hpp │ │ ├── Header.hpp │ │ ├── Note.hpp │ │ ├── NoteDetails.hpp │ │ ├── NoteDetails │ │ │ ├── AndroidNote.hpp │ │ │ ├── Core.hpp │ │ │ ├── NoteAbi.hpp │ │ │ └── core │ │ │ │ ├── CoreAuxv.hpp │ │ │ │ ├── CoreFile.hpp │ │ │ │ ├── CorePrPsInfo.hpp │ │ │ │ ├── CorePrStatus.hpp │ │ │ │ └── CoreSigInfo.hpp │ │ ├── Parser.hpp │ │ ├── Relocation.hpp │ │ ├── RelocationSizes.hpp │ │ ├── Relocations │ │ │ ├── AArch64.def │ │ │ ├── ARM.def │ │ │ ├── Hexagon.def │ │ │ ├── Mips.def │ │ │ ├── PowerPC.def │ │ │ ├── PowerPC64.def │ │ │ ├── Sparc.def │ │ │ ├── SystemZ.def │ │ │ ├── i386.def │ │ │ └── x86_64.def │ │ ├── Section.hpp │ │ ├── Segment.hpp │ │ ├── Symbol.hpp │ │ ├── SymbolVersion.hpp │ │ ├── SymbolVersionAux.hpp │ │ ├── SymbolVersionAuxRequirement.hpp │ │ ├── SymbolVersionDefinition.hpp │ │ ├── SymbolVersionRequirement.hpp │ │ ├── SysvHash.hpp │ │ ├── enums.hpp │ │ ├── enums.inc │ │ ├── hash.hpp │ │ ├── json.hpp │ │ ├── undef.h │ │ └── utils.hpp │ │ ├── LIEF.hpp │ │ ├── MachO.hpp │ │ ├── MachO │ │ ├── Binary.hpp │ │ ├── BinaryParser.hpp │ │ ├── BindingInfo.hpp │ │ ├── BuildVersion.hpp │ │ ├── Builder.hpp │ │ ├── ChainedBindingInfo.hpp │ │ ├── CodeSignature.hpp │ │ ├── CodeSignatureDir.hpp │ │ ├── DataCodeEntry.hpp │ │ ├── DataInCode.hpp │ │ ├── DyldBindingInfo.hpp │ │ ├── DyldChainedFixups.hpp │ │ ├── DyldEnvironment.hpp │ │ ├── DyldExportsTrie.hpp │ │ ├── DyldInfo.hpp │ │ ├── DylibCommand.hpp │ │ ├── DylinkerCommand.hpp │ │ ├── DynamicSymbolCommand.hpp │ │ ├── EncryptionInfo.hpp │ │ ├── EnumToString.hpp │ │ ├── ExportInfo.hpp │ │ ├── FatBinary.hpp │ │ ├── FilesetCommand.hpp │ │ ├── FunctionStarts.hpp │ │ ├── Header.hpp │ │ ├── LinkEdit.hpp │ │ ├── LinkerOptHint.hpp │ │ ├── LoadCommand.hpp │ │ ├── MainCommand.hpp │ │ ├── Parser.hpp │ │ ├── ParserConfig.hpp │ │ ├── RPathCommand.hpp │ │ ├── Relocation.hpp │ │ ├── RelocationDyld.hpp │ │ ├── RelocationFixup.hpp │ │ ├── RelocationObject.hpp │ │ ├── Section.hpp │ │ ├── SegmentCommand.hpp │ │ ├── SegmentSplitInfo.hpp │ │ ├── SourceVersion.hpp │ │ ├── SubFramework.hpp │ │ ├── Symbol.hpp │ │ ├── SymbolCommand.hpp │ │ ├── ThreadCommand.hpp │ │ ├── TwoLevelHints.hpp │ │ ├── UUIDCommand.hpp │ │ ├── VersionMin.hpp │ │ ├── enums.hpp │ │ ├── enums.inc │ │ ├── hash.hpp │ │ ├── json.hpp │ │ ├── type_traits.hpp │ │ ├── undef.h │ │ └── utils.hpp │ │ ├── OAT.hpp │ │ ├── OAT │ │ ├── Binary.hpp │ │ ├── Class.hpp │ │ ├── DexFile.hpp │ │ ├── EnumToString.hpp │ │ ├── Header.hpp │ │ ├── Method.hpp │ │ ├── Parser.hpp │ │ ├── enums.hpp │ │ ├── hash.hpp │ │ ├── json.hpp │ │ ├── type_traits.hpp │ │ └── utils.hpp │ │ ├── Object.hpp │ │ ├── PE.hpp │ │ ├── PE │ │ ├── AuxiliarySymbol.hpp │ │ ├── Binary.hpp │ │ ├── Builder.hpp │ │ ├── CodeIntegrity.hpp │ │ ├── CodeView.hpp │ │ ├── CodeViewPDB.hpp │ │ ├── DataDirectory.hpp │ │ ├── Debug.hpp │ │ ├── DelayImport.hpp │ │ ├── DelayImportEntry.hpp │ │ ├── DosHeader.hpp │ │ ├── EnumToString.hpp │ │ ├── Export.hpp │ │ ├── ExportEntry.hpp │ │ ├── Header.hpp │ │ ├── Import.hpp │ │ ├── ImportEntry.hpp │ │ ├── LoadConfigurations.hpp │ │ ├── LoadConfigurations │ │ │ ├── LoadConfiguration.hpp │ │ │ ├── LoadConfigurationV0.hpp │ │ │ ├── LoadConfigurationV1.hpp │ │ │ ├── LoadConfigurationV2.hpp │ │ │ ├── LoadConfigurationV3.hpp │ │ │ ├── LoadConfigurationV4.hpp │ │ │ ├── LoadConfigurationV5.hpp │ │ │ ├── LoadConfigurationV6.hpp │ │ │ └── LoadConfigurationV7.hpp │ │ ├── OptionalHeader.hpp │ │ ├── Parser.hpp │ │ ├── Pogo.hpp │ │ ├── PogoEntry.hpp │ │ ├── Relocation.hpp │ │ ├── RelocationEntry.hpp │ │ ├── ResourceData.hpp │ │ ├── ResourceDirectory.hpp │ │ ├── ResourceNode.hpp │ │ ├── ResourcesManager.hpp │ │ ├── RichEntry.hpp │ │ ├── RichHeader.hpp │ │ ├── Section.hpp │ │ ├── Symbol.hpp │ │ ├── TLS.hpp │ │ ├── enums.hpp │ │ ├── enums.inc │ │ ├── hash.hpp │ │ ├── json.hpp │ │ ├── resources │ │ │ ├── LangCodeItem.hpp │ │ │ ├── ResourceAccelerator.hpp │ │ │ ├── ResourceDialog.hpp │ │ │ ├── ResourceDialogItem.hpp │ │ │ ├── ResourceFixedFileInfo.hpp │ │ │ ├── ResourceIcon.hpp │ │ │ ├── ResourceStringFileInfo.hpp │ │ │ ├── ResourceStringTable.hpp │ │ │ ├── ResourceVarFileInfo.hpp │ │ │ └── ResourceVersion.hpp │ │ ├── signature │ │ │ ├── Attribute.hpp │ │ │ ├── ContentInfo.hpp │ │ │ ├── OIDToString.hpp │ │ │ ├── RsaInfo.hpp │ │ │ ├── Signature.hpp │ │ │ ├── SignatureParser.hpp │ │ │ ├── SignerInfo.hpp │ │ │ ├── attributes.hpp │ │ │ ├── attributes │ │ │ │ ├── ContentType.hpp │ │ │ │ ├── GenericType.hpp │ │ │ │ ├── MsCounterSign.hpp │ │ │ │ ├── MsSpcNestedSignature.hpp │ │ │ │ ├── MsSpcStatementType.hpp │ │ │ │ ├── PKCS9AtSequenceNumber.hpp │ │ │ │ ├── PKCS9CounterSignature.hpp │ │ │ │ ├── PKCS9MessageDigest.hpp │ │ │ │ ├── PKCS9SigningTime.hpp │ │ │ │ └── SpcSpOpusInfo.hpp │ │ │ ├── types.hpp │ │ │ └── x509.hpp │ │ ├── undef.h │ │ └── utils.hpp │ │ ├── VDEX.hpp │ │ ├── VDEX │ │ ├── File.hpp │ │ ├── Header.hpp │ │ ├── Parser.hpp │ │ ├── hash.hpp │ │ ├── json.hpp │ │ ├── type_traits.hpp │ │ └── utils.hpp │ │ ├── Visitor.hpp │ │ ├── associative_iterators.hpp │ │ ├── config.h.in │ │ ├── enums.hpp │ │ ├── errors.hpp │ │ ├── exception.hpp │ │ ├── hash.hpp │ │ ├── iostream.hpp │ │ ├── iterators.hpp │ │ ├── json.hpp │ │ ├── logging.hpp │ │ ├── platforms.hpp │ │ ├── platforms │ │ ├── android.hpp │ │ └── android │ │ │ └── version.hpp │ │ ├── span.hpp │ │ ├── third-party │ │ ├── leaf.hpp │ │ └── span.hpp │ │ ├── to_json.hpp │ │ ├── types.hpp │ │ ├── utils.hpp │ │ ├── version.h.in │ │ ├── visibility.h │ │ └── visitor_macros.hpp ├── package │ ├── CMakeLists.txt │ ├── CPack.STGZ_Header.sh.in │ ├── README.rst │ └── Welcome ├── profiling │ ├── elf_profiler.cpp │ ├── macho_profiler.cpp │ └── oat_profiler.cpp ├── scripts │ ├── cmake-config │ │ ├── lief-android-arm.sh │ │ ├── lief-android-arm64.sh │ │ ├── lief-android-x86-64.sh │ │ ├── lief-android-x86.sh │ │ ├── lief-asan.sh │ │ ├── lief-elf.sh │ │ ├── lief-ftime-trace.sh │ │ └── lief-ios-aarch64.sh │ ├── docker │ │ ├── android-aarch64.sh │ │ ├── android-arm.sh │ │ ├── asan_check.sh │ │ ├── clang.sh │ │ ├── gcc.sh │ │ ├── linux-aarch64.sh │ │ ├── manylinux2014-aarch64.sh │ │ ├── manylinux2014-x86-64-sdk.sh │ │ ├── manylinux2014-x86-64.sh │ │ ├── run_archlinux.sh │ │ ├── run_linux.sh │ │ ├── run_linux_sdk.sh │ │ └── run_linux_test.sh │ ├── osx │ │ ├── package_ios.sh │ │ ├── package_sdk.sh │ │ └── package_sdk_aarch64.sh │ └── windows │ │ └── package_sdk.py ├── setup.cfg ├── setup.py ├── src │ ├── ART │ │ ├── CMakeLists.txt │ │ ├── EnumToString.cpp │ │ ├── File.cpp │ │ ├── Header.cpp │ │ ├── Header.tcc │ │ ├── Parser.cpp │ │ ├── Parser.tcc │ │ ├── Structures.cpp │ │ ├── Structures.hpp │ │ ├── hash.cpp │ │ ├── json.cpp │ │ ├── json_api.cpp │ │ ├── json_internal.hpp │ │ └── utils.cpp │ ├── Abstract │ │ ├── Binary.cpp │ │ ├── CMakeLists.txt │ │ ├── EnumToString.cpp │ │ ├── Function.cpp │ │ ├── Header.cpp │ │ ├── Parser.cpp │ │ ├── Relocation.cpp │ │ ├── Section.cpp │ │ ├── Section.tcc │ │ ├── Symbol.cpp │ │ ├── hash.cpp │ │ ├── json.cpp │ │ ├── json_api.cpp │ │ └── json_internal.hpp │ ├── BinaryStream │ │ ├── BinaryStream.cpp │ │ ├── Convert.cpp │ │ ├── FileStream.cpp │ │ ├── MemoryStream.cpp │ │ ├── SpanStream.cpp │ │ ├── VectorStream.cpp │ │ └── intmem.h │ ├── DEX │ │ ├── CMakeLists.txt │ │ ├── Class.cpp │ │ ├── CodeInfo.cpp │ │ ├── EnumToString.cpp │ │ ├── Field.cpp │ │ ├── File.cpp │ │ ├── Header.cpp │ │ ├── Header.tcc │ │ ├── MapItem.cpp │ │ ├── MapList.cpp │ │ ├── Method.cpp │ │ ├── Parser.cpp │ │ ├── Parser.tcc │ │ ├── Prototype.cpp │ │ ├── Structures.hpp │ │ ├── Type.cpp │ │ ├── hash.cpp │ │ ├── instructions.cpp │ │ ├── json.cpp │ │ ├── json_api.cpp │ │ ├── json_internal.hpp │ │ └── utils.cpp │ ├── ELF │ │ ├── Binary.cpp │ │ ├── Binary.tcc │ │ ├── Builder.cpp │ │ ├── Builder.tcc │ │ ├── CMakeLists.txt │ │ ├── Convert.cpp │ │ ├── DataHandler │ │ │ ├── Handler.cpp │ │ │ ├── Handler.hpp │ │ │ ├── Node.cpp │ │ │ └── Node.hpp │ │ ├── DynamicEntry.cpp │ │ ├── DynamicEntryArray.cpp │ │ ├── DynamicEntryFlags.cpp │ │ ├── DynamicEntryLibrary.cpp │ │ ├── DynamicEntryRpath.cpp │ │ ├── DynamicEntryRunPath.cpp │ │ ├── DynamicSharedObject.cpp │ │ ├── EnumToString.cpp │ │ ├── ExeLayout.hpp │ │ ├── GnuHash.cpp │ │ ├── Header.cpp │ │ ├── Layout.cpp │ │ ├── Layout.hpp │ │ ├── Note.cpp │ │ ├── NoteDetails.cpp │ │ ├── NoteDetails │ │ │ ├── AndroidNote.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── NoteAbi.cpp │ │ │ └── core │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CoreAuxv.cpp │ │ │ │ ├── CoreAuxv.tcc │ │ │ │ ├── CoreFile.cpp │ │ │ │ ├── CoreFile.tcc │ │ │ │ ├── CorePrPsInfo.cpp │ │ │ │ ├── CorePrPsInfo.tcc │ │ │ │ ├── CorePrStatus.cpp │ │ │ │ ├── CorePrStatus.tcc │ │ │ │ └── CoreSigInfo.cpp │ │ ├── ObjectFileLayout.hpp │ │ ├── Parser.cpp │ │ ├── Parser.tcc │ │ ├── Relocation.cpp │ │ ├── Section.cpp │ │ ├── Segment.cpp │ │ ├── SizingInfo.hpp │ │ ├── Structures.hpp │ │ ├── Symbol.cpp │ │ ├── SymbolVersion.cpp │ │ ├── SymbolVersionAux.cpp │ │ ├── SymbolVersionAuxRequirement.cpp │ │ ├── SymbolVersionDefinition.cpp │ │ ├── SymbolVersionRequirement.cpp │ │ ├── SysvHash.cpp │ │ ├── hash.cpp │ │ ├── json.cpp │ │ ├── json_api.cpp │ │ ├── json_internal.hpp │ │ ├── structures.inc │ │ └── utils.cpp │ ├── MachO │ │ ├── Binary.cpp │ │ ├── Binary.tcc │ │ ├── BinaryParser.cpp │ │ ├── BinaryParser.tcc │ │ ├── BindingInfo.cpp │ │ ├── BuildVersion.cpp │ │ ├── Builder.cpp │ │ ├── Builder.tcc │ │ ├── CMakeLists.txt │ │ ├── ChainedBindingInfo.cpp │ │ ├── ChainedFixup.cpp │ │ ├── ChainedFixup.hpp │ │ ├── CodeSignature.cpp │ │ ├── CodeSignatureDir.cpp │ │ ├── Convert.cpp │ │ ├── DataCodeEntry.cpp │ │ ├── DataInCode.cpp │ │ ├── DyldBindingInfo.cpp │ │ ├── DyldChainedFixups.cpp │ │ ├── DyldEnvironment.cpp │ │ ├── DyldExportsTrie.cpp │ │ ├── DyldInfo.cpp │ │ ├── DylibCommand.cpp │ │ ├── DylinkerCommand.cpp │ │ ├── DynamicSymbolCommand.cpp │ │ ├── EncryptionInfo.cpp │ │ ├── EnumToString.cpp │ │ ├── ExportInfo.cpp │ │ ├── FatBinary.cpp │ │ ├── FilesetCommand.cpp │ │ ├── FunctionStarts.cpp │ │ ├── Header.cpp │ │ ├── LinkEdit.cpp │ │ ├── LinkerOptHint.cpp │ │ ├── LoadCommand.cpp │ │ ├── MainCommand.cpp │ │ ├── Parser.cpp │ │ ├── ParserConfig.cpp │ │ ├── RPathCommand.cpp │ │ ├── Relocation.cpp │ │ ├── RelocationDyld.cpp │ │ ├── RelocationFixup.cpp │ │ ├── RelocationObject.cpp │ │ ├── Section.cpp │ │ ├── SegmentCommand.cpp │ │ ├── SegmentSplitInfo.cpp │ │ ├── SourceVersion.cpp │ │ ├── Structures.hpp │ │ ├── SubFramework.cpp │ │ ├── Symbol.cpp │ │ ├── SymbolCommand.cpp │ │ ├── ThreadCommand.cpp │ │ ├── TrieNode.cpp │ │ ├── TrieNode.hpp │ │ ├── TwoLevelHints.cpp │ │ ├── UUIDCommand.cpp │ │ ├── VersionMin.cpp │ │ ├── exports_trie.cpp │ │ ├── exports_trie.hpp │ │ ├── hash.cpp │ │ ├── json.cpp │ │ ├── json_api.cpp │ │ ├── json_internal.hpp │ │ ├── structures.inc │ │ └── utils.cpp │ ├── OAT │ │ ├── Binary.cpp │ │ ├── CMakeLists.txt │ │ ├── Class.cpp │ │ ├── DexFile.cpp │ │ ├── EnumToString.cpp │ │ ├── Header.cpp │ │ ├── Header.tcc │ │ ├── Method.cpp │ │ ├── Parser.cpp │ │ ├── Parser.tcc │ │ ├── Structures.hpp │ │ ├── hash.cpp │ │ ├── json.cpp │ │ ├── json_api.cpp │ │ ├── json_internal.hpp │ │ ├── oat_124.tcc │ │ ├── oat_131.tcc │ │ ├── oat_64.tcc │ │ ├── oat_79.tcc │ │ └── utils.cpp │ ├── Object.cpp │ ├── Object.tcc │ ├── PE │ │ ├── Binary.cpp │ │ ├── Builder.cpp │ │ ├── Builder.tcc │ │ ├── CMakeLists.txt │ │ ├── CodeIntegrity.cpp │ │ ├── CodeView.cpp │ │ ├── CodeViewPDB.cpp │ │ ├── Convert.cpp │ │ ├── DataDirectory.cpp │ │ ├── Debug.cpp │ │ ├── DelayImport.cpp │ │ ├── DelayImportEntry.cpp │ │ ├── DosHeader.cpp │ │ ├── EnumToString.cpp │ │ ├── Export.cpp │ │ ├── ExportEntry.cpp │ │ ├── Header.cpp │ │ ├── Import.cpp │ │ ├── ImportEntry.cpp │ │ ├── LoadConfigurations │ │ │ ├── LoadConfiguration.cpp │ │ │ ├── LoadConfiguration.tcc │ │ │ ├── LoadConfigurationV0.cpp │ │ │ ├── LoadConfigurationV0.tcc │ │ │ ├── LoadConfigurationV1.cpp │ │ │ ├── LoadConfigurationV1.tcc │ │ │ ├── LoadConfigurationV2.cpp │ │ │ ├── LoadConfigurationV2.tcc │ │ │ ├── LoadConfigurationV3.cpp │ │ │ ├── LoadConfigurationV3.tcc │ │ │ ├── LoadConfigurationV4.cpp │ │ │ ├── LoadConfigurationV4.tcc │ │ │ ├── LoadConfigurationV5.cpp │ │ │ ├── LoadConfigurationV5.tcc │ │ │ ├── LoadConfigurationV6.cpp │ │ │ ├── LoadConfigurationV6.tcc │ │ │ ├── LoadConfigurationV7.cpp │ │ │ ├── LoadConfigurationV7.tcc │ │ │ └── LoadConfigurations.tcc │ │ ├── OptionalHeader.cpp │ │ ├── Parser.cpp │ │ ├── Parser.tcc │ │ ├── Pogo.cpp │ │ ├── PogoEntry.cpp │ │ ├── Relocation.cpp │ │ ├── RelocationEntry.cpp │ │ ├── ResourceData.cpp │ │ ├── ResourceDirectory.cpp │ │ ├── ResourceNode.cpp │ │ ├── ResourcesManager.cpp │ │ ├── ResourcesParser.cpp │ │ ├── ResourcesParser.hpp │ │ ├── RichEntry.cpp │ │ ├── RichHeader.cpp │ │ ├── Section.cpp │ │ ├── Structures.hpp │ │ ├── Symbol.cpp │ │ ├── TLS.cpp │ │ ├── hash.cpp │ │ ├── json.cpp │ │ ├── json_api.cpp │ │ ├── json_internal.hpp │ │ ├── resources │ │ │ ├── LangCodeItem.cpp │ │ │ ├── ResourceAccelerator.cpp │ │ │ ├── ResourceDialog.cpp │ │ │ ├── ResourceDialogItem.cpp │ │ │ ├── ResourceFixedFileInfo.cpp │ │ │ ├── ResourceIcon.cpp │ │ │ ├── ResourceStringFileInfo.cpp │ │ │ ├── ResourceStringTable.cpp │ │ │ ├── ResourceVarFileInfo.cpp │ │ │ └── ResourceVersion.cpp │ │ ├── signature │ │ │ ├── Attribute.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── ContentInfo.cpp │ │ │ ├── OIDToString.cpp │ │ │ ├── RsaInfo.cpp │ │ │ ├── Signature.cpp │ │ │ ├── SignatureParser.cpp │ │ │ ├── SignerInfo.cpp │ │ │ ├── attributes │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ContentType.cpp │ │ │ │ ├── GenericType.cpp │ │ │ │ ├── MsCounterSign.cpp │ │ │ │ ├── MsSpcNestedSignature.cpp │ │ │ │ ├── MsSpcStatementType.cpp │ │ │ │ ├── PKCS9AtSequenceNumber.cpp │ │ │ │ ├── PKCS9CounterSignature.cpp │ │ │ │ ├── PKCS9MessageDigest.cpp │ │ │ │ ├── PKCS9SigningTime.cpp │ │ │ │ └── SpcSpOpusInfo.cpp │ │ │ ├── pkcs7.h │ │ │ └── x509.cpp │ │ ├── structures.inc │ │ ├── utils.cpp │ │ └── utils │ │ │ ├── ordinals_lookup_tables │ │ │ ├── advapi32_dll_lookup.hpp │ │ │ ├── comctl32_dll_lookup.hpp │ │ │ ├── gdi32_dll_lookup.hpp │ │ │ ├── kernel32_dll_lookup.hpp │ │ │ ├── libraries_table.hpp │ │ │ ├── mfc42u_dll_lookup.hpp │ │ │ ├── msvcp110_dll_lookup.hpp │ │ │ ├── msvcp120_dll_lookup.hpp │ │ │ ├── msvcr100_dll_lookup.hpp │ │ │ ├── msvcr110_dll_lookup.hpp │ │ │ ├── msvcr120_dll_lookup.hpp │ │ │ ├── msvcrt_dll_lookup.hpp │ │ │ ├── ntdll_dll_lookup.hpp │ │ │ ├── ole32_dll_lookup.hpp │ │ │ ├── oleaut32_dll_lookup.hpp │ │ │ ├── shcore_dll_lookup.hpp │ │ │ ├── shell32_dll_lookup.hpp │ │ │ ├── shlwapi_dll_lookup.hpp │ │ │ ├── user32_dll_lookup.hpp │ │ │ └── ws2_32_dll_lookup.hpp │ │ │ └── ordinals_lookup_tables_std │ │ │ ├── README.md │ │ │ ├── libraries_table.hpp │ │ │ ├── oleauth32_dll_lookup.hpp │ │ │ └── ws2_32_dll_lookup.hpp │ ├── VDEX │ │ ├── CMakeLists.txt │ │ ├── File.cpp │ │ ├── Header.cpp │ │ ├── Header.tcc │ │ ├── Parser.cpp │ │ ├── Parser.tcc │ │ ├── Structures.hpp │ │ ├── hash.cpp │ │ ├── json.cpp │ │ ├── json_api.cpp │ │ ├── json_internal.hpp │ │ └── utils.cpp │ ├── Visitor.cpp │ ├── compiler_support.h.in │ ├── errors.cpp │ ├── exception.cpp │ ├── frozen.hpp │ ├── hash_stream.cpp │ ├── hash_stream.hpp │ ├── internal_utils.cpp │ ├── internal_utils.hpp │ ├── iostream.cpp │ ├── json_api.cpp │ ├── logging.cpp │ ├── logging.hpp │ ├── platforms │ │ ├── CMakeLists.txt │ │ └── android │ │ │ ├── CMakeLists.txt │ │ │ └── version.cpp │ ├── third-party │ │ └── utfcpp.hpp │ ├── utils.cpp │ └── visitors │ │ ├── hash.cpp │ │ ├── json.cpp │ │ └── json.hpp ├── tests │ ├── CMakeLists.txt │ ├── abstract │ │ └── abstract_tests.py │ ├── api │ │ ├── CMakeLists.txt │ │ └── test_python.py │ ├── art │ │ ├── CMakeLists.txt │ │ └── art_test.py │ ├── dex │ │ ├── CMakeLists.txt │ │ └── dex_test.py │ ├── dl_samples.py │ ├── elf │ │ ├── CMakeLists.txt │ │ ├── add_content.py │ │ ├── add_section.py │ │ ├── add_segment.py │ │ ├── change_interpreter.py │ │ ├── elf_test.py │ │ ├── fuzzing.py.in │ │ ├── hash_tests.py │ │ ├── hello_lief.bin │ │ ├── hello_lief_aarch64.bin │ │ ├── modify_relocations.py │ │ ├── remove_section.py │ │ ├── replace_segment.py │ │ ├── test.py │ │ ├── test_466.py │ │ ├── test_747.py │ │ ├── test_760.py │ │ ├── test_bin2lib.py │ │ ├── test_binary_size.py │ │ ├── test_bss.py │ │ ├── test_builder.py │ │ ├── test_core.py │ │ ├── test_dynamic.py │ │ ├── test_empty_gnu_hash.py │ │ ├── test_equality.py │ │ ├── test_notes.py │ │ ├── test_object_files.py │ │ ├── test_parser.py │ │ ├── test_section_frame.py │ │ ├── test_static.py │ │ └── test_symbol_versions.py │ ├── macho │ │ ├── CMakeLists.txt │ │ ├── objc │ │ │ └── hello.m │ │ ├── opcodes │ │ │ ├── MachO64_x86-64_binary_lazy-bind-LLVM.bind_opcodes │ │ │ ├── MachO64_x86-64_binary_lazy-bind-LLVM.export_trie │ │ │ ├── MachO64_x86-64_binary_lazy-bind-LLVM.lazy_bind_opcodes │ │ │ └── MachO64_x86-64_binary_rebase-LLVM.rebase_opcodes │ │ ├── test_bin2lib.py │ │ ├── test_builder.py │ │ ├── test_builder_config.py │ │ ├── test_dyld.py │ │ ├── test_dyld_chained.py │ │ ├── test_exports_trie.py │ │ ├── test_fat_builder.py │ │ ├── test_generic.py │ │ ├── test_library_injection.py │ │ ├── test_opcodes.py │ │ ├── test_relocations.py │ │ ├── test_shellcode.py │ │ └── test_symbols.py │ ├── oat │ │ ├── CMakeLists.txt │ │ └── oat_test.py │ ├── pe │ │ ├── CMakeLists.txt │ │ ├── builder.py │ │ ├── test_authenticode.py │ │ ├── test_builder.py │ │ ├── test_delay_imports.py │ │ ├── test_forward_information.py │ │ ├── test_hooking.py │ │ ├── test_imphash.py │ │ ├── test_loadconfig.py │ │ ├── test_parser.py │ │ ├── test_pe.py │ │ ├── test_res_fileinfo.py │ │ └── test_resources.py │ ├── sanitizer │ │ ├── CMakeLists.txt │ │ └── sanitize_checks.cpp │ ├── test_iterators.cpp │ ├── utils.py │ └── vdex │ │ ├── CMakeLists.txt │ │ ├── VDEX_06_AArch64_Telecom_quickinfo.json │ │ ├── VDEX_10_AArch64_Telecom_quickinfo.json │ │ └── vdex_test.py └── third-party │ ├── Catch2-2.13.8.zip │ ├── Melkor_ELF_Fuzzer-ac2495b.zip │ ├── frozen-e6ddc43.zip │ ├── json-3.9.1.zip │ ├── leaf-a781140.zip │ ├── mbedtls-3.1.0.zip │ ├── pybind11-2.9.2.zip │ ├── spdlog-1.10.0.zip │ ├── tcb-span-427f6bd.zip │ └── utfcpp-3.1.2.zip └── vendorpull ├── .editorconfig ├── LICENSE ├── Makefile ├── README.md ├── bootstrap ├── include ├── assert.sh ├── dependencies.sh ├── masker.sh ├── patcher.sh ├── tmpdir.sh └── vcs │ ├── git.sh │ └── http.sh ├── pull ├── src ├── bootstrap.sh └── pull.sh ├── targets.mk └── test ├── bootstrap-pristine.sh ├── bootstrap-update.sh ├── data └── 0001-Change-bootstrap-to-use-bin-bash.patch ├── fail-non-git.sh ├── file-download-hash-mismatch.sh ├── file-download.sh ├── git-root.sh ├── idempotent-bootstrap.sh ├── mask.sh └── patch.sh /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/semantic-commits.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/.github/workflows/semantic-commits.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/.npmignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @RaisinTen @dsanders11 @jviotti @robertgzr 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEPENDENCIES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/DEPENDENCIES -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/LICENSE -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/README.markdown -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/package.json -------------------------------------------------------------------------------- /postject-api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/postject-api.h -------------------------------------------------------------------------------- /scripts/build.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/scripts/build.mjs -------------------------------------------------------------------------------- /src/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/src/api.js -------------------------------------------------------------------------------- /src/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/src/cli.js -------------------------------------------------------------------------------- /src/postject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/src/postject.cpp -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/cli.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/test/cli.mjs -------------------------------------------------------------------------------- /test/test.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/test/test.S -------------------------------------------------------------------------------- /test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/test/test.c -------------------------------------------------------------------------------- /test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/test/test.cpp -------------------------------------------------------------------------------- /vendor/lief/.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/.circleci/config.yml -------------------------------------------------------------------------------- /vendor/lief/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/.clang-tidy -------------------------------------------------------------------------------- /vendor/lief/.dockerignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /vendor/lief/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/AUTHORS -------------------------------------------------------------------------------- /vendor/lief/Acknowledgements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/Acknowledgements -------------------------------------------------------------------------------- /vendor/lief/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/CHANGELOG -------------------------------------------------------------------------------- /vendor/lief/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/lief/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/Dockerfile -------------------------------------------------------------------------------- /vendor/lief/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/LICENSE -------------------------------------------------------------------------------- /vendor/lief/LIEF.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/LIEF.pc.in -------------------------------------------------------------------------------- /vendor/lief/LIEFConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/LIEFConfig.cmake.in -------------------------------------------------------------------------------- /vendor/lief/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/MANIFEST.in -------------------------------------------------------------------------------- /vendor/lief/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/README.md -------------------------------------------------------------------------------- /vendor/lief/api/c/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/lief/api/c/ELF/Binary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/ELF/Binary.cpp -------------------------------------------------------------------------------- /vendor/lief/api/c/ELF/Binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/ELF/Binary.hpp -------------------------------------------------------------------------------- /vendor/lief/api/c/ELF/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/ELF/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/lief/api/c/ELF/DynamicEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/ELF/DynamicEntry.cpp -------------------------------------------------------------------------------- /vendor/lief/api/c/ELF/DynamicEntry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/ELF/DynamicEntry.hpp -------------------------------------------------------------------------------- /vendor/lief/api/c/ELF/EnumToString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/ELF/EnumToString.cpp -------------------------------------------------------------------------------- /vendor/lief/api/c/ELF/Header.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/ELF/Header.cpp -------------------------------------------------------------------------------- /vendor/lief/api/c/ELF/Header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/ELF/Header.hpp -------------------------------------------------------------------------------- /vendor/lief/api/c/ELF/Section.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/ELF/Section.cpp -------------------------------------------------------------------------------- /vendor/lief/api/c/ELF/Section.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/ELF/Section.hpp -------------------------------------------------------------------------------- /vendor/lief/api/c/ELF/Segment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/ELF/Segment.cpp -------------------------------------------------------------------------------- /vendor/lief/api/c/ELF/Segment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/ELF/Segment.hpp -------------------------------------------------------------------------------- /vendor/lief/api/c/ELF/Symbol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/ELF/Symbol.cpp -------------------------------------------------------------------------------- /vendor/lief/api/c/ELF/Symbol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/ELF/Symbol.hpp -------------------------------------------------------------------------------- /vendor/lief/api/c/ELF/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/ELF/utils.cpp -------------------------------------------------------------------------------- /vendor/lief/api/c/MachO/Binary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/MachO/Binary.cpp -------------------------------------------------------------------------------- /vendor/lief/api/c/MachO/Binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/MachO/Binary.hpp -------------------------------------------------------------------------------- /vendor/lief/api/c/MachO/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/MachO/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/lief/api/c/MachO/EnumToString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/MachO/EnumToString.cpp -------------------------------------------------------------------------------- /vendor/lief/api/c/MachO/Header.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/MachO/Header.cpp -------------------------------------------------------------------------------- /vendor/lief/api/c/MachO/Header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/MachO/Header.hpp -------------------------------------------------------------------------------- /vendor/lief/api/c/MachO/LoadCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/MachO/LoadCommand.cpp -------------------------------------------------------------------------------- /vendor/lief/api/c/MachO/LoadCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/MachO/LoadCommand.hpp -------------------------------------------------------------------------------- /vendor/lief/api/c/MachO/Parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/MachO/Parser.cpp -------------------------------------------------------------------------------- /vendor/lief/api/c/MachO/Section.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/MachO/Section.cpp -------------------------------------------------------------------------------- /vendor/lief/api/c/MachO/Section.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/MachO/Section.hpp -------------------------------------------------------------------------------- /vendor/lief/api/c/MachO/Segment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/MachO/Segment.cpp -------------------------------------------------------------------------------- /vendor/lief/api/c/MachO/Segment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/MachO/Segment.hpp -------------------------------------------------------------------------------- /vendor/lief/api/c/MachO/Symbol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/MachO/Symbol.cpp -------------------------------------------------------------------------------- /vendor/lief/api/c/MachO/Symbol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/MachO/Symbol.hpp -------------------------------------------------------------------------------- /vendor/lief/api/c/PE/Binary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/PE/Binary.cpp -------------------------------------------------------------------------------- /vendor/lief/api/c/PE/Binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/PE/Binary.hpp -------------------------------------------------------------------------------- /vendor/lief/api/c/PE/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/PE/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/lief/api/c/PE/DataDirectory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/PE/DataDirectory.cpp -------------------------------------------------------------------------------- /vendor/lief/api/c/PE/DataDirectory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/PE/DataDirectory.hpp -------------------------------------------------------------------------------- /vendor/lief/api/c/PE/DosHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/PE/DosHeader.cpp -------------------------------------------------------------------------------- /vendor/lief/api/c/PE/DosHeader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/PE/DosHeader.hpp -------------------------------------------------------------------------------- /vendor/lief/api/c/PE/EnumToString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/PE/EnumToString.cpp -------------------------------------------------------------------------------- /vendor/lief/api/c/PE/Header.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/PE/Header.cpp -------------------------------------------------------------------------------- /vendor/lief/api/c/PE/Header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/PE/Header.hpp -------------------------------------------------------------------------------- /vendor/lief/api/c/PE/Import.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/PE/Import.cpp -------------------------------------------------------------------------------- /vendor/lief/api/c/PE/Import.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/PE/Import.hpp -------------------------------------------------------------------------------- /vendor/lief/api/c/PE/ImportEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/PE/ImportEntry.cpp -------------------------------------------------------------------------------- /vendor/lief/api/c/PE/ImportEntry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/PE/ImportEntry.hpp -------------------------------------------------------------------------------- /vendor/lief/api/c/PE/OptionalHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/PE/OptionalHeader.cpp -------------------------------------------------------------------------------- /vendor/lief/api/c/PE/OptionalHeader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/PE/OptionalHeader.hpp -------------------------------------------------------------------------------- /vendor/lief/api/c/PE/Section.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/PE/Section.cpp -------------------------------------------------------------------------------- /vendor/lief/api/c/PE/Section.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/PE/Section.hpp -------------------------------------------------------------------------------- /vendor/lief/api/c/include/LIEF/ELF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/include/LIEF/ELF.h -------------------------------------------------------------------------------- /vendor/lief/api/c/include/LIEF/ELF/Binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/include/LIEF/ELF/Binary.h -------------------------------------------------------------------------------- /vendor/lief/api/c/include/LIEF/ELF/Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/include/LIEF/ELF/Header.h -------------------------------------------------------------------------------- /vendor/lief/api/c/include/LIEF/ELF/Section.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/include/LIEF/ELF/Section.h -------------------------------------------------------------------------------- /vendor/lief/api/c/include/LIEF/ELF/Segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/include/LIEF/ELF/Segment.h -------------------------------------------------------------------------------- /vendor/lief/api/c/include/LIEF/ELF/Symbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/include/LIEF/ELF/Symbol.h -------------------------------------------------------------------------------- /vendor/lief/api/c/include/LIEF/ELF/enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/include/LIEF/ELF/enums.h -------------------------------------------------------------------------------- /vendor/lief/api/c/include/LIEF/ELF/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/include/LIEF/ELF/utils.h -------------------------------------------------------------------------------- /vendor/lief/api/c/include/LIEF/LIEF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/include/LIEF/LIEF.h -------------------------------------------------------------------------------- /vendor/lief/api/c/include/LIEF/MachO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/include/LIEF/MachO.h -------------------------------------------------------------------------------- /vendor/lief/api/c/include/LIEF/MachO/Binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/include/LIEF/MachO/Binary.h -------------------------------------------------------------------------------- /vendor/lief/api/c/include/LIEF/MachO/Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/include/LIEF/MachO/Header.h -------------------------------------------------------------------------------- /vendor/lief/api/c/include/LIEF/MachO/Section.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/include/LIEF/MachO/Section.h -------------------------------------------------------------------------------- /vendor/lief/api/c/include/LIEF/MachO/Segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/include/LIEF/MachO/Segment.h -------------------------------------------------------------------------------- /vendor/lief/api/c/include/LIEF/MachO/Symbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/include/LIEF/MachO/Symbol.h -------------------------------------------------------------------------------- /vendor/lief/api/c/include/LIEF/MachO/enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/include/LIEF/MachO/enums.h -------------------------------------------------------------------------------- /vendor/lief/api/c/include/LIEF/PE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/include/LIEF/PE.h -------------------------------------------------------------------------------- /vendor/lief/api/c/include/LIEF/PE/Binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/include/LIEF/PE/Binary.h -------------------------------------------------------------------------------- /vendor/lief/api/c/include/LIEF/PE/DosHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/include/LIEF/PE/DosHeader.h -------------------------------------------------------------------------------- /vendor/lief/api/c/include/LIEF/PE/Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/include/LIEF/PE/Header.h -------------------------------------------------------------------------------- /vendor/lief/api/c/include/LIEF/PE/Import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/include/LIEF/PE/Import.h -------------------------------------------------------------------------------- /vendor/lief/api/c/include/LIEF/PE/Section.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/include/LIEF/PE/Section.h -------------------------------------------------------------------------------- /vendor/lief/api/c/include/LIEF/PE/enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/include/LIEF/PE/enums.h -------------------------------------------------------------------------------- /vendor/lief/api/c/include/LIEF/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/include/LIEF/logging.h -------------------------------------------------------------------------------- /vendor/lief/api/c/include/LIEF/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/include/LIEF/types.h -------------------------------------------------------------------------------- /vendor/lief/api/c/logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/c/logging.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/ART/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/ART/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/lief/api/python/ART/objects/pyFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/ART/objects/pyFile.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/ART/pyART.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/ART/pyART.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/ART/pyART.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/ART/pyART.hpp -------------------------------------------------------------------------------- /vendor/lief/api/python/ART/pyEnums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/ART/pyEnums.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/ART/pyUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/ART/pyUtils.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/Abstract/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/Abstract/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/lief/api/python/Abstract/pyAbstract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/Abstract/pyAbstract.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/Abstract/pyAbstract.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/Abstract/pyAbstract.hpp -------------------------------------------------------------------------------- /vendor/lief/api/python/Abstract/pyEnums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/Abstract/pyEnums.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/lief/api/python/DEX/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/DEX/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/lief/api/python/DEX/objects/pyClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/DEX/objects/pyClass.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/DEX/objects/pyField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/DEX/objects/pyField.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/DEX/objects/pyFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/DEX/objects/pyFile.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/DEX/objects/pyType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/DEX/objects/pyType.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/DEX/pyDEX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/DEX/pyDEX.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/DEX/pyDEX.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/DEX/pyDEX.hpp -------------------------------------------------------------------------------- /vendor/lief/api/python/DEX/pyEnums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/DEX/pyEnums.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/DEX/pyUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/DEX/pyUtils.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/ELF/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/ELF/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/lief/api/python/ELF/objects/pyNote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/ELF/objects/pyNote.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/ELF/pyELF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/ELF/pyELF.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/ELF/pyELF.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/ELF/pyELF.hpp -------------------------------------------------------------------------------- /vendor/lief/api/python/ELF/pyEnums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/ELF/pyEnums.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/ELF/pySizes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/ELF/pySizes.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/MachO/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/MachO/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/lief/api/python/MachO/pyEnums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/MachO/pyEnums.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/MachO/pyMachO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/MachO/pyMachO.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/MachO/pyMachO.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/MachO/pyMachO.hpp -------------------------------------------------------------------------------- /vendor/lief/api/python/MachO/pyUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/MachO/pyUtils.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/OAT/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/OAT/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/lief/api/python/OAT/objects/pyClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/OAT/objects/pyClass.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/OAT/pyEnums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/OAT/pyEnums.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/OAT/pyOAT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/OAT/pyOAT.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/OAT/pyOAT.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/OAT/pyOAT.hpp -------------------------------------------------------------------------------- /vendor/lief/api/python/OAT/pyUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/OAT/pyUtils.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/PE/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/PE/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/lief/api/python/PE/objects/pyBinary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/PE/objects/pyBinary.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/PE/objects/pyDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/PE/objects/pyDebug.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/PE/objects/pyExport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/PE/objects/pyExport.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/PE/objects/pyHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/PE/objects/pyHeader.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/PE/objects/pyImport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/PE/objects/pyImport.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/PE/objects/pyParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/PE/objects/pyParser.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/PE/objects/pyPogo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/PE/objects/pyPogo.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/PE/objects/pySymbol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/PE/objects/pySymbol.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/PE/objects/pyTLS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/PE/objects/pyTLS.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/PE/pyEnums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/PE/pyEnums.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/PE/pyPE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/PE/pyPE.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/PE/pyPE.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/PE/pyPE.hpp -------------------------------------------------------------------------------- /vendor/lief/api/python/PE/pyUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/PE/pyUtils.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/VDEX/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/VDEX/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/lief/api/python/VDEX/objects/pyFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/VDEX/objects/pyFile.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/VDEX/pyUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/VDEX/pyUtils.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/VDEX/pyVDEX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/VDEX/pyVDEX.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/VDEX/pyVDEX.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/VDEX/pyVDEX.hpp -------------------------------------------------------------------------------- /vendor/lief/api/python/encoding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/encoding.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/encoding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/encoding.hpp -------------------------------------------------------------------------------- /vendor/lief/api/python/enums_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/enums_wrapper.hpp -------------------------------------------------------------------------------- /vendor/lief/api/python/pyErr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/pyErr.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/pyErr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/pyErr.hpp -------------------------------------------------------------------------------- /vendor/lief/api/python/pyExceptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/pyExceptions.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/pyHash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/pyHash.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/pyIterators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/pyIterators.hpp -------------------------------------------------------------------------------- /vendor/lief/api/python/pyJson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/pyJson.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/pyLIEF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/pyLIEF.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/pyLIEF.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/pyLIEF.hpp -------------------------------------------------------------------------------- /vendor/lief/api/python/pyLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/pyLogger.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/pyObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/pyObject.cpp -------------------------------------------------------------------------------- /vendor/lief/api/python/pyUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/api/python/pyUtils.cpp -------------------------------------------------------------------------------- /vendor/lief/cmake/ChooseMSVCCRT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/cmake/ChooseMSVCCRT.cmake -------------------------------------------------------------------------------- /vendor/lief/cmake/FindPythonLibsNew.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/cmake/FindPythonLibsNew.cmake -------------------------------------------------------------------------------- /vendor/lief/cmake/FindSphinx.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/cmake/FindSphinx.cmake -------------------------------------------------------------------------------- /vendor/lief/cmake/LIEFApi.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/cmake/LIEFApi.cmake -------------------------------------------------------------------------------- /vendor/lief/cmake/LIEFCompilerDetection.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/cmake/LIEFCompilerDetection.cmake -------------------------------------------------------------------------------- /vendor/lief/cmake/LIEFCompilerFlags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/cmake/LIEFCompilerFlags.cmake -------------------------------------------------------------------------------- /vendor/lief/cmake/LIEFDependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/cmake/LIEFDependencies.cmake -------------------------------------------------------------------------------- /vendor/lief/cmake/LIEFGit.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/cmake/LIEFGit.cmake -------------------------------------------------------------------------------- /vendor/lief/cmake/LIEFOptions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/cmake/LIEFOptions.cmake -------------------------------------------------------------------------------- /vendor/lief/cmake/cpack.config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/cmake/cpack.config.cmake -------------------------------------------------------------------------------- /vendor/lief/cmake/ios.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/cmake/ios.toolchain.cmake -------------------------------------------------------------------------------- /vendor/lief/cmake/strip.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/cmake/strip.cmake -------------------------------------------------------------------------------- /vendor/lief/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/lief/doc/doxygen/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/doxygen/Doxyfile -------------------------------------------------------------------------------- /vendor/lief/doc/doxygen/doxygen_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/doxygen/doxygen_index.md -------------------------------------------------------------------------------- /vendor/lief/doc/doxygen/logo_lief_55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/doxygen/logo_lief_55.png -------------------------------------------------------------------------------- /vendor/lief/doc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/requirements.txt -------------------------------------------------------------------------------- /vendor/lief/doc/sphinx/_static/archi_elf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/sphinx/_static/archi_elf.png -------------------------------------------------------------------------------- /vendor/lief/doc/sphinx/_static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/sphinx/_static/css/custom.css -------------------------------------------------------------------------------- /vendor/lief/doc/sphinx/_static/example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/sphinx/_static/example.cpp -------------------------------------------------------------------------------- /vendor/lief/doc/sphinx/_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/sphinx/_static/favicon.ico -------------------------------------------------------------------------------- /vendor/lief/doc/sphinx/_static/iat3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/sphinx/_static/iat3.png -------------------------------------------------------------------------------- /vendor/lief/doc/sphinx/_static/iat4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/sphinx/_static/iat4.png -------------------------------------------------------------------------------- /vendor/lief/doc/sphinx/_static/logo_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/sphinx/_static/logo_blue.png -------------------------------------------------------------------------------- /vendor/lief/doc/sphinx/api/c/elf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/sphinx/api/c/elf.rst -------------------------------------------------------------------------------- /vendor/lief/doc/sphinx/api/c/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/sphinx/api/c/index.rst -------------------------------------------------------------------------------- /vendor/lief/doc/sphinx/api/c/logging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/sphinx/api/c/logging.rst -------------------------------------------------------------------------------- /vendor/lief/doc/sphinx/api/c/macho.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/sphinx/api/c/macho.rst -------------------------------------------------------------------------------- /vendor/lief/doc/sphinx/api/c/pe.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/sphinx/api/c/pe.rst -------------------------------------------------------------------------------- /vendor/lief/doc/sphinx/api/cpp/abstract.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/sphinx/api/cpp/abstract.rst -------------------------------------------------------------------------------- /vendor/lief/doc/sphinx/api/cpp/art.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/sphinx/api/cpp/art.rst -------------------------------------------------------------------------------- /vendor/lief/doc/sphinx/api/cpp/dex.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/sphinx/api/cpp/dex.rst -------------------------------------------------------------------------------- /vendor/lief/doc/sphinx/api/cpp/elf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/sphinx/api/cpp/elf.rst -------------------------------------------------------------------------------- /vendor/lief/doc/sphinx/api/cpp/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/sphinx/api/cpp/index.rst -------------------------------------------------------------------------------- /vendor/lief/doc/sphinx/api/cpp/macho.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/sphinx/api/cpp/macho.rst -------------------------------------------------------------------------------- /vendor/lief/doc/sphinx/api/cpp/oat.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/sphinx/api/cpp/oat.rst -------------------------------------------------------------------------------- /vendor/lief/doc/sphinx/api/cpp/pe.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/sphinx/api/cpp/pe.rst -------------------------------------------------------------------------------- /vendor/lief/doc/sphinx/api/cpp/vdex.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/sphinx/api/cpp/vdex.rst -------------------------------------------------------------------------------- /vendor/lief/doc/sphinx/api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/sphinx/api/index.rst -------------------------------------------------------------------------------- /vendor/lief/doc/sphinx/api/python/abstract.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/sphinx/api/python/abstract.rst -------------------------------------------------------------------------------- /vendor/lief/doc/sphinx/api/python/art.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/sphinx/api/python/art.rst -------------------------------------------------------------------------------- /vendor/lief/doc/sphinx/api/python/dex.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/sphinx/api/python/dex.rst -------------------------------------------------------------------------------- /vendor/lief/doc/sphinx/api/python/elf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/sphinx/api/python/elf.rst -------------------------------------------------------------------------------- /vendor/lief/doc/sphinx/api/python/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/sphinx/api/python/index.rst -------------------------------------------------------------------------------- /vendor/lief/doc/sphinx/api/python/macho.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/sphinx/api/python/macho.rst -------------------------------------------------------------------------------- /vendor/lief/doc/sphinx/api/python/oat.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/sphinx/api/python/oat.rst -------------------------------------------------------------------------------- /vendor/lief/doc/sphinx/api/python/pe.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/sphinx/api/python/pe.rst -------------------------------------------------------------------------------- /vendor/lief/doc/sphinx/api/python/vdex.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/sphinx/api/python/vdex.rst -------------------------------------------------------------------------------- /vendor/lief/doc/sphinx/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/sphinx/changelog.rst -------------------------------------------------------------------------------- /vendor/lief/doc/sphinx/compilation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/sphinx/compilation.rst -------------------------------------------------------------------------------- /vendor/lief/doc/sphinx/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/sphinx/conf.py -------------------------------------------------------------------------------- /vendor/lief/doc/sphinx/error_handling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/sphinx/error_handling.rst -------------------------------------------------------------------------------- /vendor/lief/doc/sphinx/formats/elf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/sphinx/formats/elf.rst -------------------------------------------------------------------------------- /vendor/lief/doc/sphinx/formats/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/sphinx/formats/index.rst -------------------------------------------------------------------------------- /vendor/lief/doc/sphinx/formats/pe.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/sphinx/formats/pe.rst -------------------------------------------------------------------------------- /vendor/lief/doc/sphinx/getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/sphinx/getting_started.rst -------------------------------------------------------------------------------- /vendor/lief/doc/sphinx/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/sphinx/index.rst -------------------------------------------------------------------------------- /vendor/lief/doc/sphinx/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/sphinx/installation.rst -------------------------------------------------------------------------------- /vendor/lief/doc/sphinx/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/sphinx/intro.rst -------------------------------------------------------------------------------- /vendor/lief/doc/sphinx/references.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/sphinx/references.rst -------------------------------------------------------------------------------- /vendor/lief/doc/sphinx/tutorials/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/doc/sphinx/tutorials/index.rst -------------------------------------------------------------------------------- /vendor/lief/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/examples/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/lief/examples/c/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/examples/c/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/lief/examples/c/elf_reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/examples/c/elf_reader.c -------------------------------------------------------------------------------- /vendor/lief/examples/c/macho_reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/examples/c/macho_reader.c -------------------------------------------------------------------------------- /vendor/lief/examples/c/pe_reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/examples/c/pe_reader.c -------------------------------------------------------------------------------- /vendor/lief/examples/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/examples/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/lief/examples/cpp/abstract_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/examples/cpp/abstract_reader.cpp -------------------------------------------------------------------------------- /vendor/lief/examples/cpp/art_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/examples/cpp/art_reader.cpp -------------------------------------------------------------------------------- /vendor/lief/examples/cpp/benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/examples/cpp/benchmark.cpp -------------------------------------------------------------------------------- /vendor/lief/examples/cpp/dex_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/examples/cpp/dex_reader.cpp -------------------------------------------------------------------------------- /vendor/lief/examples/cpp/elf_add_section.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/examples/cpp/elf_add_section.cpp -------------------------------------------------------------------------------- /vendor/lief/examples/cpp/elf_builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/examples/cpp/elf_builder.cpp -------------------------------------------------------------------------------- /vendor/lief/examples/cpp/elf_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/examples/cpp/elf_reader.cpp -------------------------------------------------------------------------------- /vendor/lief/examples/cpp/elf_strip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/examples/cpp/elf_strip.cpp -------------------------------------------------------------------------------- /vendor/lief/examples/cpp/elf_symbols.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/examples/cpp/elf_symbols.cpp -------------------------------------------------------------------------------- /vendor/lief/examples/cpp/logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/examples/cpp/logging.cpp -------------------------------------------------------------------------------- /vendor/lief/examples/cpp/macho_builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/examples/cpp/macho_builder.cpp -------------------------------------------------------------------------------- /vendor/lief/examples/cpp/macho_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/examples/cpp/macho_reader.cpp -------------------------------------------------------------------------------- /vendor/lief/examples/cpp/oat_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/examples/cpp/oat_reader.cpp -------------------------------------------------------------------------------- /vendor/lief/examples/cpp/pe_builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/examples/cpp/pe_builder.cpp -------------------------------------------------------------------------------- /vendor/lief/examples/cpp/pe_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/examples/cpp/pe_reader.cpp -------------------------------------------------------------------------------- /vendor/lief/examples/cpp/vdex_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/examples/cpp/vdex_reader.cpp -------------------------------------------------------------------------------- /vendor/lief/examples/python/abstract_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/examples/python/abstract_json.py -------------------------------------------------------------------------------- /vendor/lief/examples/python/abstract_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/examples/python/abstract_reader.py -------------------------------------------------------------------------------- /vendor/lief/examples/python/dex_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/examples/python/dex_json.py -------------------------------------------------------------------------------- /vendor/lief/examples/python/dex_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/examples/python/dex_reader.py -------------------------------------------------------------------------------- /vendor/lief/examples/python/elf_bin2lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/examples/python/elf_bin2lib.py -------------------------------------------------------------------------------- /vendor/lief/examples/python/elf_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/examples/python/elf_json.py -------------------------------------------------------------------------------- /vendor/lief/examples/python/elf_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/examples/python/elf_reader.py -------------------------------------------------------------------------------- /vendor/lief/examples/python/elf_unstrip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/examples/python/elf_unstrip.py -------------------------------------------------------------------------------- /vendor/lief/examples/python/entropy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/examples/python/entropy.py -------------------------------------------------------------------------------- /vendor/lief/examples/python/json_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/examples/python/json_dump.py -------------------------------------------------------------------------------- /vendor/lief/examples/python/keygen/KeygenMe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/examples/python/keygen/KeygenMe -------------------------------------------------------------------------------- /vendor/lief/examples/python/macho_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/examples/python/macho_reader.py -------------------------------------------------------------------------------- /vendor/lief/examples/python/nm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/examples/python/nm.py -------------------------------------------------------------------------------- /vendor/lief/examples/python/oat_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/examples/python/oat_reader.py -------------------------------------------------------------------------------- /vendor/lief/examples/python/pe_authenticode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/examples/python/pe_authenticode.py -------------------------------------------------------------------------------- /vendor/lief/examples/python/pe_forwardinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/examples/python/pe_forwardinfo.py -------------------------------------------------------------------------------- /vendor/lief/examples/python/pe_from_scratch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/examples/python/pe_from_scratch.py -------------------------------------------------------------------------------- /vendor/lief/examples/python/pe_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/examples/python/pe_json.py -------------------------------------------------------------------------------- /vendor/lief/examples/python/pe_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/examples/python/pe_reader.py -------------------------------------------------------------------------------- /vendor/lief/examples/python/vdex_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/examples/python/vdex_json.py -------------------------------------------------------------------------------- /vendor/lief/examples/python/vdex_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/examples/python/vdex_reader.py -------------------------------------------------------------------------------- /vendor/lief/fuzzing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/fuzzing/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/lief/fuzzing/clean-corpus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/fuzzing/clean-corpus.py -------------------------------------------------------------------------------- /vendor/lief/fuzzing/elf_fuzzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/fuzzing/elf_fuzzer.cpp -------------------------------------------------------------------------------- /vendor/lief/fuzzing/macho_fuzzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/fuzzing/macho_fuzzer.cpp -------------------------------------------------------------------------------- /vendor/lief/fuzzing/pe_fuzzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/fuzzing/pe_fuzzer.cpp -------------------------------------------------------------------------------- /vendor/lief/fuzzing/pkcs7_signature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/fuzzing/pkcs7_signature.cpp -------------------------------------------------------------------------------- /vendor/lief/fuzzing/pme_fuzzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/fuzzing/pme_fuzzer.cpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/ART.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/ART.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/ART/EnumToString.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/ART/EnumToString.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/ART/File.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/ART/File.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/ART/Header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/ART/Header.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/ART/Parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/ART/Parser.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/ART/enums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/ART/enums.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/ART/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/ART/hash.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/ART/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/ART/json.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/ART/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/ART/types.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/ART/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/ART/utils.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/Abstract.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/Abstract.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/Abstract/Binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/Abstract/Binary.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/Abstract/Function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/Abstract/Function.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/Abstract/Header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/Abstract/Header.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/Abstract/Parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/Abstract/Parser.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/Abstract/Section.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/Abstract/Section.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/Abstract/Symbol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/Abstract/Symbol.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/Abstract/enums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/Abstract/enums.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/Abstract/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/Abstract/hash.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/Abstract/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/Abstract/json.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/DEX.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/DEX.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/DEX/Class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/DEX/Class.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/DEX/CodeInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/DEX/CodeInfo.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/DEX/EnumToString.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/DEX/EnumToString.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/DEX/Field.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/DEX/Field.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/DEX/File.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/DEX/File.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/DEX/Header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/DEX/Header.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/DEX/MapItem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/DEX/MapItem.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/DEX/MapList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/DEX/MapList.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/DEX/Method.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/DEX/Method.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/DEX/Parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/DEX/Parser.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/DEX/Prototype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/DEX/Prototype.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/DEX/Type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/DEX/Type.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/DEX/deopt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/DEX/deopt.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/DEX/enums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/DEX/enums.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/DEX/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/DEX/hash.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/DEX/instructions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/DEX/instructions.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/DEX/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/DEX/json.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/DEX/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/DEX/types.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/DEX/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/DEX/utils.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/DWARF.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/DWARF.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/DWARF/enums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/DWARF/enums.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/ELF.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/ELF.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/ELF/Binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/ELF/Binary.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/ELF/Builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/ELF/Builder.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/ELF/DynamicEntry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/ELF/DynamicEntry.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/ELF/EnumToString.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/ELF/EnumToString.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/ELF/GnuHash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/ELF/GnuHash.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/ELF/Header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/ELF/Header.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/ELF/Note.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/ELF/Note.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/ELF/NoteDetails.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/ELF/NoteDetails.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/ELF/Parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/ELF/Parser.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/ELF/Relocation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/ELF/Relocation.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/ELF/Section.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/ELF/Section.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/ELF/Segment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/ELF/Segment.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/ELF/Symbol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/ELF/Symbol.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/ELF/SymbolVersion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/ELF/SymbolVersion.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/ELF/SysvHash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/ELF/SysvHash.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/ELF/enums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/ELF/enums.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/ELF/enums.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/ELF/enums.inc -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/ELF/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/ELF/hash.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/ELF/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/ELF/json.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/ELF/undef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/ELF/undef.h -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/ELF/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/ELF/utils.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/LIEF.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/LIEF.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/MachO.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/MachO.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/MachO/Binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/MachO/Binary.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/MachO/BindingInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/MachO/BindingInfo.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/MachO/Builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/MachO/Builder.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/MachO/DataInCode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/MachO/DataInCode.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/MachO/DyldInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/MachO/DyldInfo.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/MachO/ExportInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/MachO/ExportInfo.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/MachO/FatBinary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/MachO/FatBinary.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/MachO/Header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/MachO/Header.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/MachO/LinkEdit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/MachO/LinkEdit.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/MachO/LoadCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/MachO/LoadCommand.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/MachO/MainCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/MachO/MainCommand.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/MachO/Parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/MachO/Parser.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/MachO/Relocation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/MachO/Relocation.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/MachO/Section.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/MachO/Section.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/MachO/Symbol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/MachO/Symbol.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/MachO/UUIDCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/MachO/UUIDCommand.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/MachO/VersionMin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/MachO/VersionMin.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/MachO/enums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/MachO/enums.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/MachO/enums.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/MachO/enums.inc -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/MachO/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/MachO/hash.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/MachO/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/MachO/json.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/MachO/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/MachO/type_traits.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/MachO/undef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/MachO/undef.h -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/MachO/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/MachO/utils.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/OAT.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/OAT.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/OAT/Binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/OAT/Binary.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/OAT/Class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/OAT/Class.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/OAT/DexFile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/OAT/DexFile.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/OAT/EnumToString.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/OAT/EnumToString.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/OAT/Header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/OAT/Header.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/OAT/Method.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/OAT/Method.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/OAT/Parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/OAT/Parser.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/OAT/enums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/OAT/enums.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/OAT/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/OAT/hash.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/OAT/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/OAT/json.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/OAT/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/OAT/type_traits.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/OAT/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/OAT/utils.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/Object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/Object.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/PE.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/PE.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/PE/Binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/PE/Binary.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/PE/Builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/PE/Builder.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/PE/CodeIntegrity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/PE/CodeIntegrity.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/PE/CodeView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/PE/CodeView.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/PE/CodeViewPDB.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/PE/CodeViewPDB.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/PE/DataDirectory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/PE/DataDirectory.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/PE/Debug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/PE/Debug.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/PE/DelayImport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/PE/DelayImport.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/PE/DosHeader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/PE/DosHeader.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/PE/EnumToString.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/PE/EnumToString.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/PE/Export.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/PE/Export.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/PE/ExportEntry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/PE/ExportEntry.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/PE/Header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/PE/Header.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/PE/Import.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/PE/Import.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/PE/ImportEntry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/PE/ImportEntry.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/PE/OptionalHeader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/PE/OptionalHeader.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/PE/Parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/PE/Parser.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/PE/Pogo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/PE/Pogo.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/PE/PogoEntry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/PE/PogoEntry.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/PE/Relocation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/PE/Relocation.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/PE/ResourceData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/PE/ResourceData.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/PE/ResourceNode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/PE/ResourceNode.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/PE/RichEntry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/PE/RichEntry.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/PE/RichHeader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/PE/RichHeader.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/PE/Section.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/PE/Section.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/PE/Symbol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/PE/Symbol.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/PE/TLS.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/PE/TLS.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/PE/enums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/PE/enums.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/PE/enums.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/PE/enums.inc -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/PE/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/PE/hash.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/PE/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/PE/json.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/PE/signature/attributes/MsCounterSign.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/PE/signature/x509.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/PE/signature/x509.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/PE/undef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/PE/undef.h -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/PE/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/PE/utils.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/VDEX.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/VDEX.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/VDEX/File.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/VDEX/File.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/VDEX/Header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/VDEX/Header.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/VDEX/Parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/VDEX/Parser.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/VDEX/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/VDEX/hash.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/VDEX/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/VDEX/json.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/VDEX/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/VDEX/type_traits.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/VDEX/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/VDEX/utils.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/Visitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/Visitor.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/config.h.in -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/enums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/enums.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/errors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/errors.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/exception.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/hash.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/iostream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/iostream.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/iterators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/iterators.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/json.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/logging.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/logging.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/platforms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/platforms.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/platforms/android.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/platforms/android.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/span.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/span.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/third-party/leaf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/third-party/leaf.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/to_json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/to_json.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/types.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/utils.hpp -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/version.h.in -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/visibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/visibility.h -------------------------------------------------------------------------------- /vendor/lief/include/LIEF/visitor_macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/include/LIEF/visitor_macros.hpp -------------------------------------------------------------------------------- /vendor/lief/package/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/package/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/lief/package/CPack.STGZ_Header.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/package/CPack.STGZ_Header.sh.in -------------------------------------------------------------------------------- /vendor/lief/package/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/package/README.rst -------------------------------------------------------------------------------- /vendor/lief/package/Welcome: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/lief/profiling/elf_profiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/profiling/elf_profiler.cpp -------------------------------------------------------------------------------- /vendor/lief/profiling/macho_profiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/profiling/macho_profiler.cpp -------------------------------------------------------------------------------- /vendor/lief/profiling/oat_profiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/profiling/oat_profiler.cpp -------------------------------------------------------------------------------- /vendor/lief/scripts/docker/android-arm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/scripts/docker/android-arm.sh -------------------------------------------------------------------------------- /vendor/lief/scripts/docker/asan_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/scripts/docker/asan_check.sh -------------------------------------------------------------------------------- /vendor/lief/scripts/docker/clang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/scripts/docker/clang.sh -------------------------------------------------------------------------------- /vendor/lief/scripts/docker/gcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/scripts/docker/gcc.sh -------------------------------------------------------------------------------- /vendor/lief/scripts/docker/linux-aarch64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/scripts/docker/linux-aarch64.sh -------------------------------------------------------------------------------- /vendor/lief/scripts/docker/run_archlinux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/scripts/docker/run_archlinux.sh -------------------------------------------------------------------------------- /vendor/lief/scripts/docker/run_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/scripts/docker/run_linux.sh -------------------------------------------------------------------------------- /vendor/lief/scripts/docker/run_linux_sdk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/scripts/docker/run_linux_sdk.sh -------------------------------------------------------------------------------- /vendor/lief/scripts/osx/package_ios.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/scripts/osx/package_ios.sh -------------------------------------------------------------------------------- /vendor/lief/scripts/osx/package_sdk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/scripts/osx/package_sdk.sh -------------------------------------------------------------------------------- /vendor/lief/scripts/windows/package_sdk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/scripts/windows/package_sdk.py -------------------------------------------------------------------------------- /vendor/lief/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/setup.cfg -------------------------------------------------------------------------------- /vendor/lief/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/setup.py -------------------------------------------------------------------------------- /vendor/lief/src/ART/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ART/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/lief/src/ART/EnumToString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ART/EnumToString.cpp -------------------------------------------------------------------------------- /vendor/lief/src/ART/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ART/File.cpp -------------------------------------------------------------------------------- /vendor/lief/src/ART/Header.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ART/Header.cpp -------------------------------------------------------------------------------- /vendor/lief/src/ART/Header.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ART/Header.tcc -------------------------------------------------------------------------------- /vendor/lief/src/ART/Parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ART/Parser.cpp -------------------------------------------------------------------------------- /vendor/lief/src/ART/Parser.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ART/Parser.tcc -------------------------------------------------------------------------------- /vendor/lief/src/ART/Structures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ART/Structures.cpp -------------------------------------------------------------------------------- /vendor/lief/src/ART/Structures.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ART/Structures.hpp -------------------------------------------------------------------------------- /vendor/lief/src/ART/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ART/hash.cpp -------------------------------------------------------------------------------- /vendor/lief/src/ART/json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ART/json.cpp -------------------------------------------------------------------------------- /vendor/lief/src/ART/json_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ART/json_api.cpp -------------------------------------------------------------------------------- /vendor/lief/src/ART/json_internal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ART/json_internal.hpp -------------------------------------------------------------------------------- /vendor/lief/src/ART/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ART/utils.cpp -------------------------------------------------------------------------------- /vendor/lief/src/Abstract/Binary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/Abstract/Binary.cpp -------------------------------------------------------------------------------- /vendor/lief/src/Abstract/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/Abstract/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/lief/src/Abstract/EnumToString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/Abstract/EnumToString.cpp -------------------------------------------------------------------------------- /vendor/lief/src/Abstract/Function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/Abstract/Function.cpp -------------------------------------------------------------------------------- /vendor/lief/src/Abstract/Header.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/Abstract/Header.cpp -------------------------------------------------------------------------------- /vendor/lief/src/Abstract/Parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/Abstract/Parser.cpp -------------------------------------------------------------------------------- /vendor/lief/src/Abstract/Relocation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/Abstract/Relocation.cpp -------------------------------------------------------------------------------- /vendor/lief/src/Abstract/Section.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/Abstract/Section.cpp -------------------------------------------------------------------------------- /vendor/lief/src/Abstract/Section.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/Abstract/Section.tcc -------------------------------------------------------------------------------- /vendor/lief/src/Abstract/Symbol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/Abstract/Symbol.cpp -------------------------------------------------------------------------------- /vendor/lief/src/Abstract/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/Abstract/hash.cpp -------------------------------------------------------------------------------- /vendor/lief/src/Abstract/json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/Abstract/json.cpp -------------------------------------------------------------------------------- /vendor/lief/src/Abstract/json_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/Abstract/json_api.cpp -------------------------------------------------------------------------------- /vendor/lief/src/Abstract/json_internal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/Abstract/json_internal.hpp -------------------------------------------------------------------------------- /vendor/lief/src/BinaryStream/Convert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/BinaryStream/Convert.cpp -------------------------------------------------------------------------------- /vendor/lief/src/BinaryStream/FileStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/BinaryStream/FileStream.cpp -------------------------------------------------------------------------------- /vendor/lief/src/BinaryStream/SpanStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/BinaryStream/SpanStream.cpp -------------------------------------------------------------------------------- /vendor/lief/src/BinaryStream/intmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/BinaryStream/intmem.h -------------------------------------------------------------------------------- /vendor/lief/src/DEX/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/DEX/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/lief/src/DEX/Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/DEX/Class.cpp -------------------------------------------------------------------------------- /vendor/lief/src/DEX/CodeInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/DEX/CodeInfo.cpp -------------------------------------------------------------------------------- /vendor/lief/src/DEX/EnumToString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/DEX/EnumToString.cpp -------------------------------------------------------------------------------- /vendor/lief/src/DEX/Field.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/DEX/Field.cpp -------------------------------------------------------------------------------- /vendor/lief/src/DEX/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/DEX/File.cpp -------------------------------------------------------------------------------- /vendor/lief/src/DEX/Header.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/DEX/Header.cpp -------------------------------------------------------------------------------- /vendor/lief/src/DEX/Header.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/DEX/Header.tcc -------------------------------------------------------------------------------- /vendor/lief/src/DEX/MapItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/DEX/MapItem.cpp -------------------------------------------------------------------------------- /vendor/lief/src/DEX/MapList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/DEX/MapList.cpp -------------------------------------------------------------------------------- /vendor/lief/src/DEX/Method.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/DEX/Method.cpp -------------------------------------------------------------------------------- /vendor/lief/src/DEX/Parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/DEX/Parser.cpp -------------------------------------------------------------------------------- /vendor/lief/src/DEX/Parser.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/DEX/Parser.tcc -------------------------------------------------------------------------------- /vendor/lief/src/DEX/Prototype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/DEX/Prototype.cpp -------------------------------------------------------------------------------- /vendor/lief/src/DEX/Structures.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/DEX/Structures.hpp -------------------------------------------------------------------------------- /vendor/lief/src/DEX/Type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/DEX/Type.cpp -------------------------------------------------------------------------------- /vendor/lief/src/DEX/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/DEX/hash.cpp -------------------------------------------------------------------------------- /vendor/lief/src/DEX/instructions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/DEX/instructions.cpp -------------------------------------------------------------------------------- /vendor/lief/src/DEX/json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/DEX/json.cpp -------------------------------------------------------------------------------- /vendor/lief/src/DEX/json_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/DEX/json_api.cpp -------------------------------------------------------------------------------- /vendor/lief/src/DEX/json_internal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/DEX/json_internal.hpp -------------------------------------------------------------------------------- /vendor/lief/src/DEX/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/DEX/utils.cpp -------------------------------------------------------------------------------- /vendor/lief/src/ELF/Binary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ELF/Binary.cpp -------------------------------------------------------------------------------- /vendor/lief/src/ELF/Binary.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ELF/Binary.tcc -------------------------------------------------------------------------------- /vendor/lief/src/ELF/Builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ELF/Builder.cpp -------------------------------------------------------------------------------- /vendor/lief/src/ELF/Builder.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ELF/Builder.tcc -------------------------------------------------------------------------------- /vendor/lief/src/ELF/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ELF/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/lief/src/ELF/Convert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ELF/Convert.cpp -------------------------------------------------------------------------------- /vendor/lief/src/ELF/DataHandler/Handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ELF/DataHandler/Handler.cpp -------------------------------------------------------------------------------- /vendor/lief/src/ELF/DataHandler/Handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ELF/DataHandler/Handler.hpp -------------------------------------------------------------------------------- /vendor/lief/src/ELF/DataHandler/Node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ELF/DataHandler/Node.cpp -------------------------------------------------------------------------------- /vendor/lief/src/ELF/DataHandler/Node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ELF/DataHandler/Node.hpp -------------------------------------------------------------------------------- /vendor/lief/src/ELF/DynamicEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ELF/DynamicEntry.cpp -------------------------------------------------------------------------------- /vendor/lief/src/ELF/DynamicEntryArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ELF/DynamicEntryArray.cpp -------------------------------------------------------------------------------- /vendor/lief/src/ELF/DynamicEntryFlags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ELF/DynamicEntryFlags.cpp -------------------------------------------------------------------------------- /vendor/lief/src/ELF/DynamicEntryLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ELF/DynamicEntryLibrary.cpp -------------------------------------------------------------------------------- /vendor/lief/src/ELF/DynamicEntryRpath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ELF/DynamicEntryRpath.cpp -------------------------------------------------------------------------------- /vendor/lief/src/ELF/DynamicEntryRunPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ELF/DynamicEntryRunPath.cpp -------------------------------------------------------------------------------- /vendor/lief/src/ELF/DynamicSharedObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ELF/DynamicSharedObject.cpp -------------------------------------------------------------------------------- /vendor/lief/src/ELF/EnumToString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ELF/EnumToString.cpp -------------------------------------------------------------------------------- /vendor/lief/src/ELF/ExeLayout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ELF/ExeLayout.hpp -------------------------------------------------------------------------------- /vendor/lief/src/ELF/GnuHash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ELF/GnuHash.cpp -------------------------------------------------------------------------------- /vendor/lief/src/ELF/Header.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ELF/Header.cpp -------------------------------------------------------------------------------- /vendor/lief/src/ELF/Layout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ELF/Layout.cpp -------------------------------------------------------------------------------- /vendor/lief/src/ELF/Layout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ELF/Layout.hpp -------------------------------------------------------------------------------- /vendor/lief/src/ELF/Note.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ELF/Note.cpp -------------------------------------------------------------------------------- /vendor/lief/src/ELF/NoteDetails.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ELF/NoteDetails.cpp -------------------------------------------------------------------------------- /vendor/lief/src/ELF/NoteDetails/NoteAbi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ELF/NoteDetails/NoteAbi.cpp -------------------------------------------------------------------------------- /vendor/lief/src/ELF/ObjectFileLayout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ELF/ObjectFileLayout.hpp -------------------------------------------------------------------------------- /vendor/lief/src/ELF/Parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ELF/Parser.cpp -------------------------------------------------------------------------------- /vendor/lief/src/ELF/Parser.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ELF/Parser.tcc -------------------------------------------------------------------------------- /vendor/lief/src/ELF/Relocation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ELF/Relocation.cpp -------------------------------------------------------------------------------- /vendor/lief/src/ELF/Section.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ELF/Section.cpp -------------------------------------------------------------------------------- /vendor/lief/src/ELF/Segment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ELF/Segment.cpp -------------------------------------------------------------------------------- /vendor/lief/src/ELF/SizingInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ELF/SizingInfo.hpp -------------------------------------------------------------------------------- /vendor/lief/src/ELF/Structures.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ELF/Structures.hpp -------------------------------------------------------------------------------- /vendor/lief/src/ELF/Symbol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ELF/Symbol.cpp -------------------------------------------------------------------------------- /vendor/lief/src/ELF/SymbolVersion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ELF/SymbolVersion.cpp -------------------------------------------------------------------------------- /vendor/lief/src/ELF/SymbolVersionAux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ELF/SymbolVersionAux.cpp -------------------------------------------------------------------------------- /vendor/lief/src/ELF/SysvHash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ELF/SysvHash.cpp -------------------------------------------------------------------------------- /vendor/lief/src/ELF/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ELF/hash.cpp -------------------------------------------------------------------------------- /vendor/lief/src/ELF/json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ELF/json.cpp -------------------------------------------------------------------------------- /vendor/lief/src/ELF/json_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ELF/json_api.cpp -------------------------------------------------------------------------------- /vendor/lief/src/ELF/json_internal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ELF/json_internal.hpp -------------------------------------------------------------------------------- /vendor/lief/src/ELF/structures.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ELF/structures.inc -------------------------------------------------------------------------------- /vendor/lief/src/ELF/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/ELF/utils.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/Binary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/Binary.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/Binary.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/Binary.tcc -------------------------------------------------------------------------------- /vendor/lief/src/MachO/BinaryParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/BinaryParser.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/BinaryParser.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/BinaryParser.tcc -------------------------------------------------------------------------------- /vendor/lief/src/MachO/BindingInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/BindingInfo.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/BuildVersion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/BuildVersion.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/Builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/Builder.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/Builder.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/Builder.tcc -------------------------------------------------------------------------------- /vendor/lief/src/MachO/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/lief/src/MachO/ChainedFixup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/ChainedFixup.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/ChainedFixup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/ChainedFixup.hpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/CodeSignature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/CodeSignature.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/CodeSignatureDir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/CodeSignatureDir.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/Convert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/Convert.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/DataCodeEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/DataCodeEntry.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/DataInCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/DataInCode.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/DyldBindingInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/DyldBindingInfo.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/DyldChainedFixups.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/DyldChainedFixups.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/DyldEnvironment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/DyldEnvironment.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/DyldExportsTrie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/DyldExportsTrie.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/DyldInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/DyldInfo.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/DylibCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/DylibCommand.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/DylinkerCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/DylinkerCommand.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/EncryptionInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/EncryptionInfo.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/EnumToString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/EnumToString.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/ExportInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/ExportInfo.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/FatBinary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/FatBinary.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/FilesetCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/FilesetCommand.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/FunctionStarts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/FunctionStarts.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/Header.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/Header.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/LinkEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/LinkEdit.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/LinkerOptHint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/LinkerOptHint.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/LoadCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/LoadCommand.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/MainCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/MainCommand.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/Parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/Parser.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/ParserConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/ParserConfig.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/RPathCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/RPathCommand.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/Relocation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/Relocation.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/RelocationDyld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/RelocationDyld.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/RelocationFixup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/RelocationFixup.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/RelocationObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/RelocationObject.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/Section.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/Section.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/SegmentCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/SegmentCommand.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/SegmentSplitInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/SegmentSplitInfo.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/SourceVersion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/SourceVersion.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/Structures.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/Structures.hpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/SubFramework.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/SubFramework.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/Symbol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/Symbol.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/SymbolCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/SymbolCommand.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/ThreadCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/ThreadCommand.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/TrieNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/TrieNode.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/TrieNode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/TrieNode.hpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/TwoLevelHints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/TwoLevelHints.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/UUIDCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/UUIDCommand.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/VersionMin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/VersionMin.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/exports_trie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/exports_trie.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/exports_trie.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/exports_trie.hpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/hash.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/json.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/json_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/json_api.cpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/json_internal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/json_internal.hpp -------------------------------------------------------------------------------- /vendor/lief/src/MachO/structures.inc: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/lief/src/MachO/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/MachO/utils.cpp -------------------------------------------------------------------------------- /vendor/lief/src/OAT/Binary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/OAT/Binary.cpp -------------------------------------------------------------------------------- /vendor/lief/src/OAT/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/OAT/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/lief/src/OAT/Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/OAT/Class.cpp -------------------------------------------------------------------------------- /vendor/lief/src/OAT/DexFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/OAT/DexFile.cpp -------------------------------------------------------------------------------- /vendor/lief/src/OAT/EnumToString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/OAT/EnumToString.cpp -------------------------------------------------------------------------------- /vendor/lief/src/OAT/Header.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/OAT/Header.cpp -------------------------------------------------------------------------------- /vendor/lief/src/OAT/Header.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/OAT/Header.tcc -------------------------------------------------------------------------------- /vendor/lief/src/OAT/Method.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/OAT/Method.cpp -------------------------------------------------------------------------------- /vendor/lief/src/OAT/Parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/OAT/Parser.cpp -------------------------------------------------------------------------------- /vendor/lief/src/OAT/Parser.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/OAT/Parser.tcc -------------------------------------------------------------------------------- /vendor/lief/src/OAT/Structures.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/OAT/Structures.hpp -------------------------------------------------------------------------------- /vendor/lief/src/OAT/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/OAT/hash.cpp -------------------------------------------------------------------------------- /vendor/lief/src/OAT/json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/OAT/json.cpp -------------------------------------------------------------------------------- /vendor/lief/src/OAT/json_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/OAT/json_api.cpp -------------------------------------------------------------------------------- /vendor/lief/src/OAT/json_internal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/OAT/json_internal.hpp -------------------------------------------------------------------------------- /vendor/lief/src/OAT/oat_124.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/OAT/oat_124.tcc -------------------------------------------------------------------------------- /vendor/lief/src/OAT/oat_131.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/OAT/oat_131.tcc -------------------------------------------------------------------------------- /vendor/lief/src/OAT/oat_64.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/OAT/oat_64.tcc -------------------------------------------------------------------------------- /vendor/lief/src/OAT/oat_79.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/OAT/oat_79.tcc -------------------------------------------------------------------------------- /vendor/lief/src/OAT/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/OAT/utils.cpp -------------------------------------------------------------------------------- /vendor/lief/src/Object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/Object.cpp -------------------------------------------------------------------------------- /vendor/lief/src/Object.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/Object.tcc -------------------------------------------------------------------------------- /vendor/lief/src/PE/Binary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/Binary.cpp -------------------------------------------------------------------------------- /vendor/lief/src/PE/Builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/Builder.cpp -------------------------------------------------------------------------------- /vendor/lief/src/PE/Builder.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/Builder.tcc -------------------------------------------------------------------------------- /vendor/lief/src/PE/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/lief/src/PE/CodeIntegrity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/CodeIntegrity.cpp -------------------------------------------------------------------------------- /vendor/lief/src/PE/CodeView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/CodeView.cpp -------------------------------------------------------------------------------- /vendor/lief/src/PE/CodeViewPDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/CodeViewPDB.cpp -------------------------------------------------------------------------------- /vendor/lief/src/PE/Convert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/Convert.cpp -------------------------------------------------------------------------------- /vendor/lief/src/PE/DataDirectory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/DataDirectory.cpp -------------------------------------------------------------------------------- /vendor/lief/src/PE/Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/Debug.cpp -------------------------------------------------------------------------------- /vendor/lief/src/PE/DelayImport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/DelayImport.cpp -------------------------------------------------------------------------------- /vendor/lief/src/PE/DelayImportEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/DelayImportEntry.cpp -------------------------------------------------------------------------------- /vendor/lief/src/PE/DosHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/DosHeader.cpp -------------------------------------------------------------------------------- /vendor/lief/src/PE/EnumToString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/EnumToString.cpp -------------------------------------------------------------------------------- /vendor/lief/src/PE/Export.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/Export.cpp -------------------------------------------------------------------------------- /vendor/lief/src/PE/ExportEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/ExportEntry.cpp -------------------------------------------------------------------------------- /vendor/lief/src/PE/Header.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/Header.cpp -------------------------------------------------------------------------------- /vendor/lief/src/PE/Import.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/Import.cpp -------------------------------------------------------------------------------- /vendor/lief/src/PE/ImportEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/ImportEntry.cpp -------------------------------------------------------------------------------- /vendor/lief/src/PE/OptionalHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/OptionalHeader.cpp -------------------------------------------------------------------------------- /vendor/lief/src/PE/Parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/Parser.cpp -------------------------------------------------------------------------------- /vendor/lief/src/PE/Parser.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/Parser.tcc -------------------------------------------------------------------------------- /vendor/lief/src/PE/Pogo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/Pogo.cpp -------------------------------------------------------------------------------- /vendor/lief/src/PE/PogoEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/PogoEntry.cpp -------------------------------------------------------------------------------- /vendor/lief/src/PE/Relocation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/Relocation.cpp -------------------------------------------------------------------------------- /vendor/lief/src/PE/RelocationEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/RelocationEntry.cpp -------------------------------------------------------------------------------- /vendor/lief/src/PE/ResourceData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/ResourceData.cpp -------------------------------------------------------------------------------- /vendor/lief/src/PE/ResourceDirectory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/ResourceDirectory.cpp -------------------------------------------------------------------------------- /vendor/lief/src/PE/ResourceNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/ResourceNode.cpp -------------------------------------------------------------------------------- /vendor/lief/src/PE/ResourcesManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/ResourcesManager.cpp -------------------------------------------------------------------------------- /vendor/lief/src/PE/ResourcesParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/ResourcesParser.cpp -------------------------------------------------------------------------------- /vendor/lief/src/PE/ResourcesParser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/ResourcesParser.hpp -------------------------------------------------------------------------------- /vendor/lief/src/PE/RichEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/RichEntry.cpp -------------------------------------------------------------------------------- /vendor/lief/src/PE/RichHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/RichHeader.cpp -------------------------------------------------------------------------------- /vendor/lief/src/PE/Section.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/Section.cpp -------------------------------------------------------------------------------- /vendor/lief/src/PE/Structures.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/Structures.hpp -------------------------------------------------------------------------------- /vendor/lief/src/PE/Symbol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/Symbol.cpp -------------------------------------------------------------------------------- /vendor/lief/src/PE/TLS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/TLS.cpp -------------------------------------------------------------------------------- /vendor/lief/src/PE/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/hash.cpp -------------------------------------------------------------------------------- /vendor/lief/src/PE/json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/json.cpp -------------------------------------------------------------------------------- /vendor/lief/src/PE/json_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/json_api.cpp -------------------------------------------------------------------------------- /vendor/lief/src/PE/json_internal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/json_internal.hpp -------------------------------------------------------------------------------- /vendor/lief/src/PE/signature/Attribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/signature/Attribute.cpp -------------------------------------------------------------------------------- /vendor/lief/src/PE/signature/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/signature/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/lief/src/PE/signature/RsaInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/signature/RsaInfo.cpp -------------------------------------------------------------------------------- /vendor/lief/src/PE/signature/Signature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/signature/Signature.cpp -------------------------------------------------------------------------------- /vendor/lief/src/PE/signature/SignerInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/signature/SignerInfo.cpp -------------------------------------------------------------------------------- /vendor/lief/src/PE/signature/attributes/MsCounterSign.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/lief/src/PE/signature/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/signature/pkcs7.h -------------------------------------------------------------------------------- /vendor/lief/src/PE/signature/x509.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/signature/x509.cpp -------------------------------------------------------------------------------- /vendor/lief/src/PE/structures.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/structures.inc -------------------------------------------------------------------------------- /vendor/lief/src/PE/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/PE/utils.cpp -------------------------------------------------------------------------------- /vendor/lief/src/VDEX/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/VDEX/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/lief/src/VDEX/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/VDEX/File.cpp -------------------------------------------------------------------------------- /vendor/lief/src/VDEX/Header.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/VDEX/Header.cpp -------------------------------------------------------------------------------- /vendor/lief/src/VDEX/Header.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/VDEX/Header.tcc -------------------------------------------------------------------------------- /vendor/lief/src/VDEX/Parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/VDEX/Parser.cpp -------------------------------------------------------------------------------- /vendor/lief/src/VDEX/Parser.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/VDEX/Parser.tcc -------------------------------------------------------------------------------- /vendor/lief/src/VDEX/Structures.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/VDEX/Structures.hpp -------------------------------------------------------------------------------- /vendor/lief/src/VDEX/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/VDEX/hash.cpp -------------------------------------------------------------------------------- /vendor/lief/src/VDEX/json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/VDEX/json.cpp -------------------------------------------------------------------------------- /vendor/lief/src/VDEX/json_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/VDEX/json_api.cpp -------------------------------------------------------------------------------- /vendor/lief/src/VDEX/json_internal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/VDEX/json_internal.hpp -------------------------------------------------------------------------------- /vendor/lief/src/VDEX/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/VDEX/utils.cpp -------------------------------------------------------------------------------- /vendor/lief/src/Visitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/Visitor.cpp -------------------------------------------------------------------------------- /vendor/lief/src/compiler_support.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/compiler_support.h.in -------------------------------------------------------------------------------- /vendor/lief/src/errors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/errors.cpp -------------------------------------------------------------------------------- /vendor/lief/src/exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/exception.cpp -------------------------------------------------------------------------------- /vendor/lief/src/frozen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/frozen.hpp -------------------------------------------------------------------------------- /vendor/lief/src/hash_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/hash_stream.cpp -------------------------------------------------------------------------------- /vendor/lief/src/hash_stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/hash_stream.hpp -------------------------------------------------------------------------------- /vendor/lief/src/internal_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/internal_utils.cpp -------------------------------------------------------------------------------- /vendor/lief/src/internal_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/internal_utils.hpp -------------------------------------------------------------------------------- /vendor/lief/src/iostream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/iostream.cpp -------------------------------------------------------------------------------- /vendor/lief/src/json_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/json_api.cpp -------------------------------------------------------------------------------- /vendor/lief/src/logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/logging.cpp -------------------------------------------------------------------------------- /vendor/lief/src/logging.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/logging.hpp -------------------------------------------------------------------------------- /vendor/lief/src/platforms/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | include("${CMAKE_CURRENT_LIST_DIR}/android/CMakeLists.txt") 2 | -------------------------------------------------------------------------------- /vendor/lief/src/third-party/utfcpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/third-party/utfcpp.hpp -------------------------------------------------------------------------------- /vendor/lief/src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/utils.cpp -------------------------------------------------------------------------------- /vendor/lief/src/visitors/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/visitors/hash.cpp -------------------------------------------------------------------------------- /vendor/lief/src/visitors/json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/visitors/json.cpp -------------------------------------------------------------------------------- /vendor/lief/src/visitors/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/src/visitors/json.hpp -------------------------------------------------------------------------------- /vendor/lief/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/lief/tests/api/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/api/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/lief/tests/api/test_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/api/test_python.py -------------------------------------------------------------------------------- /vendor/lief/tests/art/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/art/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/lief/tests/art/art_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/art/art_test.py -------------------------------------------------------------------------------- /vendor/lief/tests/dex/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/dex/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/lief/tests/dex/dex_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/dex/dex_test.py -------------------------------------------------------------------------------- /vendor/lief/tests/dl_samples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/dl_samples.py -------------------------------------------------------------------------------- /vendor/lief/tests/elf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/elf/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/lief/tests/elf/add_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/elf/add_content.py -------------------------------------------------------------------------------- /vendor/lief/tests/elf/add_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/elf/add_section.py -------------------------------------------------------------------------------- /vendor/lief/tests/elf/add_segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/elf/add_segment.py -------------------------------------------------------------------------------- /vendor/lief/tests/elf/change_interpreter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/elf/change_interpreter.py -------------------------------------------------------------------------------- /vendor/lief/tests/elf/elf_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/elf/elf_test.py -------------------------------------------------------------------------------- /vendor/lief/tests/elf/fuzzing.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/elf/fuzzing.py.in -------------------------------------------------------------------------------- /vendor/lief/tests/elf/hash_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/elf/hash_tests.py -------------------------------------------------------------------------------- /vendor/lief/tests/elf/hello_lief.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/elf/hello_lief.bin -------------------------------------------------------------------------------- /vendor/lief/tests/elf/modify_relocations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/elf/modify_relocations.py -------------------------------------------------------------------------------- /vendor/lief/tests/elf/remove_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/elf/remove_section.py -------------------------------------------------------------------------------- /vendor/lief/tests/elf/replace_segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/elf/replace_segment.py -------------------------------------------------------------------------------- /vendor/lief/tests/elf/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/elf/test.py -------------------------------------------------------------------------------- /vendor/lief/tests/elf/test_466.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/elf/test_466.py -------------------------------------------------------------------------------- /vendor/lief/tests/elf/test_747.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/elf/test_747.py -------------------------------------------------------------------------------- /vendor/lief/tests/elf/test_760.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/elf/test_760.py -------------------------------------------------------------------------------- /vendor/lief/tests/elf/test_bin2lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/elf/test_bin2lib.py -------------------------------------------------------------------------------- /vendor/lief/tests/elf/test_binary_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/elf/test_binary_size.py -------------------------------------------------------------------------------- /vendor/lief/tests/elf/test_bss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/elf/test_bss.py -------------------------------------------------------------------------------- /vendor/lief/tests/elf/test_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/elf/test_builder.py -------------------------------------------------------------------------------- /vendor/lief/tests/elf/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/elf/test_core.py -------------------------------------------------------------------------------- /vendor/lief/tests/elf/test_dynamic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/elf/test_dynamic.py -------------------------------------------------------------------------------- /vendor/lief/tests/elf/test_equality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/elf/test_equality.py -------------------------------------------------------------------------------- /vendor/lief/tests/elf/test_notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/elf/test_notes.py -------------------------------------------------------------------------------- /vendor/lief/tests/elf/test_object_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/elf/test_object_files.py -------------------------------------------------------------------------------- /vendor/lief/tests/elf/test_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/elf/test_parser.py -------------------------------------------------------------------------------- /vendor/lief/tests/elf/test_section_frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/elf/test_section_frame.py -------------------------------------------------------------------------------- /vendor/lief/tests/elf/test_static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/elf/test_static.py -------------------------------------------------------------------------------- /vendor/lief/tests/macho/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/macho/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/lief/tests/macho/objc/hello.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/macho/objc/hello.m -------------------------------------------------------------------------------- /vendor/lief/tests/macho/test_bin2lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/macho/test_bin2lib.py -------------------------------------------------------------------------------- /vendor/lief/tests/macho/test_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/macho/test_builder.py -------------------------------------------------------------------------------- /vendor/lief/tests/macho/test_dyld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/macho/test_dyld.py -------------------------------------------------------------------------------- /vendor/lief/tests/macho/test_fat_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/macho/test_fat_builder.py -------------------------------------------------------------------------------- /vendor/lief/tests/macho/test_generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/macho/test_generic.py -------------------------------------------------------------------------------- /vendor/lief/tests/macho/test_opcodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/macho/test_opcodes.py -------------------------------------------------------------------------------- /vendor/lief/tests/macho/test_relocations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/macho/test_relocations.py -------------------------------------------------------------------------------- /vendor/lief/tests/macho/test_shellcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/macho/test_shellcode.py -------------------------------------------------------------------------------- /vendor/lief/tests/macho/test_symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/macho/test_symbols.py -------------------------------------------------------------------------------- /vendor/lief/tests/oat/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/oat/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/lief/tests/oat/oat_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/oat/oat_test.py -------------------------------------------------------------------------------- /vendor/lief/tests/pe/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/pe/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/lief/tests/pe/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/pe/builder.py -------------------------------------------------------------------------------- /vendor/lief/tests/pe/test_authenticode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/pe/test_authenticode.py -------------------------------------------------------------------------------- /vendor/lief/tests/pe/test_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/pe/test_builder.py -------------------------------------------------------------------------------- /vendor/lief/tests/pe/test_delay_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/pe/test_delay_imports.py -------------------------------------------------------------------------------- /vendor/lief/tests/pe/test_hooking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/pe/test_hooking.py -------------------------------------------------------------------------------- /vendor/lief/tests/pe/test_imphash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/pe/test_imphash.py -------------------------------------------------------------------------------- /vendor/lief/tests/pe/test_loadconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/pe/test_loadconfig.py -------------------------------------------------------------------------------- /vendor/lief/tests/pe/test_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/pe/test_parser.py -------------------------------------------------------------------------------- /vendor/lief/tests/pe/test_pe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/pe/test_pe.py -------------------------------------------------------------------------------- /vendor/lief/tests/pe/test_res_fileinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/pe/test_res_fileinfo.py -------------------------------------------------------------------------------- /vendor/lief/tests/pe/test_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/pe/test_resources.py -------------------------------------------------------------------------------- /vendor/lief/tests/sanitizer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/sanitizer/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/lief/tests/test_iterators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/test_iterators.cpp -------------------------------------------------------------------------------- /vendor/lief/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/utils.py -------------------------------------------------------------------------------- /vendor/lief/tests/vdex/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/vdex/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/lief/tests/vdex/vdex_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/tests/vdex/vdex_test.py -------------------------------------------------------------------------------- /vendor/lief/third-party/Catch2-2.13.8.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/third-party/Catch2-2.13.8.zip -------------------------------------------------------------------------------- /vendor/lief/third-party/frozen-e6ddc43.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/third-party/frozen-e6ddc43.zip -------------------------------------------------------------------------------- /vendor/lief/third-party/json-3.9.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/third-party/json-3.9.1.zip -------------------------------------------------------------------------------- /vendor/lief/third-party/leaf-a781140.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/third-party/leaf-a781140.zip -------------------------------------------------------------------------------- /vendor/lief/third-party/mbedtls-3.1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/third-party/mbedtls-3.1.0.zip -------------------------------------------------------------------------------- /vendor/lief/third-party/pybind11-2.9.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/third-party/pybind11-2.9.2.zip -------------------------------------------------------------------------------- /vendor/lief/third-party/spdlog-1.10.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/third-party/spdlog-1.10.0.zip -------------------------------------------------------------------------------- /vendor/lief/third-party/utfcpp-3.1.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/lief/third-party/utfcpp-3.1.2.zip -------------------------------------------------------------------------------- /vendor/vendorpull/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/vendorpull/.editorconfig -------------------------------------------------------------------------------- /vendor/vendorpull/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/vendorpull/LICENSE -------------------------------------------------------------------------------- /vendor/vendorpull/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/vendorpull/Makefile -------------------------------------------------------------------------------- /vendor/vendorpull/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/vendorpull/README.md -------------------------------------------------------------------------------- /vendor/vendorpull/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/vendorpull/bootstrap -------------------------------------------------------------------------------- /vendor/vendorpull/include/assert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/vendorpull/include/assert.sh -------------------------------------------------------------------------------- /vendor/vendorpull/include/dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/vendorpull/include/dependencies.sh -------------------------------------------------------------------------------- /vendor/vendorpull/include/masker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/vendorpull/include/masker.sh -------------------------------------------------------------------------------- /vendor/vendorpull/include/patcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/vendorpull/include/patcher.sh -------------------------------------------------------------------------------- /vendor/vendorpull/include/tmpdir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/vendorpull/include/tmpdir.sh -------------------------------------------------------------------------------- /vendor/vendorpull/include/vcs/git.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/vendorpull/include/vcs/git.sh -------------------------------------------------------------------------------- /vendor/vendorpull/include/vcs/http.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/vendorpull/include/vcs/http.sh -------------------------------------------------------------------------------- /vendor/vendorpull/pull: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/vendorpull/pull -------------------------------------------------------------------------------- /vendor/vendorpull/src/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/vendorpull/src/bootstrap.sh -------------------------------------------------------------------------------- /vendor/vendorpull/src/pull.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/vendorpull/src/pull.sh -------------------------------------------------------------------------------- /vendor/vendorpull/targets.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/vendorpull/targets.mk -------------------------------------------------------------------------------- /vendor/vendorpull/test/bootstrap-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/vendorpull/test/bootstrap-update.sh -------------------------------------------------------------------------------- /vendor/vendorpull/test/fail-non-git.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/vendorpull/test/fail-non-git.sh -------------------------------------------------------------------------------- /vendor/vendorpull/test/file-download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/vendorpull/test/file-download.sh -------------------------------------------------------------------------------- /vendor/vendorpull/test/git-root.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/vendorpull/test/git-root.sh -------------------------------------------------------------------------------- /vendor/vendorpull/test/mask.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/vendorpull/test/mask.sh -------------------------------------------------------------------------------- /vendor/vendorpull/test/patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nodejs/postject/HEAD/vendor/vendorpull/test/patch.sh --------------------------------------------------------------------------------