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 /
[ HOME SHELL ]
Name
Size
Permission
Action
platform
[ DIR ]
drwxr-xr-x
redhat
[ DIR ]
drwxr-xr-x
brp-compress
1.43
KB
-rwxr-xr-x
brp-java-gcjcompile
1.37
KB
-rwxr-xr-x
brp-python-bytecompile
2.96
KB
-rwxr-xr-x
brp-strip
487
B
-rwxr-xr-x
brp-strip-comment-note
696
B
-rwxr-xr-x
brp-strip-shared
684
B
-rwxr-xr-x
brp-strip-static-archive
389
B
-rwxr-xr-x
check-buildroot
1.2
KB
-rwxr-xr-x
check-files
663
B
-rwxr-xr-x
check-prereqs
418
B
-rwxr-xr-x
check-rpaths
1.01
KB
-rwxr-xr-x
check-rpaths-worker
4.93
KB
-rwxr-xr-x
config.guess
43.89
KB
-rwxr-xr-x
config.sub
33.62
KB
-rwxr-xr-x
debugedit
37.37
KB
-rwxr-xr-x
desktop-file.prov
437
B
-rwxr-xr-x
find-debuginfo.sh
9.14
KB
-rwxr-xr-x
find-lang.sh
5.49
KB
-rwxr-xr-x
find-provides
1.52
KB
-rwxr-xr-x
find-requires
3.42
KB
-rwxr-xr-x
fontconfig.prov
489
B
-rwxr-xr-x
javadeps
26.52
KB
-rwxr-xr-x
libtooldeps.sh
707
B
-rwxr-xr-x
macros
42.43
KB
-rw-r--r--
macros.perl
596
B
-rw-r--r--
macros.php
313
B
-rw-r--r--
macros.python
906
B
-rw-r--r--
mkinstalldirs
3.41
KB
-rwxr-xr-x
mono-find-provides
1.08
KB
-rwxr-xr-x
mono-find-requires
1.87
KB
-rwxr-xr-x
ocaml-find-provides.sh
1.84
KB
-rwxr-xr-x
ocaml-find-requires.sh
2.3
KB
-rwxr-xr-x
osgideps.pl
10.34
KB
-rwxr-xr-x
perl.prov
5.64
KB
-rwxr-xr-x
perl.req
7.79
KB
-rwxr-xr-x
perldeps.pl
32.13
KB
-rw-r--r--
pkgconfigdeps.sh
1.14
KB
-rwxr-xr-x
pythondeps.sh
875
B
-rwxr-xr-x
rpm.daily
284
B
-rw-r--r--
rpm.log
61
B
-rw-r--r--
rpm.xinetd
319
B
-rw-r--r--
rpm2cpio.sh
1.23
KB
-rwxr-xr-x
rpmdb_archive
11.8
KB
-rwxr-xr-x
rpmdb_deadlock
14.16
KB
-rwxr-xr-x
rpmdb_dump
15.8
KB
-rwxr-xr-x
rpmdb_load
26.78
KB
-rwxr-xr-x
rpmdb_loadcvt
1.43
KB
-rwxr-xr-x
rpmdb_printlog
69.6
KB
-rwxr-xr-x
rpmdb_recover
13.48
KB
-rwxr-xr-x
rpmdb_stat
14.5
KB
-rwxr-xr-x
rpmdb_upgrade
12.31
KB
-rwxr-xr-x
rpmdb_verify
12.9
KB
-rwxr-xr-x
rpmdeps
17.9
KB
-rwxr-xr-x
rpmdiff
23.42
KB
-rwxr-xr-x
rpmdiff.cgi
15.31
KB
-rw-r--r--
rpmpopt-4.8.0
7.73
KB
-rw-r--r--
rpmrc
13.38
KB
-rw-r--r--
tcl.req
2.02
KB
-rwxr-xr-x
tgpg
907
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : perl.req
#!/usr/bin/perl # RPM (and its source code) is covered under two separate licenses. # The entire code base may be distributed under the terms of the GNU # General Public License (GPL), which appears immediately below. # Alternatively, all of the source code in the lib subdirectory of the # RPM source code distribution as well as any code derived from that # code may instead be distributed under the GNU Library General Public # License (LGPL), at the choice of the distributor. The complete text # of the LGPL appears at the bottom of this file. # This alternatively is allowed to enable applications to be linked # against the RPM library (commonly called librpm) without forcing # such applications to be distributed under the GPL. # Any questions regarding the licensing of RPM should be addressed to # Erik Troan <ewt@redhat.com>. # a simple makedepend like script for perl. # To save development time I do not parse the perl grammmar but # instead just lex it looking for what I want. I take special care to # ignore comments and pod's. # It would be much better if perl could tell us the dependencies of a # given script. # The filenames to scan are either passed on the command line or if # that is empty they are passed via stdin. # If there are strings in the file which match the pattern # m/^\s*\$RPM_Requires\s*=\s*["'](.*)['"]/i # then these are treated as additional names which are required by the # file and are printed as well. # I plan to rewrite this in C so that perl is not required by RPM at # build time. # by Ken Estes Mail.com kestes@staff.mail.com if ("@ARGV") { foreach (@ARGV) { process_file($_); } } else { # notice we are passed a list of filenames NOT as common in unix the # contents of the file. foreach (<>) { process_file($_); } } foreach $module (sort keys %require) { if (length($require{$module}) == 0) { print "perl($module)\n"; } else { # I am not using rpm3.0 so I do not want spaces around my # operators. Also I will need to change the processing of the # $RPM_* variable when I upgrade. print "perl($module) >= $require{$module}\n"; } } exit 0; sub process_file { my ($file) = @_; chomp $file; open(FILE, "<$file") || return; while (<FILE>) { # skip the "= <<" block if ( ( m/^\s*\$(?:.*)\s*=\s*<<\s*(["'`])(.*)\1/) || ( m/^\s*\$(.*)\s*=\s*<<(\w*)\s*;/) ) { $tag = $2; while (<FILE>) { chomp; ( $_ eq $tag ) && last; } $_ = <FILE>; } # skip q{} quoted sections - just hope we don't have curly brackets # within the quote, nor an escaped hash mark that isn't a comment # marker, such as occurs right here. Draw the line somewhere. if ( m/^.*\Wq[qxwr]?\s*([\{\(\[#|\/])[^})\]#|\/]*$/ && ! m/^\s*(require|use)\s/ ) { $tag = $1; $tag =~ tr/{\(\[\#|\//})]#|\//; $tag = quotemeta($tag); while (<FILE>) { ( $_ =~ m/$tag/ ) && last; } } # skip the documentation # we should not need to have item in this if statement (it # properly belongs in the over/back section) but people do not # read the perldoc. if ( (m/^=(head[1-4]|pod|item)/) .. (m/^=(cut)/) ) { next; } if ( (m/^=(over)/) .. (m/^=(back)/) ) { next; } # skip the data section if (m/^__(DATA|END)__$/) { last; } # Each keyword can appear multiple times. Don't # bother with datastructures to store these strings, # if we need to print it print it now. # # Again allow for "our". if ( m/^\s*(our\s+)?\$RPM_Requires\s*=\s*["'](.*)['"]/i) { foreach $_ (split(/\s+/, $2)) { print "$_\n"; } } # # The (require|use) match further down in this subroutine will match lines # within a multi-line print statement. So, let's skip over such print # statements whose content should not be loading modules anyway. -BEF- # if (m/print(?:\s+|\s+\S+\s+)\<\<\s*(["'`])(.+?)\1/ || m/print(\s+|\s+\S+\s+)\<\<(\w+)/) { my $tag = $2; while (<FILE>) { chomp; ( $_ eq $tag ) && last; } $_ = <FILE>; } # Skip multiline print and assign statements if ( m/\$\S+\s*=\s*(")([^"\\]|(\\.))*$/ || m/\$\S+\s*=\s*(')([^'\\]|(\\.))*$/ || m/print\s+(")([^"\\]|(\\.))*$/ || m/print\s+(')([^'\\]|(\\.))*$/ ) { my $quote = $1; while (<FILE>) { m/^([^\\$quote]|(\\.))*$quote/ && last; } $_ = <FILE>; } if ( # ouch could be in a eval, perhaps we do not want these since we catch # an exception they must not be required # eval { require Term::ReadLine } or die $@; # eval "require Term::Rendezvous;" or die $@; # eval { require Carp } if defined $^S; # If error/warning during compilation, (m/^(\s*) # we hope the inclusion starts the line (require|use)\s+(?!\{) # do not want 'do {' loops # quotes around name are always legal [\'\"]?([^\;\ \'\"\t]*)[\'\"]?[\t\;\ ] # the syntax for 'use' allows version requirements \s*([.0-9]*) /x) ) { my ($whitespace, $statement, $module, $version) = ($1, $2, $3,$4); # we only consider require statements that are flush against # the left edge. any other require statements give too many # false positives, as they are usually inside of an if statement # as a fallback module or a rarely used option ($whitespace ne "" && $statement eq "require") && next; # if there is some interpolation of variables just skip this # dependency, we do not want # do "$ENV{LOGDIR}/$rcfile"; ($module =~ m/\$/) && next; # skip if the phrase was "use of" -- shows up in gimp-perl, et al. next if $module eq 'of'; # if the module ends in a comma we probaly caught some # documentation of the form 'check stuff,\n do stuff, clean # stuff.' there are several of these in the perl distribution ($module =~ m/[,>]$/) && next; # if the module name starts in a dot it is not a module name. # Is this necessary? Please give me an example if you turn this # back on. # ($module =~ m/^\./) && next; # if the module ends with .pm strip it to leave only basename. # starts with /, which means its an absolute path to a file if ($module =~ m(^/)) { print "$module\n"; next; } # sometimes people do use POSIX qw(foo), or use POSIX(qw(foo)) etc. # we can strip qw.*$, as well as (.*$: $module =~ s/qw.*$//; $module =~ s/\(.*$//; $module =~ s/\.pm$//; # some perl programmers write 'require URI/URL;' when # they mean 'require URI::URL;' $module =~ s/\//::/; # trim off trailing parentheses if any. Sometimes people pass # the module an empty list. $module =~ s/\(\s*\)$//; if ( $module =~ m/^v?([0-9._]+)$/ ) { # if module is a number then both require and use interpret that # to mean that a particular version of perl is specified my $ver=$1; if ($ver =~ /5.00/) { print "perl >= 0:$ver\n"; next; } else { print "perl >= 1:$ver\n"; next; } }; # ph files do not use the package name inside the file. # perlmodlib documentation says: # the .ph files made by h2ph will probably end up as # extension modules made by h2xs. # so do not expend much effort on these. # there is no easy way to find out if a file named systeminfo.ph # will be included with the name sys/systeminfo.ph so only use the # basename of *.ph files ($module =~ m/\.ph$/) && next; $require{$module}=$version; $line{$module}=$_; } } close(FILE) || die("$0: Could not close file: '$file' : $!\n"); return ; }
Close