dandemers
(Daniel E. Demers)
1
Description
To connect through proxies and pass through functionality. Also to check reporting by looking for mass connections to the specific website you selected.
Source Code
echo "
#REALLY BIG LIST of End Servers/IP Address
(i.e. DHH1-DG2 8.8.8.8)
"
echo "Enter in Location (i.e. DHH1-DG2)"
read answer
answer=$(echo "$answer" | tr '[:lower:]' '[:upper:]')
case "$answer" in
#AGAIN really big List of each location in a case statement
DHH1-DG2) export http_proxy=8.8.8.8
;;
*) echo "You Mistyped. Try Again"
;;
esac
echo "Select Set Website"
echo "1 - AMD"
echo "2 - Nvidia"
echo "3 - Wall Street"
echo "4 - Microsoft"
echo "5 - Ati"
echo "6 - U of U"
read response
case "$response" in
1) wget --delete-after -r www.amd.com
;;
2) wget --delete-after -r www.nvidia.com
;;
3) wget --delete-after -r www.wsj.com
;;
4) wget --delete-after -r www.microsoft.com
;;
5) wget --delete-after -r www.ati.com
;;
6) wget --delete-after -r www.uvu.edu
;;
esac