├── .gitattributes ├── .gitignore ├── .readthedocs.yml ├── CITATIONS.bib ├── Dockerfile ├── LICENSE ├── README.md ├── docs ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── PR_TEMPLATE_CONSOLE.md ├── PR_TEMPLATE_PACKER.md ├── PR_TEMPLATE_TOOL.md ├── material │ ├── bheu22-packingbox.pdf │ ├── bheu23-packingbox.pdf │ └── bheu24-packingbox.pdf ├── mkdocs.yml ├── pages │ ├── assets │ │ ├── bheu22-presentation.pdf │ │ └── stylesheets │ │ │ └── extra.css │ ├── cases.md │ ├── imgs │ │ ├── 7z_upx_7z.png.png │ │ ├── automated-packing-process.png │ │ ├── calc.png │ │ ├── data-visualization-features.png │ │ ├── data-visualization-psexec.png │ │ ├── dataset-operations-make.png │ │ ├── dataset-operations-merge.png │ │ ├── dataset-operations-select.png │ │ ├── dataset-operations-update.png │ │ ├── detector-wrapper-script.png │ │ ├── get-help-packers.png │ │ ├── get-help-upx.png │ │ ├── icon.png │ │ ├── logo.png │ │ ├── machine-learning-pipeline.png │ │ ├── model-operations-compare.png │ │ ├── model-operations-test.png │ │ ├── model-operations-train.png │ │ ├── packing-box-architecture.png │ │ └── screenshot.png │ ├── index.md │ ├── internals │ │ ├── entities │ │ │ ├── datasets.md │ │ │ ├── executables.md │ │ │ ├── experiments.md │ │ │ ├── index.md │ │ │ └── models.md │ │ ├── index.md │ │ └── items │ │ │ ├── analyzers.md │ │ │ ├── detectors.md │ │ │ ├── index.md │ │ │ ├── packers.md │ │ │ └── unpackers.md │ ├── quickstart.md │ └── usage │ │ ├── analysis.md │ │ ├── datasets.md │ │ ├── detectors.md │ │ ├── index.md │ │ ├── management.md │ │ ├── packers.md │ │ └── training.md └── requirements.txt ├── src ├── conf │ ├── algorithms.yml │ ├── alterations.yml │ ├── analyzers.yml │ ├── detectors.yml │ ├── features.yml │ ├── packers.yml │ ├── references.yml │ ├── scenarios.yml │ └── unpackers.yml ├── data │ ├── elf │ │ ├── common_packer_section_names.txt │ │ └── standard_section_names.txt │ ├── macho │ │ ├── common_packer_section_names.txt │ │ └── standard_section_names.txt │ └── pe │ │ ├── common_api_imports.txt │ │ ├── common_dll_imports.json │ │ ├── common_malicious_apis.txt │ │ ├── common_packer_section_names.txt │ │ ├── common_section_permissions.json │ │ ├── dead_code.txt │ │ ├── make-common-api-imports.py │ │ └── standard_section_names.txt ├── files │ ├── analyzers │ │ ├── f-prot.tar.xz │ │ ├── gettyp.zip │ │ ├── pescan │ │ └── trid.zip │ ├── detectors │ │ ├── binaryobjectscanner │ │ ├── binaryobjectscanner.zip │ │ ├── bintropy │ │ ├── die │ │ ├── manalyze │ │ ├── peframe │ │ ├── peid │ │ ├── pepack │ │ ├── pypackerdetect │ │ ├── pypeid │ │ ├── reminder │ │ ├── retdec │ │ ├── userdb.txt │ │ └── userdb_asl.txt │ ├── packers │ │ ├── bep.exe │ │ ├── dotnetz.zip │ │ ├── ebundle.exe │ │ ├── elf_cryptor.py │ │ ├── elfuck │ │ ├── exestealth.exe │ │ ├── fsg.exe │ │ ├── mew.zip │ │ ├── midgetpack │ │ ├── mpress.zip │ │ ├── netshrink.exe │ │ ├── pe-packer.exe │ │ ├── pelock.zip │ │ ├── peshield.zip │ │ ├── rlpack.zip │ │ ├── telock.zip │ │ ├── upx-3.00 │ │ ├── yoda-crypter.zip │ │ └── yoda-protector.zip │ ├── tools │ │ ├── alteration │ │ ├── dataset │ │ ├── detector │ │ ├── executable │ │ ├── experiment │ │ ├── feature │ │ ├── help │ │ ├── model │ │ ├── packer │ │ ├── packing-box │ │ ├── startup │ │ ├── unpacker │ │ └── visualizer │ └── utils │ │ ├── _pbox-compgen │ │ ├── algorithm │ │ ├── bytehist │ │ ├── bytehist_license.txt │ │ ├── bytehist_orig │ │ ├── bytes-after-ep │ │ ├── entfind │ │ ├── filter-archive │ │ ├── find-similar-files │ │ ├── mrsh-v2 │ │ ├── pbox-completions.json │ │ ├── pefeats │ │ └── sdhash ├── lib │ ├── LICENSE │ ├── README.md │ ├── pyproject.toml │ └── src │ │ ├── pbox │ │ ├── VERSION.txt │ │ ├── __conf__.py │ │ ├── __info__.py │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── core │ │ │ ├── __init__.py │ │ │ ├── dataset │ │ │ │ ├── __init__.py │ │ │ │ ├── scoring.py │ │ │ │ └── visualization.py │ │ │ ├── executable │ │ │ │ ├── __init__.py │ │ │ │ ├── alterations.py │ │ │ │ ├── cfg │ │ │ │ │ ├── __common__.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── graph.py │ │ │ │ │ └── node.py │ │ │ │ ├── extractors │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── elf.py │ │ │ │ │ ├── macho.py │ │ │ │ │ └── pe.py │ │ │ │ ├── features.py │ │ │ │ ├── modifiers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── elf.py │ │ │ │ │ ├── macho.py │ │ │ │ │ └── pe.py │ │ │ │ └── parsers │ │ │ │ │ ├── __common__.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── filebytes.py │ │ │ │ │ ├── lief │ │ │ │ │ ├── __common__.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── elf.py │ │ │ │ │ ├── macho.py │ │ │ │ │ └── pe.py │ │ │ │ │ ├── macholibre.py │ │ │ │ │ ├── pefile.py │ │ │ │ │ └── pyelftools.py │ │ │ ├── experiment │ │ │ │ ├── __init__.py │ │ │ │ └── scenario.py │ │ │ ├── items │ │ │ │ ├── __common__.py │ │ │ │ ├── __init__.py │ │ │ │ ├── analyzer.py │ │ │ │ ├── detector.py │ │ │ │ ├── packer.py │ │ │ │ └── unpacker.py │ │ │ ├── model │ │ │ │ ├── __init__.py │ │ │ │ ├── algorithm │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── custom │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── arora.py │ │ │ │ │ │ ├── bintropy.py │ │ │ │ │ │ ├── burgess.py │ │ │ │ │ │ ├── nataraj.py │ │ │ │ │ │ ├── oner.py │ │ │ │ │ │ ├── perdisci.py │ │ │ │ │ │ ├── phad.py │ │ │ │ │ │ ├── reminder.py │ │ │ │ │ │ ├── sun.py │ │ │ │ │ │ └── treadwell.py │ │ │ │ │ └── weka.py │ │ │ │ ├── metrics.py │ │ │ │ └── visualization.py │ │ │ └── pipeline.py │ │ └── helpers │ │ │ ├── __init__.py │ │ │ ├── archive.py │ │ │ ├── args.py │ │ │ ├── commands.py │ │ │ ├── config.py │ │ │ ├── data.py │ │ │ ├── entities.py │ │ │ ├── figure.py │ │ │ ├── files.py │ │ │ ├── formats.py │ │ │ ├── fuzzhash.py │ │ │ ├── items.py │ │ │ ├── libmrsh.so │ │ │ ├── mixins.py │ │ │ ├── rendering.py │ │ │ └── utils.py │ │ └── pboxtools │ │ ├── __init__.py │ │ └── utils.py └── term │ ├── bash_aliases │ ├── bash_colors │ ├── bash_gitprompt │ ├── bash_tools │ ├── bash_update │ ├── bash_xvfb │ ├── bashrc │ ├── profile │ └── pythonrc.py └── tests ├── .bats └── pbox-helpers │ ├── folder.bash │ ├── load.bash │ └── tool-help.bash ├── .init.sh ├── alteration.bats ├── dataset.bats ├── detector.bats ├── executable.bats ├── experiment.bats ├── feature.bats ├── install.sh ├── model.bats ├── packer.bats ├── packing-box.bats ├── samples ├── not-packed │ ├── calc.exe │ └── cmd.exe └── packed │ ├── ASPack │ ├── aspack_calc.exe │ ├── aspack_cmd.exe │ └── aspack_du.exe │ ├── NSPack │ └── nspack_calc.exe │ ├── PECompact │ ├── pecompact_cmd.exe │ └── pecompact_du.exe │ └── UPX │ ├── upx_calc.exe │ ├── upx_cmd.exe │ └── upx_du.exe ├── startup.bats ├── test-packed.exe ├── test.exe ├── unpacker.bats └── visualizer.bats /.gitattributes: -------------------------------------------------------------------------------- 1 | * -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CITATIONS.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/CITATIONS.bib -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/README.md -------------------------------------------------------------------------------- /docs/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/PR_TEMPLATE_CONSOLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/PR_TEMPLATE_CONSOLE.md -------------------------------------------------------------------------------- /docs/PR_TEMPLATE_PACKER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/PR_TEMPLATE_PACKER.md -------------------------------------------------------------------------------- /docs/PR_TEMPLATE_TOOL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/PR_TEMPLATE_TOOL.md -------------------------------------------------------------------------------- /docs/material/bheu22-packingbox.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/material/bheu22-packingbox.pdf -------------------------------------------------------------------------------- /docs/material/bheu23-packingbox.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/material/bheu23-packingbox.pdf -------------------------------------------------------------------------------- /docs/material/bheu24-packingbox.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/material/bheu24-packingbox.pdf -------------------------------------------------------------------------------- /docs/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/mkdocs.yml -------------------------------------------------------------------------------- /docs/pages/assets/bheu22-presentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/pages/assets/bheu22-presentation.pdf -------------------------------------------------------------------------------- /docs/pages/assets/stylesheets/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/pages/assets/stylesheets/extra.css -------------------------------------------------------------------------------- /docs/pages/cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/pages/cases.md -------------------------------------------------------------------------------- /docs/pages/imgs/7z_upx_7z.png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/pages/imgs/7z_upx_7z.png.png -------------------------------------------------------------------------------- /docs/pages/imgs/automated-packing-process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/pages/imgs/automated-packing-process.png -------------------------------------------------------------------------------- /docs/pages/imgs/calc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/pages/imgs/calc.png -------------------------------------------------------------------------------- /docs/pages/imgs/data-visualization-features.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/pages/imgs/data-visualization-features.png -------------------------------------------------------------------------------- /docs/pages/imgs/data-visualization-psexec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/pages/imgs/data-visualization-psexec.png -------------------------------------------------------------------------------- /docs/pages/imgs/dataset-operations-make.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/pages/imgs/dataset-operations-make.png -------------------------------------------------------------------------------- /docs/pages/imgs/dataset-operations-merge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/pages/imgs/dataset-operations-merge.png -------------------------------------------------------------------------------- /docs/pages/imgs/dataset-operations-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/pages/imgs/dataset-operations-select.png -------------------------------------------------------------------------------- /docs/pages/imgs/dataset-operations-update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/pages/imgs/dataset-operations-update.png -------------------------------------------------------------------------------- /docs/pages/imgs/detector-wrapper-script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/pages/imgs/detector-wrapper-script.png -------------------------------------------------------------------------------- /docs/pages/imgs/get-help-packers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/pages/imgs/get-help-packers.png -------------------------------------------------------------------------------- /docs/pages/imgs/get-help-upx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/pages/imgs/get-help-upx.png -------------------------------------------------------------------------------- /docs/pages/imgs/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/pages/imgs/icon.png -------------------------------------------------------------------------------- /docs/pages/imgs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/pages/imgs/logo.png -------------------------------------------------------------------------------- /docs/pages/imgs/machine-learning-pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/pages/imgs/machine-learning-pipeline.png -------------------------------------------------------------------------------- /docs/pages/imgs/model-operations-compare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/pages/imgs/model-operations-compare.png -------------------------------------------------------------------------------- /docs/pages/imgs/model-operations-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/pages/imgs/model-operations-test.png -------------------------------------------------------------------------------- /docs/pages/imgs/model-operations-train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/pages/imgs/model-operations-train.png -------------------------------------------------------------------------------- /docs/pages/imgs/packing-box-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/pages/imgs/packing-box-architecture.png -------------------------------------------------------------------------------- /docs/pages/imgs/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/pages/imgs/screenshot.png -------------------------------------------------------------------------------- /docs/pages/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/pages/index.md -------------------------------------------------------------------------------- /docs/pages/internals/entities/datasets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/pages/internals/entities/datasets.md -------------------------------------------------------------------------------- /docs/pages/internals/entities/executables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/pages/internals/entities/executables.md -------------------------------------------------------------------------------- /docs/pages/internals/entities/experiments.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/pages/internals/entities/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/pages/internals/entities/index.md -------------------------------------------------------------------------------- /docs/pages/internals/entities/models.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/pages/internals/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/pages/internals/index.md -------------------------------------------------------------------------------- /docs/pages/internals/items/analyzers.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/pages/internals/items/detectors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/pages/internals/items/detectors.md -------------------------------------------------------------------------------- /docs/pages/internals/items/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/pages/internals/items/index.md -------------------------------------------------------------------------------- /docs/pages/internals/items/packers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/pages/internals/items/packers.md -------------------------------------------------------------------------------- /docs/pages/internals/items/unpackers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/pages/internals/items/unpackers.md -------------------------------------------------------------------------------- /docs/pages/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/pages/quickstart.md -------------------------------------------------------------------------------- /docs/pages/usage/analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/pages/usage/analysis.md -------------------------------------------------------------------------------- /docs/pages/usage/datasets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/pages/usage/datasets.md -------------------------------------------------------------------------------- /docs/pages/usage/detectors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/pages/usage/detectors.md -------------------------------------------------------------------------------- /docs/pages/usage/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/pages/usage/index.md -------------------------------------------------------------------------------- /docs/pages/usage/management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/pages/usage/management.md -------------------------------------------------------------------------------- /docs/pages/usage/packers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/pages/usage/packers.md -------------------------------------------------------------------------------- /docs/pages/usage/training.md: -------------------------------------------------------------------------------- 1 | # Model Training 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /src/conf/algorithms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/conf/algorithms.yml -------------------------------------------------------------------------------- /src/conf/alterations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/conf/alterations.yml -------------------------------------------------------------------------------- /src/conf/analyzers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/conf/analyzers.yml -------------------------------------------------------------------------------- /src/conf/detectors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/conf/detectors.yml -------------------------------------------------------------------------------- /src/conf/features.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/conf/features.yml -------------------------------------------------------------------------------- /src/conf/packers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/conf/packers.yml -------------------------------------------------------------------------------- /src/conf/references.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/conf/references.yml -------------------------------------------------------------------------------- /src/conf/scenarios.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/conf/scenarios.yml -------------------------------------------------------------------------------- /src/conf/unpackers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/conf/unpackers.yml -------------------------------------------------------------------------------- /src/data/elf/common_packer_section_names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/data/elf/common_packer_section_names.txt -------------------------------------------------------------------------------- /src/data/elf/standard_section_names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/data/elf/standard_section_names.txt -------------------------------------------------------------------------------- /src/data/macho/common_packer_section_names.txt: -------------------------------------------------------------------------------- 1 | # TODO 2 | -------------------------------------------------------------------------------- /src/data/macho/standard_section_names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/data/macho/standard_section_names.txt -------------------------------------------------------------------------------- /src/data/pe/common_api_imports.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/data/pe/common_api_imports.txt -------------------------------------------------------------------------------- /src/data/pe/common_dll_imports.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/data/pe/common_dll_imports.json -------------------------------------------------------------------------------- /src/data/pe/common_malicious_apis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/data/pe/common_malicious_apis.txt -------------------------------------------------------------------------------- /src/data/pe/common_packer_section_names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/data/pe/common_packer_section_names.txt -------------------------------------------------------------------------------- /src/data/pe/common_section_permissions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/data/pe/common_section_permissions.json -------------------------------------------------------------------------------- /src/data/pe/dead_code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/data/pe/dead_code.txt -------------------------------------------------------------------------------- /src/data/pe/make-common-api-imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/data/pe/make-common-api-imports.py -------------------------------------------------------------------------------- /src/data/pe/standard_section_names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/data/pe/standard_section_names.txt -------------------------------------------------------------------------------- /src/files/analyzers/f-prot.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/analyzers/f-prot.tar.xz -------------------------------------------------------------------------------- /src/files/analyzers/gettyp.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/analyzers/gettyp.zip -------------------------------------------------------------------------------- /src/files/analyzers/pescan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/analyzers/pescan -------------------------------------------------------------------------------- /src/files/analyzers/trid.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/analyzers/trid.zip -------------------------------------------------------------------------------- /src/files/detectors/binaryobjectscanner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/detectors/binaryobjectscanner -------------------------------------------------------------------------------- /src/files/detectors/binaryobjectscanner.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/detectors/binaryobjectscanner.zip -------------------------------------------------------------------------------- /src/files/detectors/bintropy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/detectors/bintropy -------------------------------------------------------------------------------- /src/files/detectors/die: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/detectors/die -------------------------------------------------------------------------------- /src/files/detectors/manalyze: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/detectors/manalyze -------------------------------------------------------------------------------- /src/files/detectors/peframe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/detectors/peframe -------------------------------------------------------------------------------- /src/files/detectors/peid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/detectors/peid -------------------------------------------------------------------------------- /src/files/detectors/pepack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/detectors/pepack -------------------------------------------------------------------------------- /src/files/detectors/pypackerdetect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/detectors/pypackerdetect -------------------------------------------------------------------------------- /src/files/detectors/pypeid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/detectors/pypeid -------------------------------------------------------------------------------- /src/files/detectors/reminder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/detectors/reminder -------------------------------------------------------------------------------- /src/files/detectors/retdec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/detectors/retdec -------------------------------------------------------------------------------- /src/files/detectors/userdb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/detectors/userdb.txt -------------------------------------------------------------------------------- /src/files/detectors/userdb_asl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/detectors/userdb_asl.txt -------------------------------------------------------------------------------- /src/files/packers/bep.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/packers/bep.exe -------------------------------------------------------------------------------- /src/files/packers/dotnetz.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/packers/dotnetz.zip -------------------------------------------------------------------------------- /src/files/packers/ebundle.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/packers/ebundle.exe -------------------------------------------------------------------------------- /src/files/packers/elf_cryptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/packers/elf_cryptor.py -------------------------------------------------------------------------------- /src/files/packers/elfuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/packers/elfuck -------------------------------------------------------------------------------- /src/files/packers/exestealth.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/packers/exestealth.exe -------------------------------------------------------------------------------- /src/files/packers/fsg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/packers/fsg.exe -------------------------------------------------------------------------------- /src/files/packers/mew.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/packers/mew.zip -------------------------------------------------------------------------------- /src/files/packers/midgetpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/packers/midgetpack -------------------------------------------------------------------------------- /src/files/packers/mpress.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/packers/mpress.zip -------------------------------------------------------------------------------- /src/files/packers/netshrink.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/packers/netshrink.exe -------------------------------------------------------------------------------- /src/files/packers/pe-packer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/packers/pe-packer.exe -------------------------------------------------------------------------------- /src/files/packers/pelock.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/packers/pelock.zip -------------------------------------------------------------------------------- /src/files/packers/peshield.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/packers/peshield.zip -------------------------------------------------------------------------------- /src/files/packers/rlpack.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/packers/rlpack.zip -------------------------------------------------------------------------------- /src/files/packers/telock.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/packers/telock.zip -------------------------------------------------------------------------------- /src/files/packers/upx-3.00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/packers/upx-3.00 -------------------------------------------------------------------------------- /src/files/packers/yoda-crypter.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/packers/yoda-crypter.zip -------------------------------------------------------------------------------- /src/files/packers/yoda-protector.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/packers/yoda-protector.zip -------------------------------------------------------------------------------- /src/files/tools/alteration: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/tools/alteration -------------------------------------------------------------------------------- /src/files/tools/dataset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/tools/dataset -------------------------------------------------------------------------------- /src/files/tools/detector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/tools/detector -------------------------------------------------------------------------------- /src/files/tools/executable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/tools/executable -------------------------------------------------------------------------------- /src/files/tools/experiment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/tools/experiment -------------------------------------------------------------------------------- /src/files/tools/feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/tools/feature -------------------------------------------------------------------------------- /src/files/tools/help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/tools/help -------------------------------------------------------------------------------- /src/files/tools/model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/tools/model -------------------------------------------------------------------------------- /src/files/tools/packer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/tools/packer -------------------------------------------------------------------------------- /src/files/tools/packing-box: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/tools/packing-box -------------------------------------------------------------------------------- /src/files/tools/startup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/tools/startup -------------------------------------------------------------------------------- /src/files/tools/unpacker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/tools/unpacker -------------------------------------------------------------------------------- /src/files/tools/visualizer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/tools/visualizer -------------------------------------------------------------------------------- /src/files/utils/_pbox-compgen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/utils/_pbox-compgen -------------------------------------------------------------------------------- /src/files/utils/algorithm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/utils/algorithm -------------------------------------------------------------------------------- /src/files/utils/bytehist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/utils/bytehist -------------------------------------------------------------------------------- /src/files/utils/bytehist_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/utils/bytehist_license.txt -------------------------------------------------------------------------------- /src/files/utils/bytehist_orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/utils/bytehist_orig -------------------------------------------------------------------------------- /src/files/utils/bytes-after-ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/utils/bytes-after-ep -------------------------------------------------------------------------------- /src/files/utils/entfind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/utils/entfind -------------------------------------------------------------------------------- /src/files/utils/filter-archive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/utils/filter-archive -------------------------------------------------------------------------------- /src/files/utils/find-similar-files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/utils/find-similar-files -------------------------------------------------------------------------------- /src/files/utils/mrsh-v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/utils/mrsh-v2 -------------------------------------------------------------------------------- /src/files/utils/pbox-completions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/utils/pbox-completions.json -------------------------------------------------------------------------------- /src/files/utils/pefeats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/utils/pefeats -------------------------------------------------------------------------------- /src/files/utils/sdhash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/files/utils/sdhash -------------------------------------------------------------------------------- /src/lib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/LICENSE -------------------------------------------------------------------------------- /src/lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/README.md -------------------------------------------------------------------------------- /src/lib/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/pyproject.toml -------------------------------------------------------------------------------- /src/lib/src/pbox/VERSION.txt: -------------------------------------------------------------------------------- 1 | 2.0.1 2 | -------------------------------------------------------------------------------- /src/lib/src/pbox/__conf__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/__conf__.py -------------------------------------------------------------------------------- /src/lib/src/pbox/__info__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/__info__.py -------------------------------------------------------------------------------- /src/lib/src/pbox/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/__init__.py -------------------------------------------------------------------------------- /src/lib/src/pbox/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/constants.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/__init__.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/dataset/__init__.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/dataset/scoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/dataset/scoring.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/dataset/visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/dataset/visualization.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/executable/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/executable/__init__.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/executable/alterations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/executable/alterations.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/executable/cfg/__common__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/executable/cfg/__common__.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/executable/cfg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/executable/cfg/__init__.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/executable/cfg/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/executable/cfg/graph.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/executable/cfg/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/executable/cfg/node.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/executable/extractors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/executable/extractors/__init__.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/executable/extractors/elf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/executable/extractors/elf.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/executable/extractors/macho.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/executable/extractors/macho.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/executable/extractors/pe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/executable/extractors/pe.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/executable/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/executable/features.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/executable/modifiers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/executable/modifiers/__init__.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/executable/modifiers/elf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/executable/modifiers/elf.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/executable/modifiers/macho.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/executable/modifiers/macho.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/executable/modifiers/pe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/executable/modifiers/pe.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/executable/parsers/__common__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/executable/parsers/__common__.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/executable/parsers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/executable/parsers/__init__.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/executable/parsers/filebytes.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/src/pbox/core/executable/parsers/lief/__common__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/executable/parsers/lief/__common__.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/executable/parsers/lief/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/executable/parsers/lief/__init__.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/executable/parsers/lief/elf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/executable/parsers/lief/elf.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/executable/parsers/lief/macho.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/executable/parsers/lief/macho.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/executable/parsers/lief/pe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/executable/parsers/lief/pe.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/executable/parsers/macholibre.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/src/pbox/core/executable/parsers/pefile.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/src/pbox/core/executable/parsers/pyelftools.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/src/pbox/core/experiment/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/experiment/__init__.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/experiment/scenario.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/experiment/scenario.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/items/__common__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/items/__common__.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/items/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/items/__init__.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/items/analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/items/analyzer.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/items/detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/items/detector.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/items/packer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/items/packer.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/items/unpacker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/items/unpacker.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/model/__init__.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/model/algorithm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/model/algorithm/__init__.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/model/algorithm/custom/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/model/algorithm/custom/__init__.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/model/algorithm/custom/arora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/model/algorithm/custom/arora.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/model/algorithm/custom/bintropy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/model/algorithm/custom/bintropy.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/model/algorithm/custom/burgess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/model/algorithm/custom/burgess.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/model/algorithm/custom/nataraj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/model/algorithm/custom/nataraj.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/model/algorithm/custom/oner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/model/algorithm/custom/oner.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/model/algorithm/custom/perdisci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/model/algorithm/custom/perdisci.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/model/algorithm/custom/phad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/model/algorithm/custom/phad.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/model/algorithm/custom/reminder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/model/algorithm/custom/reminder.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/model/algorithm/custom/sun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/model/algorithm/custom/sun.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/model/algorithm/custom/treadwell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/model/algorithm/custom/treadwell.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/model/algorithm/weka.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/model/algorithm/weka.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/model/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/model/metrics.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/model/visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/model/visualization.py -------------------------------------------------------------------------------- /src/lib/src/pbox/core/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/core/pipeline.py -------------------------------------------------------------------------------- /src/lib/src/pbox/helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/helpers/__init__.py -------------------------------------------------------------------------------- /src/lib/src/pbox/helpers/archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/helpers/archive.py -------------------------------------------------------------------------------- /src/lib/src/pbox/helpers/args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/helpers/args.py -------------------------------------------------------------------------------- /src/lib/src/pbox/helpers/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/helpers/commands.py -------------------------------------------------------------------------------- /src/lib/src/pbox/helpers/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/helpers/config.py -------------------------------------------------------------------------------- /src/lib/src/pbox/helpers/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/helpers/data.py -------------------------------------------------------------------------------- /src/lib/src/pbox/helpers/entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/helpers/entities.py -------------------------------------------------------------------------------- /src/lib/src/pbox/helpers/figure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/helpers/figure.py -------------------------------------------------------------------------------- /src/lib/src/pbox/helpers/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/helpers/files.py -------------------------------------------------------------------------------- /src/lib/src/pbox/helpers/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/helpers/formats.py -------------------------------------------------------------------------------- /src/lib/src/pbox/helpers/fuzzhash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/helpers/fuzzhash.py -------------------------------------------------------------------------------- /src/lib/src/pbox/helpers/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/helpers/items.py -------------------------------------------------------------------------------- /src/lib/src/pbox/helpers/libmrsh.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/helpers/libmrsh.so -------------------------------------------------------------------------------- /src/lib/src/pbox/helpers/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/helpers/mixins.py -------------------------------------------------------------------------------- /src/lib/src/pbox/helpers/rendering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/helpers/rendering.py -------------------------------------------------------------------------------- /src/lib/src/pbox/helpers/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pbox/helpers/utils.py -------------------------------------------------------------------------------- /src/lib/src/pboxtools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pboxtools/__init__.py -------------------------------------------------------------------------------- /src/lib/src/pboxtools/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/lib/src/pboxtools/utils.py -------------------------------------------------------------------------------- /src/term/bash_aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/term/bash_aliases -------------------------------------------------------------------------------- /src/term/bash_colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/term/bash_colors -------------------------------------------------------------------------------- /src/term/bash_gitprompt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/term/bash_gitprompt -------------------------------------------------------------------------------- /src/term/bash_tools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/term/bash_tools -------------------------------------------------------------------------------- /src/term/bash_update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/term/bash_update -------------------------------------------------------------------------------- /src/term/bash_xvfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/term/bash_xvfb -------------------------------------------------------------------------------- /src/term/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/term/bashrc -------------------------------------------------------------------------------- /src/term/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/term/profile -------------------------------------------------------------------------------- /src/term/pythonrc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/src/term/pythonrc.py -------------------------------------------------------------------------------- /tests/.bats/pbox-helpers/folder.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/tests/.bats/pbox-helpers/folder.bash -------------------------------------------------------------------------------- /tests/.bats/pbox-helpers/load.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/tests/.bats/pbox-helpers/load.bash -------------------------------------------------------------------------------- /tests/.bats/pbox-helpers/tool-help.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/tests/.bats/pbox-helpers/tool-help.bash -------------------------------------------------------------------------------- /tests/.init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/tests/.init.sh -------------------------------------------------------------------------------- /tests/alteration.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/tests/alteration.bats -------------------------------------------------------------------------------- /tests/dataset.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/tests/dataset.bats -------------------------------------------------------------------------------- /tests/detector.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/tests/detector.bats -------------------------------------------------------------------------------- /tests/executable.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/tests/executable.bats -------------------------------------------------------------------------------- /tests/experiment.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/tests/experiment.bats -------------------------------------------------------------------------------- /tests/feature.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/tests/feature.bats -------------------------------------------------------------------------------- /tests/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/tests/install.sh -------------------------------------------------------------------------------- /tests/model.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/tests/model.bats -------------------------------------------------------------------------------- /tests/packer.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/tests/packer.bats -------------------------------------------------------------------------------- /tests/packing-box.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/tests/packing-box.bats -------------------------------------------------------------------------------- /tests/samples/not-packed/calc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/tests/samples/not-packed/calc.exe -------------------------------------------------------------------------------- /tests/samples/not-packed/cmd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/tests/samples/not-packed/cmd.exe -------------------------------------------------------------------------------- /tests/samples/packed/ASPack/aspack_calc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/tests/samples/packed/ASPack/aspack_calc.exe -------------------------------------------------------------------------------- /tests/samples/packed/ASPack/aspack_cmd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/tests/samples/packed/ASPack/aspack_cmd.exe -------------------------------------------------------------------------------- /tests/samples/packed/ASPack/aspack_du.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/tests/samples/packed/ASPack/aspack_du.exe -------------------------------------------------------------------------------- /tests/samples/packed/NSPack/nspack_calc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/tests/samples/packed/NSPack/nspack_calc.exe -------------------------------------------------------------------------------- /tests/samples/packed/PECompact/pecompact_cmd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/tests/samples/packed/PECompact/pecompact_cmd.exe -------------------------------------------------------------------------------- /tests/samples/packed/PECompact/pecompact_du.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/tests/samples/packed/PECompact/pecompact_du.exe -------------------------------------------------------------------------------- /tests/samples/packed/UPX/upx_calc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/tests/samples/packed/UPX/upx_calc.exe -------------------------------------------------------------------------------- /tests/samples/packed/UPX/upx_cmd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/tests/samples/packed/UPX/upx_cmd.exe -------------------------------------------------------------------------------- /tests/samples/packed/UPX/upx_du.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/tests/samples/packed/UPX/upx_du.exe -------------------------------------------------------------------------------- /tests/startup.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/tests/startup.bats -------------------------------------------------------------------------------- /tests/test-packed.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/tests/test-packed.exe -------------------------------------------------------------------------------- /tests/test.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/tests/test.exe -------------------------------------------------------------------------------- /tests/unpacker.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/tests/unpacker.bats -------------------------------------------------------------------------------- /tests/visualizer.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/packing-box/docker-packing-box/HEAD/tests/visualizer.bats --------------------------------------------------------------------------------