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-power-suspend-linux
#!/bin/sh alarm_not_supported() { echo org.freedesktop.Hal.Device.SystemPowerManagement.AlarmNotSupported >&2 echo Waking the system up is not supported >&2 exit 1 } unsupported() { echo org.freedesktop.Hal.Device.SystemPowerManagement.NotSupported >&2 echo No suspend method found >&2 exit 1 } read seconds_to_sleep # Make a suitable command line argument so that the tools can do the correct # quirks for video resume. # Passing the quirks to the tool allows the tool to not depend on HAL for data. QUIRKS="" [ "$HAL_PROP_POWER_MANAGEMENT_QUIRK_S3_BIOS" = "true" ] && QUIRKS="$QUIRKS --quirk-s3-bios" [ "$HAL_PROP_POWER_MANAGEMENT_QUIRK_S3_MODE" = "true" ] && QUIRKS="$QUIRKS --quirk-s3-mode" [ "$HAL_PROP_POWER_MANAGEMENT_QUIRK_DPMS_SUSPEND" = "true" ] && QUIRKS="$QUIRKS --quirk-dpms-suspend" [ "$HAL_PROP_POWER_MANAGEMENT_QUIRK_DPMS_ON" = "true" ] && QUIRKS="$QUIRKS --quirk-dpms-on" [ "$HAL_PROP_POWER_MANAGEMENT_QUIRK_VBESTATE_RESTORE" = "true" ] && QUIRKS="$QUIRKS --quirk-vbestate-restore" [ "$HAL_PROP_POWER_MANAGEMENT_QUIRK_VBEMODE_RESTORE" = "true" ] && QUIRKS="$QUIRKS --quirk-vbemode-restore" [ "$HAL_PROP_POWER_MANAGEMENT_QUIRK_VGA_MODE_3" = "true" ] && QUIRKS="$QUIRKS --quirk-vga-mode3" [ "$HAL_PROP_POWER_MANAGEMENT_QUIRK_VBE_POST" = "true" ] && QUIRKS="$QUIRKS --quirk-vbe-post" [ "$HAL_PROP_POWER_MANAGEMENT_QUIRK_RADEON_OFF" = "true" ] && QUIRKS="$QUIRKS --quirk-radeon-off" [ "$HAL_PROP_POWER_MANAGEMENT_QUIRK_RESET_BRIGHTNESS" = "true" ] && QUIRKS="$QUIRKS --quirk-reset-brightness" [ "$HAL_PROP_POWER_MANAGEMENT_QUIRK_SAVE_PCI" = "true" ] && QUIRKS="$QUIRKS --quirk-save-pci" [ "$HAL_PROP_POWER_MANAGEMENT_QUIRK_NONE" = "true" ] && QUIRKS="$QUIRKS --quirk-none" # We only support pm-utils if [ -x "/usr/sbin/pm-suspend" ] ; then export NUM_SECONDS_TO_SLEEP=$seconds_to_sleep /usr/sbin/pm-suspend $QUIRKS RET=$? else # TODO: add support unsupported fi # Refresh devices as a resume can do funny things for type in button battery ac_adapter do devices=`hal-find-by-capability --capability $type` for device in $devices do dbus-send --system --print-reply --dest=org.freedesktop.Hal \ $device org.freedesktop.Hal.Device.Rescan done done exit $RET
Close