python-pefile 2023.2.7-1 source package in Ubuntu

Changelog

python-pefile (2023.2.7-1) unstable; urgency=medium

  * New upstream version 2023.2.7
  * Update debian/watch
  * Add gbp.conf
  * Modernize package: Standards-Version, DH compat level, leaner d/rules

 -- Hilko Bengen <email address hidden>  Thu, 09 Feb 2023 15:12:49 +0100

Upload details

Uploaded by:
Hilko Bengen
Uploaded to:
Sid
Original maintainer:
Hilko Bengen
Architectures:
all
Section:
python
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Mantic release universe python
Lunar release universe python

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-pefile_2023.2.7-1.dsc 1.9 KiB ebf696cb813f1b04fc035abb245555bc953ab985a2b19ce316833b9013ff1049
python-pefile_2023.2.7.orig.tar.gz 61.4 MiB 0748ae46a3b93c5d393620c827874266c86ac81f52bf25fc08e7e95efff9e8f0
python-pefile_2023.2.7-1.debian.tar.xz 4.3 KiB 4b3926f8fc9769b4470e1aa03f4eb129c05e2303f192d073f698f70e35268ae6

Available diffs

No changes file available.

Binary packages built by this source

python3-pefile: Portable Executable (PE) parsing module for Python

 pefile is a Python module to read and work with Portable Executable (PE)
 files. Most of the information in the PE header is accessible, as well as all
 the sections, section information and data.
 .
 All the basic PE file structures are available with their default names as
 attributes of the returned instance.
 .
 Processed elements such as the import table are made available with lowercase
 names, to differentiate them from the upper case basic structure names.
 .
 pefile has been tested against the limits of valid PE headers; that is,
 Windows malware. Lots of packed malware attempt to abuse the format beyond its
 standard use.
 .
 Some of the tasks that pefile makes possible are:
  * Modifying and writing back to the PE image
  * Header inspection
  * Section analysis
  * Retrieving data
  * Warnings for suspicious and malformed values
  * Packer detection with PEiD signatures
  * PEiD signature generation