python-pefile 2023.2.7-3 source package in Ubuntu

Changelog

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

  * Patch regex syntax string for parsing peid (Closes: #1058741)

 -- Hilko Bengen <email address hidden>  Fri, 15 Dec 2023 17:16:08 +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
Oracular release universe python
Noble release universe python

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-pefile_2023.2.7-3.dsc 1.9 KiB c985baa483f9373080aee4b5896816207eb508c62e21196300f57ce9f4ef7cff
python-pefile_2023.2.7.orig.tar.gz 61.4 MiB 0748ae46a3b93c5d393620c827874266c86ac81f52bf25fc08e7e95efff9e8f0
python-pefile_2023.2.7-3.debian.tar.xz 4.7 KiB 64be605bcfb18f2d6aa086c4b938c9708472636eac7c499acf9540f79e538a21

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