Linux r-1tbfree-gecko-e8ip2zsa-2f967-wvg4t 6.12.63-84.121.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Dec 31 02:07:30 UTC 2025 x86_64
PHP/8.5.2 (Development Server)
: | : 10.16.14.243
Cant Read [ /etc/named.conf ]
8.5.2
root
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 /
alternatives /
[ HOME SHELL ]
Name
Size
Permission
Action
README
100
B
-rw-r--r--
awk
166.66
KB
-rwxr-xr-x
c++
1.11
MB
-rwxr-xr-x
c89
428
B
-rwxr-xr-x
c99
454
B
-rwxr-xr-x
cc
1.11
MB
-rwxr-xr-x
cpp
1.11
MB
-rwxr-xr-x
lzcat
102.7
KB
-rwxr-xr-x
lzcmp
7.41
KB
-rwxr-xr-x
lzdiff
7.41
KB
-rwxr-xr-x
lzegrep
10.17
KB
-rwxr-xr-x
lzfgrep
10.17
KB
-rwxr-xr-x
lzgrep
10.17
KB
-rwxr-xr-x
lzless
2.33
KB
-rwxr-xr-x
lzma
102.7
KB
-rwxr-xr-x
lzmore
2.18
KB
-rwxr-xr-x
nawk
166.66
KB
-rwxr-xr-x
pager
58.39
KB
-rwxr-xr-x
rmt
63.19
KB
-rwxr-xr-x
unlzma
102.7
KB
-rwxr-xr-x
which
1.05
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : lzless
#!/bin/sh # SPDX-License-Identifier: GPL-2.0-or-later # Copyright (C) 1998, 2002, 2006, 2007 Free Software Foundation # The original version for gzip was written by Paul Eggert. # Modified for XZ Utils by Andrew Dudman and Lasse Collin. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. #SET_PATH - This line is a placeholder to ease patching this script. # Instead of unsetting XZ_OPT, just make sure that xz will use file format # autodetection. This way memory usage limit and thread limit can be # specified via XZ_OPT. xz='xz --format=auto' version='xzless (XZ Utils) 5.8.1' usage="Usage: ${0##*/} [OPTION]... [FILE]... Like 'less', but operate on the uncompressed contents of xz compressed FILEs. Options are the same as for 'less'. Report bugs to <xz@tukaani.org>." case $1 in --help) printf '%s\n' "$usage" || exit 2; exit;; --version) printf '%s\n' "$version" || exit 2; exit;; esac if test "${LESSMETACHARS+set}" != set; then # Work around a bug in less 394 and earlier; # it mishandles the metacharacters '$%=~'. space=' ' tab=' ' nl=' ' LESSMETACHARS="$space$tab$nl'"';*?"()<>[|&^`#\$%=~' fi VER=$(less -V | { read _ ver _ && echo ${ver%%.*}; }) if test "$VER" -ge 451; then # less 451 or later: If the compressed file is valid but has # zero bytes of uncompressed data, using two vertical bars ||- makes # "less" check the exit status of xz and if it is zero then display # an empty file. With a single vertical bar |- and no output from xz, # "less" would attempt to display the raw input file instead. LESSOPEN="||-$xz -cdfqQ -- %s" elif test "$VER" -ge 429; then # less 429 or later: LESSOPEN pipe will be used on # standard input if $LESSOPEN begins with |-. LESSOPEN="|-$xz -cdfqQ -- %s" else LESSOPEN="|$xz -cdfqQ -- %s" fi SHOW_PREPROC_ERRORS= if test "$VER" -ge 632; then SHOW_PREPROC_ERRORS=--show-preproc-errors fi export LESSMETACHARS LESSOPEN exec less $SHOW_PREPROC_ERRORS "$@"
Close