python-pefile 2019.4.18-1build1 source package in Ubuntu

Changelog

python-pefile (2019.4.18-1build1) focal; urgency=medium

  * No-change rebuild to generate dependencies on python2.

 -- Matthias Klose <email address hidden>  Tue, 17 Dec 2019 12:43:46 +0000

Upload details

Uploaded by:
Matthias Klose
Uploaded to:
Focal
Original maintainer:
Hilko Bengen
Architectures:
all
Section:
python
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Focal: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-pefile_2019.4.18.orig.tar.gz 60.9 KiB a5d6e8305c6b210849b47a6174ddf9c452b2888340b8177874b862ba6c207645
python-pefile_2019.4.18-1build1.debian.tar.xz 4.2 KiB c25ff08aebaccd810753d326df1e58880d9773df35b44b9f2c6d5fde8f3e2def
python-pefile_2019.4.18-1build1.dsc 2.0 KiB b2bc0aeb36e09e5fc45cdae6eb028b0b4fec88f2320551f38382cbda0a735c53

View changes file

Binary packages built by this source

python-pefile: No summary available for python-pefile in ubuntu focal.

No description available for python-pefile in ubuntu focal.

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