1
0
Files
python-oletools/python-oletools.spec
Sebastian Wagner a4e1c784c5 - Update to version 0.60.1:
* olevba:
  * fixed a bug when calling XLMMacroDeobfuscator (PR #737)
  * removed keyword "sample" causing false positives
 * oleid: fixed OleID init issue (issue #695, PR #696)
 * oleobj:
  * added simple detection of CVE-2021-40444 initial stage
  * added detection for customUI onLoad
  * improved handling of incorrect filenames in OLE package (PR #451)
 * rtfobj: fixed code to find URLs in OLE2Link objects for Py3 (issue #692)
 * ftguess:
  * added PowerPoint and XPS formats (PR #716)
  * fixed issue with XPS and malformed documents (issue #711)
  * added XLSB format (issue #758)
 * improved logging with common module log_helper (PR #449)
 * More details about fixed issues and improvements in 0.60: https://github.com/decalage2/oletools/milestone/10?closed=1

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-oletools?expand=0&rev=10
2024-02-02 14:35:27 +00:00

122 lines
4.7 KiB
RPMSpec

#
# spec file for package python-oletools
#
# Copyright (c) 2024 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
Name: python-oletools
Version: 0.60.1
Release: 0
Summary: Tools to analyze security characteristics of MS Office and OLE files
License: BSD-2-Clause AND MIT
URL: http://www.decalage.info/python/oletools
Source: https://files.pythonhosted.org/packages/source/o/oletools/oletools-%{version}.zip
BuildRequires: %{python_module setuptools}
BuildRequires: python-rpm-macros
# SECTION test requirements
BuildRequires: %{python_module colorclass}
BuildRequires: %{python_module easygui}
BuildRequires: %{python_module msoffcrypto-tool}
BuildRequires: %{python_module olefile >= 0.46}
BuildRequires: %{python_module pyparsing >= 2.1.0}
BuildRequires: %{python_module pytest}
# /SECTION
BuildRequires: unzip
BuildRequires: dos2unix
BuildRequires: fdupes
%if 0%{?sle_version} == 150200 || 0%{?sle_version} == 150300
BuildRequires: python2-xml
%endif
Requires: python-colorclass
Requires: python-easygui
Requires: python-msoffcrypto-tool
Requires: python-olefile >= 0.46
Recommends: python-pcodedmp >= 1.2.5
Requires: python-pyparsing >= 2.1.0
%if "%{python_flavor}" == "python2"
Requires: python2-xml
%endif
Requires(post): update-alternatives
Requires(postun):update-alternatives
BuildArch: noarch
%python_subpackages
%description
Python tools to analyze security characteristics of MS Office and OLE files (also called Structured Storage, Compound File Binary Format or Compound Document File Format), for Malware Analysis and Incident Response (DFIR)
%prep
%setup -q -n oletools-%{version}
find oletools -name "*.py" -exec sed -i '1{/\/bin\/env python/d;}' {} \+
find oletools -name "*.py" -exec sed -i 's/\r\n/\n/' {} \+
dos2unix tests/olevba/test_basic.py oletools/olevba.py README.md
%build
%python_build
%install
%python_install
# remove actually optional dependency from requires
sed -i '1{/pcodedmp/d;}' %{buildroot}%{python_sitelib}/oletools-*.egg-info/requires.txt
%python_clone -a %{buildroot}%{_bindir}/ezhexviewer
%python_clone -a %{buildroot}%{_bindir}/mraptor
%python_clone -a %{buildroot}%{_bindir}/olebrowse
%python_clone -a %{buildroot}%{_bindir}/oledir
%python_clone -a %{buildroot}%{_bindir}/oleid
%python_clone -a %{buildroot}%{_bindir}/olemap
%python_clone -a %{buildroot}%{_bindir}/olemeta
%python_clone -a %{buildroot}%{_bindir}/oletimes
%python_clone -a %{buildroot}%{_bindir}/olevba
%python_clone -a %{buildroot}%{_bindir}/pyxswf
%python_clone -a %{buildroot}%{_bindir}/rtfobj
%python_clone -a %{buildroot}%{_bindir}/oleobj
%python_clone -a %{buildroot}%{_bindir}/msodde
%python_clone -a %{buildroot}%{_bindir}/olefile
%python_clone -a %{buildroot}%{_bindir}/ftguess
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
# test_macros, test_empty_behaviour, test_rtf_behaviour, test_text_behaviour, test_xlm: reported at https://github.com/decalage2/oletools/issues/767
%pytest -k 'not test_rough_doctype and not test_encrypted and not test_crypt_return and not test_all and not test_macros and not test_empty_behaviour and not test_rtf_behaviour and not test_text_behaviour and not test_xlm'
#%%pyunittest
%post
%python_install_alternative ezhexviewer mraptor olebrowse oledir oleid olemap olemeta oletimes olevba pyxswf rtfobj oleobj msodde olefile ftguess
%postun
%python_uninstall_alternative ezhexviewer
%files %{python_files}
%doc README.md
%license oletools/LICENSE.txt
%python_alternative %{_bindir}/ezhexviewer
%python_alternative %{_bindir}/mraptor
%python_alternative %{_bindir}/olebrowse
%python_alternative %{_bindir}/oledir
%python_alternative %{_bindir}/oleid
%python_alternative %{_bindir}/olemap
%python_alternative %{_bindir}/olemeta
%python_alternative %{_bindir}/oletimes
%python_alternative %{_bindir}/olevba
%python_alternative %{_bindir}/pyxswf
%python_alternative %{_bindir}/rtfobj
%python_alternative %{_bindir}/oleobj
%python_alternative %{_bindir}/msodde
%python_alternative %{_bindir}/olefile
%python_alternative %{_bindir}/ftguess
%{python_sitelib}/oletools/
%{python_sitelib}/oletools-%{version}-py*.egg-info
%changelog