├── .coveragerc ├── .gitignore ├── .travis.yml ├── CHNAGELOG.md ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── Pipfile ├── Pipfile.lock ├── README.md ├── VERSION ├── config.py ├── pefixup.py ├── requirements.txt ├── scripts ├── build_docker.sh ├── release.sh ├── release_docker.sh └── release_pypi.sh ├── setup.cfg ├── setup.py ├── src ├── __init__.py └── core │ ├── __init__.py │ ├── core_checks.py │ ├── core_cook.py │ ├── core_hash.py │ ├── core_model.py │ ├── core_postflight.py │ ├── core_preflight.py │ ├── core_preop.py │ ├── core_printer.py │ ├── core_runtime.py │ └── test_hash.py └── test └── net-35-bin.exe /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/PeFixup/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/PeFixup/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/PeFixup/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHNAGELOG.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/PeFixup/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/PeFixup/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.md 2 | -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/PeFixup/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/PeFixup/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/PeFixup/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.0.2 -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/PeFixup/HEAD/config.py -------------------------------------------------------------------------------- /pefixup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/PeFixup/HEAD/pefixup.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/PeFixup/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/build_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/PeFixup/HEAD/scripts/build_docker.sh -------------------------------------------------------------------------------- /scripts/release.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/release_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/PeFixup/HEAD/scripts/release_docker.sh -------------------------------------------------------------------------------- /scripts/release_pypi.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/PeFixup/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/PeFixup/HEAD/setup.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/core/core_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/PeFixup/HEAD/src/core/core_checks.py -------------------------------------------------------------------------------- /src/core/core_cook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/PeFixup/HEAD/src/core/core_cook.py -------------------------------------------------------------------------------- /src/core/core_hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/PeFixup/HEAD/src/core/core_hash.py -------------------------------------------------------------------------------- /src/core/core_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/PeFixup/HEAD/src/core/core_model.py -------------------------------------------------------------------------------- /src/core/core_postflight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/PeFixup/HEAD/src/core/core_postflight.py -------------------------------------------------------------------------------- /src/core/core_preflight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/PeFixup/HEAD/src/core/core_preflight.py -------------------------------------------------------------------------------- /src/core/core_preop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/PeFixup/HEAD/src/core/core_preop.py -------------------------------------------------------------------------------- /src/core/core_printer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/PeFixup/HEAD/src/core/core_printer.py -------------------------------------------------------------------------------- /src/core/core_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/PeFixup/HEAD/src/core/core_runtime.py -------------------------------------------------------------------------------- /src/core/test_hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/PeFixup/HEAD/src/core/test_hash.py -------------------------------------------------------------------------------- /test/net-35-bin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obscuritylabs/PeFixup/HEAD/test/net-35-bin.exe --------------------------------------------------------------------------------