Linux server.thearyasamaj.org 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
Apache
: 103.90.241.146 | : 216.73.216.222
Cant Read [ /etc/named.conf ]
5.6.40
ftpuser@mantra.thearyasamaj.org
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
/
etc /
kernel /
prerm.d /
[ HOME SHELL ]
Name
Size
Permission
Action
kernel_prerm.d_dkms
1.04
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : kernel_prerm.d_dkms
#!/bin/bash # This script is triggered when the kernel (linux-image) package is being # removed. We're passed the version of the kernel being removed. inst_kern=$1 if command -v dkms > /dev/null; then dkms status -k "$inst_kern" 2>/dev/null | while IFS=",:/ " read -r name vers _ arch status; do [ "$status" = "installed" ] || continue echo "dkms: removing: $name $vers ($inst_kern) ($arch)" >&2 # Compromise on using 'unbuild' to remove the module when a # kernel is being removed. The 'remove' command is too # destructive. The 'uninstall' command leaves built files # around that have no other trigger to 'unbuild' them. # (Triggering 'unbuild' on kernel header removal would not be # a good idea because that would also cause the module to be # uninstalled for the kernel, even though only the headers are # being removed.) dkms unbuild -m "$name" -v "$vers" -k "$inst_kern" -a "$arch" done fi rmdir --ignore-fail-on-non-empty \ "/lib/modules/$inst_kern/updates/dkms" \ "/lib/modules/$inst_kern/updates" 2>/dev/null exit 0
Close