Skip to content

Latest commit

 

History

History
51 lines (34 loc) · 1.09 KB

README.md

File metadata and controls

51 lines (34 loc) · 1.09 KB

manus-sandbox-code-decrypted

Decrypted Manus Sandbox Code

What is done?

Unpack Pyarmor v9

Follow instructions from Pyarmor-Tooling:

  • Use IDA to find the key for Pyarmor 009055
  • Decrypt the py code to marshal file

Additional steps:

  • Rebuild marshal file
  • Remove all dark piles inserted by Pyarmor

Decompile PYC (partial done)

Running pre-compiled version

Clone project

git clone https://github.com/vonjackustc/manus-sandbox-code-decrypted
cd manus-sandbox-code-decrypted

Prepare virtual environment

python3.11 -m virtualenv venv
source venv/bin/activate
pip install -r requirements.txt

Patch dotenv

sed -e 's/usecwd: bool = False/usecwd: bool = True/g' venv/lib/python3.11/site-packages/dotenv/main.py > venv/lib/python3.11/site-packages/dotenv/main.py

Start server

cd sandbox-runtime-compiled
PYTHONPATH=. python start_server.pyc