diff options
author | Barry J. Grundy <bgrundy [AT] linuxleo.com> | 2016-08-26 21:55:10 +0100 |
---|---|---|
committer | David Spencer <idlemoor@slackbuilds.org> | 2016-08-28 00:22:59 +0100 |
commit | 422bb7d3a0eed3b32f07490f29a63066e34e22f7 (patch) | |
tree | 5df7a01d07d6dfd1d0e8c166a1716fc78eba66f1 /python/pefile | |
parent | bb41500b29f880051c9aaf3c1c7a8ca8da62c5c1 (diff) |
python/pefile: Added (access Portable Executable files).
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'python/pefile')
-rw-r--r-- | python/pefile/README | 18 | ||||
-rw-r--r-- | python/pefile/pefile.SlackBuild | 86 | ||||
-rw-r--r-- | python/pefile/pefile.info | 10 | ||||
-rw-r--r-- | python/pefile/slack-desc | 19 |
4 files changed, 133 insertions, 0 deletions
diff --git a/python/pefile/README b/python/pefile/README new file mode 100644 index 000000000000..7f60fd40df87 --- /dev/null +++ b/python/pefile/README @@ -0,0 +1,18 @@ +pefile is a Python Portable Executable (PE) reader module. + +pefile is a multi-platform Python module to read and work with Portable +Executable (aka PE) files. Most of the information in the PE Header is +accessible, as well as all the sections, section's information and data. +pefile requires some basic understanding of the layout of a PE file. Armed +with it it's possible to explore nearly every single feature of the file. +Some of the tasks that pefile makes possible are: + + Modifying and writing back to the PE image + Header Inspection + Sections analysis + Retrieving data + Warnings for suspicious and malformed values + Packer detection with PEiD's signatures + PEiD signature generation + +python-future is a run time dependency. diff --git a/python/pefile/pefile.SlackBuild b/python/pefile/pefile.SlackBuild new file mode 100644 index 000000000000..0f098be909be --- /dev/null +++ b/python/pefile/pefile.SlackBuild @@ -0,0 +1,86 @@ +#!/bin/sh + +# Slackware build script for pefile +# Copyright 2016 Barry Grundy <bgrundy[at]linuxleo.com> +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# +# New submission August 2016, Barry J. Grundy. + +PRGNAM=pefile +VERSION=${VERSION:-2016.3.28} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i586 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM-$VERSION +chown -R root:root . +find -L . \ + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ +\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +python setup.py install --root=$PKG + +find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a README LICENSE $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/python/pefile/pefile.info b/python/pefile/pefile.info new file mode 100644 index 000000000000..cef70c330bf1 --- /dev/null +++ b/python/pefile/pefile.info @@ -0,0 +1,10 @@ +PRGNAM="pefile" +VERSION="2016.3.28" +HOMEPAGE="https://pypi.python.org/pypi/pefile/" +DOWNLOAD="https://pypi.python.org/packages/92/c0/8589ce9734ffdba258bd3e5acd4afb2e3586c121fe73402f686288b684b0/pefile-2016.3.28.tar.gz" +MD5SUM="2f3259fa2b5cf48a3fdc5422a58f854f" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="python-future" +MAINTAINER="Barry J. Grundy" +EMAIL="bgrundy<at>linuxleo.com" diff --git a/python/pefile/slack-desc b/python/pefile/slack-desc new file mode 100644 index 000000000000..510a53b1acf1 --- /dev/null +++ b/python/pefile/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. +# Line up the first '|' above the ':' following the base package name, and +# the '|' on the right side marks the last column you can put a character in. +# You must make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +pefile: pefile (Python module to access Portable Executable files) +pefile: +pefile: pefile is a Python s a multi-platform Python module to parse and work +pefile: with Portable Executable (aka PE) files. +pefile: +pefile: https://pypi.python.org/pypi/pefile/ +pefile: +pefile: +pefile: +pefile: +pefile: |