Linux 00830bc4dc40 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64
Apache/2.4
: 172.19.0.7 | : 216.73.217.74
Cant Read [ /etc/named.conf ]
7.4.33
flexusfire
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
/
etc /
alternatives /
[ HOME SHELL ]
Name
Size
Permission
Action
README
100
B
-rw-r--r--
aclocal
35.62
KB
-rwxr-xr-x
animate
14.15
KB
-rwxr-xr-x
animate-im6
14.15
KB
-rwxr-xr-x
automake
251.9
KB
-rwxr-xr-x
awk
158.74
KB
-rwxr-xr-x
c++
1.1
MB
-rwxr-xr-x
c89
428
B
-rwxr-xr-x
c99
454
B
-rwxr-xr-x
cc
1.1
MB
-rwxr-xr-x
compare
14.15
KB
-rwxr-xr-x
compare-im6
14.15
KB
-rwxr-xr-x
composite
14.15
KB
-rwxr-xr-x
composite-im6
14.15
KB
-rwxr-xr-x
conjure
14.15
KB
-rwxr-xr-x
conjure-im6
14.15
KB
-rwxr-xr-x
convert
14.15
KB
-rwxr-xr-x
convert-im6
14.15
KB
-rwxr-xr-x
cpp
1.1
MB
-rwxr-xr-x
display
14.15
KB
-rwxr-xr-x
display-im6
14.15
KB
-rwxr-xr-x
fakeroot
3.76
KB
-rwxr-xr-x
identify
14.15
KB
-rwxr-xr-x
identify-im6
14.15
KB
-rwxr-xr-x
import
14.15
KB
-rwxr-xr-x
import-im6
14.15
KB
-rwxr-xr-x
java
14.19
KB
-rwxr-xr-x
java.1.gz
24.87
KB
-rw-r--r--
jexec
14.18
KB
-rwxr-xr-x
jexec-binfmt
63
B
-rw-r--r--
jjs
14.23
KB
-rwxr-xr-x
jjs.1.gz
2.34
KB
-rw-r--r--
keytool
14.2
KB
-rwxr-xr-x
keytool.1.gz
21.66
KB
-rw-r--r--
lzcat
78.5
KB
-rwxr-xr-x
lzcmp
6.48
KB
-rwxr-xr-x
lzdiff
6.48
KB
-rwxr-xr-x
lzegrep
5.76
KB
-rwxr-xr-x
lzfgrep
5.76
KB
-rwxr-xr-x
lzgrep
5.76
KB
-rwxr-xr-x
lzless
1.76
KB
-rwxr-xr-x
lzma
78.5
KB
-rwxr-xr-x
lzmore
2.11
KB
-rwxr-xr-x
mogrify
14.15
KB
-rwxr-xr-x
mogrify-im6
14.15
KB
-rwxr-xr-x
montage
14.15
KB
-rwxr-xr-x
montage-im6
14.15
KB
-rwxr-xr-x
my.cnf
839
B
-rw-r--r--
nawk
158.74
KB
-rwxr-xr-x
nc
42.64
KB
-rwxr-xr-x
netcat
42.64
KB
-rwxr-xr-x
nodejs
115.88
MB
-rwxr-xr-x
pack200
14.2
KB
-rwxr-xr-x
pack200.1.gz
4.22
KB
-rw-r--r--
pager
175.84
KB
-rwxr-xr-x
pinentry
66.64
KB
-rwxr-xr-x
rcp
114.3
KB
-rwxr-xr-x
rlogin
774.95
KB
-rwxr-xr-x
rmid
14.2
KB
-rwxr-xr-x
rmid.1.gz
4.82
KB
-rw-r--r--
rmiregistry
14.21
KB
-rwxr-xr-x
rmiregistry.1.gz
1.75
KB
-rw-r--r--
rmt
58.55
KB
-rwxr-xr-x
rsh
774.95
KB
-rwxr-xr-x
stream
14.15
KB
-rwxr-xr-x
stream-im6
14.15
KB
-rwxr-xr-x
unlzma
78.5
KB
-rwxr-xr-x
unpack200
113.02
KB
-rwxr-xr-x
unpack200.1.gz
2.11
KB
-rw-r--r--
w
22.23
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : lzless
#!/bin/sh # 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.2.4' 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 <lasse.collin@tukaani.org>." case $1 in --help) echo "$usage" || exit 2; exit;; --version) echo "$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 if test "$(less -V | { read less ver re && echo ${ver}; })" -ge 429; then # less 429 or later: LESSOPEN pipe will be used on # standard input if $LESSOPEN begins with |-. LESSOPEN="|-$xz -cdfq -- %s" else LESSOPEN="|$xz -cdfq -- %s" fi export LESSMETACHARS LESSOPEN exec less "$@"
Close