diff --git a/LICENSE b/LICENSE index 993e651..8d47b9e 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2004-2017 Ero Carrera +Copyright (c) 2004-2018 Ero Carrera Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README b/README index 38fef4b..c61ab7c 100644 --- a/README +++ b/README @@ -35,6 +35,7 @@ Prompted by the move to GitHub, the need to support Python 3 in addition to reso ## Projects and products using _pefile_ + * Didier Stevens' [pecheck](https://blog.didierstevens.com/2018/06/12/update-pecheck-py-version-0-7-3/), a tool for displaying PE file info, handles for PEiD files better then _pefile_ does * [MAEC](http://maec.mitre.org) MAEC is a standardized language for encoding and communicating high-fidelity information about malware based upon attributes such as behaviors, artifacts, and attack patterns. MAEC [converts](https://github.com/MAECProject/pefile-to-maec) _pefile_'s output into their XML format. * [Qiew](https://github.com/mtivadar/qiew) Qiew - Hex/File format viewer. * [VirusTotal](http://www.virustotal.com/) diff --git a/README.md b/README.md index 46a6e5c..c874201 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,7 @@ Prompted by the move to GitHub, the need to support Python 3 in addition to reso ## Projects and products using _pefile_ + * Didier Stevens' [pecheck](https://blog.didierstevens.com/2018/06/12/update-pecheck-py-version-0-7-3/), a tool for displaying PE file info, handles for PEiD files better then _pefile_ does * [MAEC](http://maec.mitre.org) MAEC is a standardized language for encoding and communicating high-fidelity information about malware based upon attributes such as behaviors, artifacts, and attack patterns. MAEC [converts](https://github.com/MAECProject/pefile-to-maec) _pefile_'s output into their XML format. * [Qiew](https://github.com/mtivadar/qiew) Qiew - Hex/File format viewer. * [VirusTotal](http://www.virustotal.com/) diff --git a/pefile.py b/pefile.py index 7a84cab..3777bd1 100644 --- a/pefile.py +++ b/pefile.py @@ -28,7 +28,7 @@ from builtins import zip __author__ = 'Ero Carrera' -__version__ = '2017.12.16' +__version__ = '2018.8.8' __contact__ = 'ero.carrera@gmail.com' import os diff --git a/setup.py b/setup.py index 4e62eca..d8ddb9b 100755 --- a/setup.py +++ b/setup.py @@ -83,7 +83,7 @@ def run(self): author = _read_attr('__author__'), author_email = _read_attr('__contact__'), url = 'https://github.com/erocarrera/pefile', - download_url='https://github.com/erocarrera/pefile/releases/download/v2017.11.5/pefile-2017.11.5.tar.gz', + download_url='https://github.com/erocarrera/pefile/releases/download/v2018.8.8/pefile-2018.8.8.tar.gz', keywords = ['pe', 'exe', 'dll', 'pefile', 'pecoff'], classifiers = [ 'Development Status :: 5 - Production/Stable', diff --git a/tests/test_data.tar.bz2 b/tests/test_data.tar.bz2 new file mode 100644 index 0000000..0f5f71e Binary files /dev/null and b/tests/test_data.tar.bz2 differ