Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.31
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
lib /
firmware /
carl9170fw /
[ HOME SHELL ]
Name
Size
Permission
Action
carlfw
[ DIR ]
drwxr-xr-x
config
[ DIR ]
drwxr-xr-x
extra
[ DIR ]
drwxr-xr-x
include
[ DIR ]
drwxr-xr-x
minifw
[ DIR ]
drwxr-xr-x
toolchain
[ DIR ]
drwxr-xr-x
tools
[ DIR ]
drwxr-xr-x
CMakeLists.txt
416
B
-rw-r--r--
COPYRIGHT
922
B
-rw-r--r--
GPL
17.57
KB
-rw-r--r--
Kconfig
115
B
-rw-r--r--
README
882
B
-rw-r--r--
autogen.sh
659
B
-rwxr-xr-x
genapi.sh
390
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : autogen.sh
#!/bin/bash set -e case "$1" in config) echo "Configuring..." pushd config cmake . make popd config/conf Kconfig cmake . ;; compile) echo "Compile time..." make ;; install) if [ ! -e .config ]; then exit 1 fi . ./.config make echo -n "Installing firmware..." if [ "$CONFIG_CARL9170FW_BUILD_TOOLS" = "y" ] && [ "$CONFIG_CARL9170FW_BUILD_MINIBOOT" = "y" ]; then echo -n "Apply miniboot..." tools/src/miniboot a carlfw/carl9170.fw minifw/miniboot.fw fi install -m 644 carlfw/carl9170.fw \ ../carl9170-$CONFIG_CARL9170FW_RELEASE_VERSION.fw echo "done." ;; *) $0 config $0 compile ;; esac
Close