Mr.Combet Webshell
Your IP :
172.18.0.175
Server IP :
172.67.223.119
Server :
Linux crmarketing.1092.w795 4.19.0-18-amd64 #1 SMP Debian 4.19.208-1 (2021-09-29) x86_64
Server Software :
Apache/2.4.38 (Debian)
PHP Version :
7.4.33
Add File :
Submit
Add Directory :
Submit
Dir :
~
/
proc
/
self
/
root
/
usr
/
sbin
/
View File Name :
install_packages
#!/bin/sh set -eu n=0 max=2 export DEBIAN_FRONTEND=noninteractive until [ $n -gt $max ]; do set +e ( apt-get update -qq && apt-get install -y --no-install-recommends "$@" ) CODE=$? set -e if [ $CODE -eq 0 ]; then break fi if [ $n -eq $max ]; then exit $CODE fi echo "apt failed, retrying" n=$(($n + 1)) done apt-get clean && rm -rf /var/lib/apt/lists /var/cache/apt/archives