python-pefile 2022.5.30-1 source package in Ubuntu

Changelog

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

  * New upstream version 2022.5.30

 -- Hilko Bengen <email address hidden>  Mon, 30 May 2022 19:22:21 +0200

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

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-pefile_2022.5.30-1.dsc 1.9 KiB 28737996e6a0d8e059f2a370abea2782dd4c6ede4059597e1c36bcc7874c578a
python-pefile_2022.5.30.orig.tar.gz 71.2 KiB 977d3cca4169317fac9737c46114a62d64333b286c788c74a40b764e7f41bbe9
python-pefile_2022.5.30-1.debian.tar.xz 4.2 KiB b92f35bd16958682f585461a68b7d5dd421ba0cf0a9dc1402c470f90c2d45435

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