Skip to content

Unpackers

The Unpacker class allows to abstract unpackers, based on the Base class and adding a special unpacking method called unpack.

>>> from pbox import Unpacker

Unpacker Class

This class is the base for abstracted tools loaded from the unpackers.yml description file. It holds the registry of all the loaded child classes.

>>> Unpacker.registry
[<pbox.items.unpacker.UPX object at 0x7f313a0faf70>]

Special methods:

  • unpack(executable): for unpacking an input executable
Back to top