Skip to content

Latest commit

 

History

History
81 lines (57 loc) · 1.89 KB

File metadata and controls

81 lines (57 loc) · 1.89 KB

PyPePacker Logo

PyPePacker

Description

This package implements a packer written in python, the packer reduce the size (gzip compression), encrypt data (RC6 encryption) and reduce data entropy (using EntropyEncoding).

Requirements

This package require:

  • python3
  • python3 Standard Library
  • PyPeLoader >= 1.0.0
  • RC6Encryption >= 1.0.1
  • EntropyEncoding >= 0.0.5

Installation

Pip

python3 -m pip install PyPePacker

Git

git clone "https://github.com/mauricelambert/PyPePacker.git"
cd "PyPePacker"
python3 -m pip install .

Wget

wget https://github.com/mauricelambert/PyPePacker/archive/refs/heads/main.zip
unzip main.zip
cd PyPePacker-main
python3 -m pip install .

cURL

curl -O https://github.com/mauricelambert/PyPePacker/archive/refs/heads/main.zip
unzip main.zip
cd PyPePacker-main
python3 -m pip install .

Usages

Command line

PyPePacker              # Using CLI package executable
python3 -m PyPePacker   # Using python module
python3 PyPePacker.pyz  # Using python executable
PyPePacker.exe          # Using python Windows executable

PyPePacker C:\Windows\System32\net1.exe "net user"
PyPePacker C:\Windows\System32\net1.exe "net user" MyKey

./net1_packed.exe

Links

License

Licensed under the GPL, version 3.