/* Copyright 2017 - 2021 R. Thomas * Copyright 2017 - 2021 Quarkslab * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include "pyPE.hpp" #include "LIEF/PE/hash.hpp" #include "LIEF/PE/Header.hpp" #include #include namespace LIEF { namespace PE { template using getter_t = T (Header::*)(void) const; template using setter_t = void (Header::*)(T); template<> void create
(py::module& m) { py::class_(m, "Header") .def(py::init<>()) .def_property("signature", static_cast>(&Header::signature), static_cast>(&Header::signature), "PE signature. Should be ``[80, 69, 0, 0]`` (``PE\\0\\0``)") .def_property("machine", static_cast>(&Header::machine), static_cast>(&Header::machine), "Target " RST_CLASS_REF(lief.PE.MACHINE_TYPES) "") .def_property("numberof_sections", static_cast>(&Header::numberof_sections), static_cast>(&Header::numberof_sections), "Number of sections in the binary") .def_property("time_date_stamps", static_cast>(&Header::time_date_stamp), static_cast>(&Header::time_date_stamp), "The low 32 bits of the number of seconds since 00:00 January 1, 1970 that indicates when the file was created.") .def_property("pointerto_symbol_table", static_cast>(&Header::pointerto_symbol_table), static_cast>(&Header::pointerto_symbol_table), "The file offset of the COFF symbol table, or zero if no COFF symbol table is present.\n\n" "This value should be zero for an image because COFF debugging information is deprecated.") .def_property("numberof_symbols", static_cast>(&Header::numberof_symbols), static_cast>(&Header::numberof_symbols), "The number of entries in the symbol table. This " "data can be used to locate the string table, " "which immediately follows the symbol table. " "This value should be zero for an image because " "COFF debugging information is deprecated.") .def_property("sizeof_optional_header", static_cast>(&Header::sizeof_optional_header), static_cast>(&Header::sizeof_optional_header), "The size of the optional header, which is\n" "required for executable files") .def_property("characteristics", static_cast>(&Header::characteristics), static_cast>(&Header::characteristics), "The " RST_CLASS_REF(lief.PE.HEADER_CHARACTERISTICS) " that indicate the attributes of the file.") .def("has_characteristic", &Header::has_characteristic, "``True`` if the header has the given " RST_CLASS_REF(lief.PE.HEADER_CHARACTERISTICS) "", "characteristic"_a) .def("add_characteristic", &Header::add_characteristic, "Add the given " RST_CLASS_REF(lief.PE.HEADER_CHARACTERISTICS) " to the header", "characteristic"_a) .def("remove_characteristic", &Header::remove_characteristic, "Remove the given " RST_CLASS_REF(lief.PE.HEADER_CHARACTERISTICS) " from the header", "characteristic"_a) .def_property_readonly("characteristics_list", &Header::characteristics_list, "Return the " RST_CLASS_REF(lief.PE.HEADER_CHARACTERISTICS) " as a ``list``") .def("__eq__", &Header::operator==) .def("__ne__", &Header::operator!=) .def("__hash__", [] (const Header& header) { return Hash::hash(header); }) .def("__str__", [] (const Header& header) { std::ostringstream stream; stream << header; std::string str = stream.str(); return str; }); } } }