python-pefile 2023.2.7-2 source package in Ubuntu

Changelog

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

  * Remove obsolete dependencies: future (Closes: #1058647), setuptools
  * Fix some lintian --pedantic warnings

 -- Hilko Bengen <email address hidden>  Thu, 14 Dec 2023 18:50:30 +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

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-pefile_2023.2.7-2.dsc 1.9 KiB 2291ab4833be4701a77ade35ccf867f9274af43c50a05fa74726c69c6d00a5b2
python-pefile_2023.2.7.orig.tar.gz 61.4 MiB 0748ae46a3b93c5d393620c827874266c86ac81f52bf25fc08e7e95efff9e8f0
python-pefile_2023.2.7-2.debian.tar.xz 4.4 KiB 5cdc1e0ebd7fa341a4217a9fb4a758f5032fd96378c279378b0977ecdb18e325

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