Linux server2.hpierson.com 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64
Apache
: 162.0.216.123 | : 216.73.216.152
28 Domain
?7.4.33
yvffpqmy
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
libexec /
mc /
ext.d /
[ HOME SHELL ]
Name
Size
Permission
Action
archive.sh
2.97
KB
-rwxr-xr-x
doc.sh
4.89
KB
-rwxr-xr-x
image.sh
1.09
KB
-rwxr-xr-x
misc.sh
1.92
KB
-rwxr-xr-x
package.sh
1.08
KB
-rwxr-xr-x
sound.sh
1.87
KB
-rwxr-xr-x
text.sh
3.09
KB
-rwxr-xr-x
video.sh
967
B
-rwxr-xr-x
web.sh
1.05
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : image.sh
#!/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
Close