Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.41
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
lib /
python3.10 /
test /
ziptestdata /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-sr-x
2025-06-04 09:23
README.md
1008
B
-rw-r--r--
2025-06-04 09:23
exe_with_z64
978
B
-rwxr-xr-x
2025-06-04 09:23
exe_with_zip
990
B
-rwxr-xr-x
2025-06-04 09:23
header.sh
713
B
-rwxr-xr-x
2025-06-04 09:23
testdata_module_inside_zip.py
69
B
-rw-r--r--
2025-06-04 09:23
Save
Rename
#!/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