Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.145.197.164
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
libexec /
mc /
ext.d /
Delete
Unzip
Name
Size
Permission
Date
Action
archive.sh
2.97
KB
-rwxr-xr-x
2016-11-05 23:18
doc.sh
4.89
KB
-rwxr-xr-x
2016-11-05 23:18
image.sh
1.09
KB
-rwxr-xr-x
2016-11-05 23:18
misc.sh
1.92
KB
-rwxr-xr-x
2016-11-05 23:18
package.sh
1.08
KB
-rwxr-xr-x
2016-11-05 23:18
sound.sh
1.87
KB
-rwxr-xr-x
2016-11-05 23:18
text.sh
3.09
KB
-rwxr-xr-x
2016-11-05 23:18
video.sh
967
B
-rwxr-xr-x
2016-11-05 23:18
web.sh
1.05
KB
-rwxr-xr-x
2016-11-05 23:18
Save
Rename
#!/bin/sh # $1 - action # $2 - type of file action=$1 filetype=$2 [ -n "${MC_XDG_OPEN}" ] || MC_XDG_OPEN="xdg-open" do_view_action() { filetype=$1 case "${filetype}" in trpm) rpm -qivl --scripts `basename "${MC_EXT_BASENAME}" .trpm` ;; src.rpm|rpm) if rpm --nosignature --version >/dev/null 2>&1; then RPM="rpm --nosignature" else RPM="rpm" fi $RPM -qivlp --scripts "${MC_EXT_FILENAME}" ;; deb) dpkg-deb -I "${MC_EXT_FILENAME}" && echo && dpkg-deb -c "${MC_EXT_FILENAME}" ;; debd) dpkg -s `echo "${MC_EXT_BASENAME}" | sed 's/\([0-9a-z.-]*\).*/\1/'` ;; deba) apt-cache show `echo "${MC_EXT_BASENAME}" | sed 's/\([0-9a-z.-]*\).*/\1/'` ;; *) ;; esac } do_open_action() { filetype=$1 case "${filetype}" in *) ;; esac } case "${action}" in view) do_view_action "${filetype}" ;; open) "${MC_XDG_OPEN}" "${MC_EXT_FILENAME}" 2>/dev/null || \ do_open_action "${filetype}" ;; *) ;; esac