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 jpeg) identify "${MC_EXT_FILENAME}"; test -x /usr/bin/exif && echo && exif "${MC_EXT_FILENAME}" 2>/dev/null ;; xpm) sxpm "${MC_EXT_FILENAME}" ;; *) identify "${MC_EXT_FILENAME}" ;; esac } do_open_action() { filetype=$1 case "${filetype}" in xbm) bitmap "${MC_EXT_FILENAME}" ;; xcf) (gimp "${MC_EXT_FILENAME}" &) ;; svg) (inkscape "${MC_EXT_FILENAME}" &) ;; *) if [ -n "$DISPLAY" ]; then (gqview "${MC_EXT_FILENAME}" &) elif see >/dev/null 2>&1; then (see "${MC_EXT_FILENAME}" &) else zgv "${MC_EXT_FILENAME}" fi ;; esac } case "${action}" in view) do_view_action "${filetype}" ;; open) "${MC_XDG_OPEN}" "${MC_EXT_FILENAME}" 2>/dev/null || \ do_open_action "${filetype}" ;; *) ;; esac