python-pefile 2021.9.3-1 source package in Ubuntu

Changelog

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

  * New upstream version 2021.9.3

 -- Hilko Bengen <email address hidden>  Fri, 03 Sep 2021 23:32:46 +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
Jammy release universe python

Builds

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-pefile_2021.9.3-1.dsc 1.9 KiB 585d0eb3db3396568d65885f7c57bafeac827145800e8ed51d095b50fdb66cca
python-pefile_2021.9.3.orig.tar.gz 70.5 KiB 344a49e40a94e10849f0fe34dddc80f773a12b40675bf2f7be4b8be578bdd94a
python-pefile_2021.9.3-1.debian.tar.xz 4.2 KiB 8136e7d70bb2f0d808b1976cc4c6fdf33a0c17aeb08257772c129d6614d1843e

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