├── .gitignore ├── LIEF ├── include │ ├── LIEF │ │ ├── Abstract │ │ │ ├── Abstract.hpp │ │ │ ├── Binary.hpp │ │ │ ├── EnumToString.hpp │ │ │ ├── Header.hpp │ │ │ ├── Parser.hpp │ │ │ ├── Relocation.hpp │ │ │ ├── Section.hpp │ │ │ ├── Symbol.hpp │ │ │ ├── enums.hpp │ │ │ └── type_traits.hpp │ │ ├── BinaryStream │ │ │ ├── BinaryStream.hpp │ │ │ └── VectorStream.hpp │ │ ├── Builder.hpp │ │ ├── ELF.h │ │ ├── ELF.hpp │ │ ├── ELF │ │ │ ├── Binary.h │ │ │ ├── Binary.hpp │ │ │ ├── Builder.hpp │ │ │ ├── DataHandler │ │ │ │ ├── Handler.hpp │ │ │ │ └── Node.hpp │ │ │ ├── DynamicEntry.h │ │ │ ├── DynamicEntry.hpp │ │ │ ├── DynamicEntryArray.hpp │ │ │ ├── DynamicEntryFlags.hpp │ │ │ ├── DynamicEntryLibrary.hpp │ │ │ ├── DynamicEntryRpath.hpp │ │ │ ├── DynamicEntryRunPath.hpp │ │ │ ├── DynamicSharedObject.hpp │ │ │ ├── EnumToString.h │ │ │ ├── EnumToString.hpp │ │ │ ├── GnuHash.hpp │ │ │ ├── Header.h │ │ │ ├── Header.hpp │ │ │ ├── Note.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.h │ │ │ ├── Section.hpp │ │ │ ├── Segment.h │ │ │ ├── Segment.hpp │ │ │ ├── Structures.hpp │ │ │ ├── Symbol.h │ │ │ ├── Symbol.hpp │ │ │ ├── SymbolVersion.hpp │ │ │ ├── SymbolVersionAux.hpp │ │ │ ├── SymbolVersionAuxRequirement.hpp │ │ │ ├── SymbolVersionDefinition.hpp │ │ │ ├── SymbolVersionRequirement.hpp │ │ │ ├── SysvHash.hpp │ │ │ ├── enums.h │ │ │ ├── enums.hpp │ │ │ ├── structures.h │ │ │ ├── type_traits.hpp │ │ │ ├── utils.h │ │ │ └── utils.hpp │ │ ├── LIEF.h │ │ ├── LIEF.hpp │ │ ├── MachO.h │ │ ├── MachO.hpp │ │ ├── MachO │ │ │ ├── Binary.h │ │ │ ├── Binary.hpp │ │ │ ├── BinaryParser.hpp │ │ │ ├── BindingInfo.hpp │ │ │ ├── Builder.hpp │ │ │ ├── DyldInfo.hpp │ │ │ ├── DylibCommand.hpp │ │ │ ├── DylinkerCommand.hpp │ │ │ ├── DynamicSymbolCommand.hpp │ │ │ ├── EnumToString.h │ │ │ ├── EnumToString.hpp │ │ │ ├── ExportInfo.hpp │ │ │ ├── FatBinary.hpp │ │ │ ├── FunctionStarts.hpp │ │ │ ├── Header.h │ │ │ ├── Header.hpp │ │ │ ├── LoadCommand.h │ │ │ ├── LoadCommand.hpp │ │ │ ├── MainCommand.hpp │ │ │ ├── Parser.hpp │ │ │ ├── Relocation.hpp │ │ │ ├── RelocationDyld.hpp │ │ │ ├── RelocationObject.hpp │ │ │ ├── Section.h │ │ │ ├── Section.hpp │ │ │ ├── Segment.h │ │ │ ├── SegmentCommand.hpp │ │ │ ├── SourceVersion.hpp │ │ │ ├── Structures.hpp │ │ │ ├── Symbol.h │ │ │ ├── Symbol.hpp │ │ │ ├── SymbolCommand.hpp │ │ │ ├── ThreadCommand.hpp │ │ │ ├── UUIDCommand.hpp │ │ │ ├── VersionMin.hpp │ │ │ ├── enums.h │ │ │ ├── enums.hpp │ │ │ ├── structures.h │ │ │ ├── type_traits.hpp │ │ │ ├── undef.h │ │ │ └── utils.hpp │ │ ├── PE.h │ │ ├── PE.hpp │ │ ├── PE │ │ │ ├── AuxiliarySymbol.hpp │ │ │ ├── Binary.h │ │ │ ├── Binary.hpp │ │ │ ├── Builder.hpp │ │ │ ├── CodeIntegrity.hpp │ │ │ ├── DataDirectory.h │ │ │ ├── DataDirectory.hpp │ │ │ ├── Debug.hpp │ │ │ ├── DosHeader.h │ │ │ ├── DosHeader.hpp │ │ │ ├── EnumToString.h │ │ │ ├── EnumToString.hpp │ │ │ ├── Export.hpp │ │ │ ├── ExportEntry.hpp │ │ │ ├── Header.h │ │ │ ├── Header.hpp │ │ │ ├── Import.h │ │ │ ├── Import.hpp │ │ │ ├── ImportEntry.h │ │ │ ├── ImportEntry.hpp │ │ │ ├── LoadConfigurations.hpp │ │ │ ├── LoadConfigurations │ │ │ │ ├── LoadConfiguration.hpp │ │ │ │ ├── LoadConfigurationV0.hpp │ │ │ │ ├── LoadConfigurationV1.hpp │ │ │ │ ├── LoadConfigurationV2.hpp │ │ │ │ ├── LoadConfigurationV3.hpp │ │ │ │ ├── LoadConfigurationV4.hpp │ │ │ │ ├── LoadConfigurationV5.hpp │ │ │ │ ├── LoadConfigurationV6.hpp │ │ │ │ └── LoadConfigurationV7.hpp │ │ │ ├── OptionalHeader.h │ │ │ ├── OptionalHeader.hpp │ │ │ ├── Parser.hpp │ │ │ ├── Relocation.hpp │ │ │ ├── RelocationEntry.hpp │ │ │ ├── ResourceData.hpp │ │ │ ├── ResourceDirectory.hpp │ │ │ ├── ResourceNode.hpp │ │ │ ├── ResourcesManager.hpp │ │ │ ├── RichEntry.hpp │ │ │ ├── RichHeader.hpp │ │ │ ├── Section.h │ │ │ ├── Section.hpp │ │ │ ├── Structures.hpp │ │ │ ├── Symbol.hpp │ │ │ ├── TLS.hpp │ │ │ ├── enums.h │ │ │ ├── enums.hpp │ │ │ ├── resources │ │ │ │ ├── LangCodeItem.hpp │ │ │ │ ├── ResourceDialog.hpp │ │ │ │ ├── ResourceDialogItem.hpp │ │ │ │ ├── ResourceFixedFileInfo.hpp │ │ │ │ ├── ResourceIcon.hpp │ │ │ │ ├── ResourceStringFileInfo.hpp │ │ │ │ ├── ResourceVarFileInfo.hpp │ │ │ │ └── ResourceVersion.hpp │ │ │ ├── signature │ │ │ │ ├── AuthenticatedAttributes.hpp │ │ │ │ ├── ContentInfo.hpp │ │ │ │ ├── OIDToString.hpp │ │ │ │ ├── Signature.hpp │ │ │ │ ├── SignatureParser.hpp │ │ │ │ ├── SignerInfo.hpp │ │ │ │ ├── types.hpp │ │ │ │ └── x509.hpp │ │ │ ├── structures.h │ │ │ ├── type_traits.hpp │ │ │ ├── undef.h │ │ │ └── utils.hpp │ │ ├── Visitable.hpp │ │ ├── Visitor.hpp │ │ ├── config.h │ │ ├── exception.hpp │ │ ├── filesystem │ │ │ ├── filesystem.h │ │ │ ├── fwd.h │ │ │ ├── path.h │ │ │ └── resolver.h │ │ ├── iostream.hpp │ │ ├── iterators.hpp │ │ ├── json.hpp │ │ ├── logging.hpp │ │ ├── to_json.hpp │ │ ├── types.h │ │ ├── types.hpp │ │ ├── utf8.h │ │ ├── utf8 │ │ │ ├── checked.h │ │ │ ├── core.h │ │ │ └── unchecked.h │ │ ├── utils.hpp │ │ ├── version.h │ │ ├── visibility.h │ │ └── visitors │ │ │ ├── Hash.hpp │ │ │ ├── elf_json.hpp │ │ │ ├── json.hpp │ │ │ └── pe_json.hpp │ └── json.hpp ├── lib │ └── libLIEF.a └── share │ └── LIEF │ ├── cmake │ └── FindLIEF.cmake │ └── examples │ ├── c │ ├── elf_reader.c │ ├── macho_reader.c │ └── pe_reader.c │ ├── cmake │ ├── external_project │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ └── main.cpp │ └── find_package │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ └── main.cpp │ ├── cpp │ ├── abstract_reader.cpp │ ├── benchmark.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_instrumentation.cpp │ ├── macho_reader.cpp │ ├── pe_builder.cpp │ └── pe_reader.cpp │ └── python │ ├── abstract_json.py │ ├── abstract_reader.py │ ├── change_elf_interpreter.py │ ├── elf_json.py │ ├── elf_reader.py │ ├── elf_remove_section_table.py │ ├── elf_symbol_obfuscation.py │ ├── elf_unstrip.py │ ├── entropy.py │ ├── keygen │ ├── KeygenMe │ └── lief_patch.py │ ├── library_symbols_obfuscation │ ├── Makefile │ ├── README.md │ ├── binadd.c │ ├── libadd.c │ ├── libadd.h │ └── obfu.py │ ├── macho_reader.py │ ├── nm.py │ ├── pe_authenticode.py │ ├── pe_from_scratch.py │ ├── pe_json.py │ ├── pe_reader.py │ └── pe_resources_manager.py ├── README.md ├── uuid-modifier.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── uuid-modifier.xcscheme └── uuid-modifier └── main.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/.gitignore -------------------------------------------------------------------------------- /LIEF/include/LIEF/Abstract/Abstract.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/Abstract/Abstract.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/Abstract/Binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/Abstract/Binary.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/Abstract/EnumToString.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/Abstract/EnumToString.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/Abstract/Header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/Abstract/Header.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/Abstract/Parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/Abstract/Parser.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/Abstract/Relocation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/Abstract/Relocation.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/Abstract/Section.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/Abstract/Section.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/Abstract/Symbol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/Abstract/Symbol.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/Abstract/enums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/Abstract/enums.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/Abstract/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/Abstract/type_traits.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/BinaryStream/BinaryStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/BinaryStream/BinaryStream.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/BinaryStream/VectorStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/BinaryStream/VectorStream.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/Builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/Builder.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/Binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/Binary.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/Binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/Binary.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/Builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/Builder.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/DataHandler/Handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/DataHandler/Handler.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/DataHandler/Node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/DataHandler/Node.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/DynamicEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/DynamicEntry.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/DynamicEntry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/DynamicEntry.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/DynamicEntryArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/DynamicEntryArray.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/DynamicEntryFlags.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/DynamicEntryFlags.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/DynamicEntryLibrary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/DynamicEntryLibrary.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/DynamicEntryRpath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/DynamicEntryRpath.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/DynamicEntryRunPath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/DynamicEntryRunPath.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/DynamicSharedObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/DynamicSharedObject.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/EnumToString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/EnumToString.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/EnumToString.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/EnumToString.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/GnuHash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/GnuHash.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/Header.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/Header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/Header.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/Note.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/Note.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/Parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/Parser.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/Relocation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/Relocation.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/RelocationSizes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/RelocationSizes.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/Relocations/AArch64.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/Relocations/AArch64.def -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/Relocations/ARM.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/Relocations/ARM.def -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/Relocations/Hexagon.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/Relocations/Hexagon.def -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/Relocations/Mips.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/Relocations/Mips.def -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/Relocations/PowerPC.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/Relocations/PowerPC.def -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/Relocations/PowerPC64.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/Relocations/PowerPC64.def -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/Relocations/Sparc.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/Relocations/Sparc.def -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/Relocations/SystemZ.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/Relocations/SystemZ.def -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/Relocations/i386.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/Relocations/i386.def -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/Relocations/x86_64.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/Relocations/x86_64.def -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/Section.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/Section.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/Section.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/Section.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/Segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/Segment.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/Segment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/Segment.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/Structures.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/Structures.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/Symbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/Symbol.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/Symbol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/Symbol.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/SymbolVersion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/SymbolVersion.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/SymbolVersionAux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/SymbolVersionAux.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/SymbolVersionAuxRequirement.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/SymbolVersionAuxRequirement.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/SymbolVersionDefinition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/SymbolVersionDefinition.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/SymbolVersionRequirement.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/SymbolVersionRequirement.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/SysvHash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/SysvHash.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/enums.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/enums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/enums.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/structures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/structures.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/type_traits.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/utils.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/ELF/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/ELF/utils.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/LIEF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/LIEF.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/LIEF.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/LIEF.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/MachO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/MachO.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/MachO.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/MachO.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/MachO/Binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/MachO/Binary.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/MachO/Binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/MachO/Binary.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/MachO/BinaryParser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/MachO/BinaryParser.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/MachO/BindingInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/MachO/BindingInfo.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/MachO/Builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/MachO/Builder.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/MachO/DyldInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/MachO/DyldInfo.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/MachO/DylibCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/MachO/DylibCommand.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/MachO/DylinkerCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/MachO/DylinkerCommand.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/MachO/DynamicSymbolCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/MachO/DynamicSymbolCommand.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/MachO/EnumToString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/MachO/EnumToString.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/MachO/EnumToString.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/MachO/EnumToString.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/MachO/ExportInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/MachO/ExportInfo.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/MachO/FatBinary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/MachO/FatBinary.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/MachO/FunctionStarts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/MachO/FunctionStarts.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/MachO/Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/MachO/Header.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/MachO/Header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/MachO/Header.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/MachO/LoadCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/MachO/LoadCommand.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/MachO/LoadCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/MachO/LoadCommand.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/MachO/MainCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/MachO/MainCommand.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/MachO/Parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/MachO/Parser.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/MachO/Relocation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/MachO/Relocation.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/MachO/RelocationDyld.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/MachO/RelocationDyld.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/MachO/RelocationObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/MachO/RelocationObject.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/MachO/Section.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/MachO/Section.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/MachO/Section.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/MachO/Section.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/MachO/Segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/MachO/Segment.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/MachO/SegmentCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/MachO/SegmentCommand.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/MachO/SourceVersion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/MachO/SourceVersion.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/MachO/Structures.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/MachO/Structures.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/MachO/Symbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/MachO/Symbol.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/MachO/Symbol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/MachO/Symbol.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/MachO/SymbolCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/MachO/SymbolCommand.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/MachO/ThreadCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/MachO/ThreadCommand.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/MachO/UUIDCommand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/MachO/UUIDCommand.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/MachO/VersionMin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/MachO/VersionMin.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/MachO/enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/MachO/enums.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/MachO/enums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/MachO/enums.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/MachO/structures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/MachO/structures.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/MachO/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/MachO/type_traits.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/MachO/undef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/MachO/undef.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/MachO/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/MachO/utils.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/AuxiliarySymbol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/AuxiliarySymbol.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/Binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/Binary.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/Binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/Binary.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/Builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/Builder.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/CodeIntegrity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/CodeIntegrity.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/DataDirectory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/DataDirectory.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/DataDirectory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/DataDirectory.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/Debug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/Debug.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/DosHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/DosHeader.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/DosHeader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/DosHeader.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/EnumToString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/EnumToString.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/EnumToString.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/EnumToString.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/Export.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/Export.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/ExportEntry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/ExportEntry.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/Header.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/Header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/Header.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/Import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/Import.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/Import.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/Import.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/ImportEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/ImportEntry.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/ImportEntry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/ImportEntry.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/LoadConfigurations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/LoadConfigurations.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/LoadConfigurations/LoadConfiguration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/LoadConfigurations/LoadConfiguration.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/LoadConfigurations/LoadConfigurationV0.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/LoadConfigurations/LoadConfigurationV0.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/LoadConfigurations/LoadConfigurationV1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/LoadConfigurations/LoadConfigurationV1.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/LoadConfigurations/LoadConfigurationV2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/LoadConfigurations/LoadConfigurationV2.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/LoadConfigurations/LoadConfigurationV3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/LoadConfigurations/LoadConfigurationV3.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/LoadConfigurations/LoadConfigurationV4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/LoadConfigurations/LoadConfigurationV4.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/LoadConfigurations/LoadConfigurationV5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/LoadConfigurations/LoadConfigurationV5.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/LoadConfigurations/LoadConfigurationV6.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/LoadConfigurations/LoadConfigurationV6.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/LoadConfigurations/LoadConfigurationV7.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/LoadConfigurations/LoadConfigurationV7.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/OptionalHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/OptionalHeader.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/OptionalHeader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/OptionalHeader.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/Parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/Parser.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/Relocation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/Relocation.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/RelocationEntry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/RelocationEntry.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/ResourceData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/ResourceData.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/ResourceDirectory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/ResourceDirectory.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/ResourceNode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/ResourceNode.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/ResourcesManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/ResourcesManager.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/RichEntry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/RichEntry.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/RichHeader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/RichHeader.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/Section.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/Section.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/Section.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/Section.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/Structures.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/Structures.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/Symbol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/Symbol.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/TLS.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/TLS.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/enums.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/enums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/enums.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/resources/LangCodeItem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/resources/LangCodeItem.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/resources/ResourceDialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/resources/ResourceDialog.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/resources/ResourceDialogItem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/resources/ResourceDialogItem.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/resources/ResourceFixedFileInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/resources/ResourceFixedFileInfo.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/resources/ResourceIcon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/resources/ResourceIcon.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/resources/ResourceStringFileInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/resources/ResourceStringFileInfo.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/resources/ResourceVarFileInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/resources/ResourceVarFileInfo.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/resources/ResourceVersion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/resources/ResourceVersion.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/signature/AuthenticatedAttributes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/signature/AuthenticatedAttributes.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/signature/ContentInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/signature/ContentInfo.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/signature/OIDToString.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/signature/OIDToString.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/signature/Signature.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/signature/Signature.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/signature/SignatureParser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/signature/SignatureParser.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/signature/SignerInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/signature/SignerInfo.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/signature/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/signature/types.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/signature/x509.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/signature/x509.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/structures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/structures.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/type_traits.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/undef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/undef.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/PE/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/PE/utils.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/Visitable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/Visitable.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/Visitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/Visitor.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/config.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/exception.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/filesystem/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/filesystem/filesystem.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/filesystem/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/filesystem/fwd.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/filesystem/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/filesystem/path.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/filesystem/resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/filesystem/resolver.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/iostream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/iostream.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/iterators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/iterators.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/json.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/logging.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/logging.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/to_json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/to_json.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/types.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/types.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/utf8.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/utf8/checked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/utf8/checked.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/utf8/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/utf8/core.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/utf8/unchecked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/utf8/unchecked.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/utils.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/version.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/visibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/visibility.h -------------------------------------------------------------------------------- /LIEF/include/LIEF/visitors/Hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/visitors/Hash.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/visitors/elf_json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/visitors/elf_json.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/visitors/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/visitors/json.hpp -------------------------------------------------------------------------------- /LIEF/include/LIEF/visitors/pe_json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/LIEF/visitors/pe_json.hpp -------------------------------------------------------------------------------- /LIEF/include/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/include/json.hpp -------------------------------------------------------------------------------- /LIEF/lib/libLIEF.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/lib/libLIEF.a -------------------------------------------------------------------------------- /LIEF/share/LIEF/cmake/FindLIEF.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/cmake/FindLIEF.cmake -------------------------------------------------------------------------------- /LIEF/share/LIEF/examples/c/elf_reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/examples/c/elf_reader.c -------------------------------------------------------------------------------- /LIEF/share/LIEF/examples/c/macho_reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/examples/c/macho_reader.c -------------------------------------------------------------------------------- /LIEF/share/LIEF/examples/c/pe_reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/examples/c/pe_reader.c -------------------------------------------------------------------------------- /LIEF/share/LIEF/examples/cmake/external_project/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/examples/cmake/external_project/CMakeLists.txt -------------------------------------------------------------------------------- /LIEF/share/LIEF/examples/cmake/external_project/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/examples/cmake/external_project/README.rst -------------------------------------------------------------------------------- /LIEF/share/LIEF/examples/cmake/external_project/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/examples/cmake/external_project/main.cpp -------------------------------------------------------------------------------- /LIEF/share/LIEF/examples/cmake/find_package/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/examples/cmake/find_package/CMakeLists.txt -------------------------------------------------------------------------------- /LIEF/share/LIEF/examples/cmake/find_package/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/examples/cmake/find_package/README.rst -------------------------------------------------------------------------------- /LIEF/share/LIEF/examples/cmake/find_package/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/examples/cmake/find_package/main.cpp -------------------------------------------------------------------------------- /LIEF/share/LIEF/examples/cpp/abstract_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/examples/cpp/abstract_reader.cpp -------------------------------------------------------------------------------- /LIEF/share/LIEF/examples/cpp/benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/examples/cpp/benchmark.cpp -------------------------------------------------------------------------------- /LIEF/share/LIEF/examples/cpp/elf_add_section.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/examples/cpp/elf_add_section.cpp -------------------------------------------------------------------------------- /LIEF/share/LIEF/examples/cpp/elf_builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/examples/cpp/elf_builder.cpp -------------------------------------------------------------------------------- /LIEF/share/LIEF/examples/cpp/elf_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/examples/cpp/elf_reader.cpp -------------------------------------------------------------------------------- /LIEF/share/LIEF/examples/cpp/elf_section_rename.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/examples/cpp/elf_section_rename.cpp -------------------------------------------------------------------------------- /LIEF/share/LIEF/examples/cpp/elf_strip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/examples/cpp/elf_strip.cpp -------------------------------------------------------------------------------- /LIEF/share/LIEF/examples/cpp/elf_symbols.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/examples/cpp/elf_symbols.cpp -------------------------------------------------------------------------------- /LIEF/share/LIEF/examples/cpp/logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/examples/cpp/logging.cpp -------------------------------------------------------------------------------- /LIEF/share/LIEF/examples/cpp/macho_builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/examples/cpp/macho_builder.cpp -------------------------------------------------------------------------------- /LIEF/share/LIEF/examples/cpp/macho_instrumentation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/examples/cpp/macho_instrumentation.cpp -------------------------------------------------------------------------------- /LIEF/share/LIEF/examples/cpp/macho_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/examples/cpp/macho_reader.cpp -------------------------------------------------------------------------------- /LIEF/share/LIEF/examples/cpp/pe_builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/examples/cpp/pe_builder.cpp -------------------------------------------------------------------------------- /LIEF/share/LIEF/examples/cpp/pe_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/examples/cpp/pe_reader.cpp -------------------------------------------------------------------------------- /LIEF/share/LIEF/examples/python/abstract_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/examples/python/abstract_json.py -------------------------------------------------------------------------------- /LIEF/share/LIEF/examples/python/abstract_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/examples/python/abstract_reader.py -------------------------------------------------------------------------------- /LIEF/share/LIEF/examples/python/change_elf_interpreter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/examples/python/change_elf_interpreter.py -------------------------------------------------------------------------------- /LIEF/share/LIEF/examples/python/elf_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/examples/python/elf_json.py -------------------------------------------------------------------------------- /LIEF/share/LIEF/examples/python/elf_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/examples/python/elf_reader.py -------------------------------------------------------------------------------- /LIEF/share/LIEF/examples/python/elf_remove_section_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/examples/python/elf_remove_section_table.py -------------------------------------------------------------------------------- /LIEF/share/LIEF/examples/python/elf_symbol_obfuscation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/examples/python/elf_symbol_obfuscation.py -------------------------------------------------------------------------------- /LIEF/share/LIEF/examples/python/elf_unstrip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/examples/python/elf_unstrip.py -------------------------------------------------------------------------------- /LIEF/share/LIEF/examples/python/entropy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/examples/python/entropy.py -------------------------------------------------------------------------------- /LIEF/share/LIEF/examples/python/keygen/KeygenMe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/examples/python/keygen/KeygenMe -------------------------------------------------------------------------------- /LIEF/share/LIEF/examples/python/keygen/lief_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/examples/python/keygen/lief_patch.py -------------------------------------------------------------------------------- /LIEF/share/LIEF/examples/python/library_symbols_obfuscation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/examples/python/library_symbols_obfuscation/Makefile -------------------------------------------------------------------------------- /LIEF/share/LIEF/examples/python/library_symbols_obfuscation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/examples/python/library_symbols_obfuscation/README.md -------------------------------------------------------------------------------- /LIEF/share/LIEF/examples/python/library_symbols_obfuscation/binadd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/examples/python/library_symbols_obfuscation/binadd.c -------------------------------------------------------------------------------- /LIEF/share/LIEF/examples/python/library_symbols_obfuscation/libadd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/examples/python/library_symbols_obfuscation/libadd.c -------------------------------------------------------------------------------- /LIEF/share/LIEF/examples/python/library_symbols_obfuscation/libadd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/examples/python/library_symbols_obfuscation/libadd.h -------------------------------------------------------------------------------- /LIEF/share/LIEF/examples/python/library_symbols_obfuscation/obfu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/examples/python/library_symbols_obfuscation/obfu.py -------------------------------------------------------------------------------- /LIEF/share/LIEF/examples/python/macho_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/examples/python/macho_reader.py -------------------------------------------------------------------------------- /LIEF/share/LIEF/examples/python/nm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/examples/python/nm.py -------------------------------------------------------------------------------- /LIEF/share/LIEF/examples/python/pe_authenticode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/examples/python/pe_authenticode.py -------------------------------------------------------------------------------- /LIEF/share/LIEF/examples/python/pe_from_scratch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/examples/python/pe_from_scratch.py -------------------------------------------------------------------------------- /LIEF/share/LIEF/examples/python/pe_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/examples/python/pe_json.py -------------------------------------------------------------------------------- /LIEF/share/LIEF/examples/python/pe_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/examples/python/pe_reader.py -------------------------------------------------------------------------------- /LIEF/share/LIEF/examples/python/pe_resources_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/LIEF/share/LIEF/examples/python/pe_resources_manager.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/README.md -------------------------------------------------------------------------------- /uuid-modifier.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/uuid-modifier.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /uuid-modifier.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/uuid-modifier.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /uuid-modifier.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/uuid-modifier.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /uuid-modifier.xcodeproj/xcshareddata/xcschemes/uuid-modifier.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/uuid-modifier.xcodeproj/xcshareddata/xcschemes/uuid-modifier.xcscheme -------------------------------------------------------------------------------- /uuid-modifier/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bestswifter/bsUUIDModifier/HEAD/uuid-modifier/main.cpp --------------------------------------------------------------------------------