Linux server.kiran-academy.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
: 194.233.91.196 | : 216.73.216.216
Cant Read [ /etc/named.conf ]
7.4.32
finalho
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
local /
cwpsrv /
var /
services /
roundcube /
bin /
[ HOME SHELL ]
Name
Size
Permission
Action
cleandb.sh
1.29
KB
-rwxr-xr-x
cssshrink.sh
1.65
KB
-rwxr-xr-x
decrypt.sh
2.67
KB
-rwxr-xr-x
deluser.sh
4.89
KB
-rwxr-xr-x
dumpschema.sh
2.96
KB
-rwxr-xr-x
gc.sh
1.62
KB
-rwxr-xr-x
indexcontacts.sh
1.3
KB
-rwxr-xr-x
initdb.sh
1.63
KB
-rwxr-xr-x
installto.sh
6.33
KB
-rwxr-xr-x
jsshrink.sh
2.06
KB
-rwxr-xr-x
makedoc.sh
537
B
-rwxr-xr-x
moduserprefs.sh
2.25
KB
-rwxr-xr-x
msgexport.sh
4.26
KB
-rwxr-xr-x
msgimport.sh
3.55
KB
-rwxr-xr-x
update.sh
11.94
KB
-rwxr-xr-x
updatecss.sh
3.66
KB
-rwxr-xr-x
updatedb.sh
1.7
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : cssshrink.sh
#!/bin/sh PWD=`dirname "$0"` JAR_DIR='/tmp' VERSION='2.4.8' COMPILER_URL="https://github.com/yui/yuicompressor/releases/download/v${VERSION}/yuicompressor-${VERSION}.zip" do_shrink() { rm -f "$2" java -jar $JAR_DIR/yuicompressor.jar -v -o "$2" "$1" } if [ ! -w "$JAR_DIR" ]; then JAR_DIR=$PWD fi if java -version >/dev/null 2>&1; then : else echo "Java not found. Please ensure that the 'java' program is in your PATH." exit 1 fi if [ ! -r "$JAR_DIR/yuicompressor.jar" ]; then if which wget >/dev/null 2>&1 && which unzip >/dev/null 2>&1; then wget "$COMPILER_URL" -O "/tmp/$$.zip" elif which curl >/dev/null 2>&1 && which unzip >/dev/null 2>&1; then curl -L "$COMPILER_URL" -o "/tmp/$$.zip" else echo "Please download $COMPILER_URL and extract compiler.jar to $JAR_DIR/." exit 1 fi (cd $JAR_DIR && unzip "/tmp/$$.zip" && mv "yuicompressor-${VERSION}.jar" "yuicompressor.jar") rm -f "/tmp/$$.zip" fi # compress single file from argument if [ $# -gt 0 ]; then CSS_FILE="$1" echo "Shrinking $CSS_FILE" minfile=`echo $CSS_FILE | sed -e 's/\.css$/\.min\.css/'` do_shrink "$CSS_FILE" "$minfile" exit fi DIRS="$PWD/../skins/* $PWD/../plugins/* $PWD/../plugins/*/skins/*" # default: compress application scripts for dir in $DIRS; do for file in $dir/*.css; do echo "$file" | grep -e '.min.css$' >/dev/null if [ $? -eq 0 ]; then continue fi if [ ! -f "$file" ]; then continue fi echo "Shrinking $file" minfile=`echo $file | sed -e 's/\.css$/\.min\.css/'` do_shrink "$file" "$minfile" done done
Close