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.144.99.0
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 html) links -dump "${MC_EXT_FILENAME}" 2>/dev/null || \ w3m -dump "${MC_EXT_FILENAME}" 2>/dev/null || \ lynx -dump -force_html "${MC_EXT_FILENAME}" ;; *) ;; esac } do_open_action() { filetype=$1 case "${filetype}" in html) (if [ -n "" -a -n "$DISPLAY" ]; then ( file://"${MC_EXT_CURRENTDIR}"/"${MC_EXT_BASENAME}" &) 1>&2 else elinks "${MC_EXT_FILENAME}" || \ links "${MC_EXT_FILENAME}" || \ lynx -force_html "${MC_EXT_FILENAME}" || \ ${PAGER:-more} "${MC_EXT_FILENAME}" fi) 2>/dev/null ;; *) ;; esac } case "${action}" in view) do_view_action "${filetype}" ;; open) "${MC_XDG_OPEN}" "${MC_EXT_FILENAME}" 2>/dev/null || \ do_open_action "${filetype}" ;; *) ;; esac