Software: Apache. PHP/7.3.33 uname -a: Linux web25.us.cloudlogin.co 5.10.237-xeon-hst #1 SMP Mon May 5 15:10:04 UTC 2025 x86_64 uid=233359(alpastrology) gid=888(tty) groups=888(tty),33(tape) Safe-mode: OFF (not secure) /usr/local/python-3.8/lib/python3.8/test/ziptestdata/ drwxr-xr-x |
Viewing file: Select action/file-type: #!/bin/bash INTERPRETER_UNDER_TEST="$1" if [[ ! -x "${INTERPRETER_UNDER_TEST}" ]]; then echo "Interpreter must be the command line argument." exit 4 fi EXECUTABLE="$0" exec "${INTERPRETER_UNDER_TEST}" -E - <<END_OF_PYTHON import os import zipfile namespace = {} filename = os.environ['EXECUTABLE'] print(f'Opening {filename} as a zipfile.') with zipfile.ZipFile(filename, mode='r') as exe_zip: for file_info in exe_zip.infolist(): data = exe_zip.read(file_info) exec(data, namespace, namespace) break # Only use the first file in the archive. print('Favorite number in executable:', namespace["FAVORITE_NUMBER"]) ### Archive contents will be appended after this file. ### END_OF_PYTHON |
:: Command execute :: | |
--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.0101 ]-- |