-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathwget_ol72_iso.sh
executable file
·54 lines (40 loc) · 2.34 KB
/
wget_ol72_iso.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/bin/sh
#
# Generated onSat May 27 01:48:37 PDT 2017# Start of user configurable variables
#
LANG=C
export LANG
# SSO username and password
read -p 'SSO User Name:' SSO_USERNAME
read -sp 'SSO Password:' SSO_PASSWORD
# Path to wget command
WGET=/usr/bin/wget
# Location of cookie file
COOKIE_FILE=/tmp/$$.cookies
# Log directory and file
LOGDIR=.
LOGFILE=$LOGDIR/wgetlog-`date +%m-%d-%y-%H:%M`.log
# Output directory and file
OUTPUT_DIR=.
#
# End of user configurable variable
#
if [ "$SSO_PASSWORD " = " " ]
then
echo "Please edit script and set SSO_PASSWORD"
exit
fi
# Contact osdc site so that we can get SSO Params for logging in
SSO_RESPONSE=`$WGET --user-agent="Mozilla/5.0" --no-check-certificate https://edelivery.oracle.com/osdc/faces/SearchSoftware 2>&1|grep Location`
# Extract request parameters for SSO
SSO_TOKEN=`echo $SSO_RESPONSE| cut -d '=' -f 2|cut -d ' ' -f 1`
SSO_SERVER=`echo $SSO_RESPONSE| cut -d ' ' -f 2|cut -d '/' -f 1,2,3`
SSO_AUTH_URL=/sso/auth
AUTH_DATA="ssousername=$SSO_USERNAME&password=$SSO_PASSWORD&site2pstoretoken=$SSO_TOKEN"
# The following command to authenticate uses HTTPS. This will work only if the wget in the environment
# where this script will be executed was compiled with OpenSSL. Remove the --secure-protocol option
# if wget was not compiled with OpenSSL
# Depending on the preference, the other options are --secure-protocol= auto|SSLv2|SSLv3|TLSv1
$WGET --user-agent="Mozilla/5.0" --secure-protocol=auto --post-data $AUTH_DATA --save-cookies=$COOKIE_FILE --keep-session-cookies $SSO_SERVER$SSO_AUTH_URL -O sso.out >> $LOGFILE 2>&1
rm -f sso.out
$WGET --user-agent="Mozilla/5.0" --no-check-certificate --load-cookies=$COOKIE_FILE --save-cookies=$COOKIE_FILE --keep-session-cookies "https://edelivery.oracle.com/osdc/download?fileName=V100082-01.iso&token=aUVzK3dBaGt5MENVZ1RQcXJnWitIZyE6OiF1c2VybmFtZT1FUEQtUEhJTElQUEUuTFJYQEdNQUlMLkNPTSZ1c2VySWQ9NzU4MTgyOSZjYWxsZXI9U2VhcmNoU29mdHdhcmUmY291bnRyeUlkPUZSJmVtYWlsQWRkcmVzcz1waGlsaXBwZS5scnhAZ21haWwuY29tJmZpbGVJZD04Mzk3NzcxMyZhcnU9MTk2MDI4NzUmYWdyZWVtZW50SWQ9MzIzOTY2MSZzb2Z0d2FyZUNpZHM9JnBsYXRmb3JtQ2lkcz02MCZwcm9maWxlSW5zdGFuY2VDaWQ9LTk5OTkmZG93bmxvYWRTb3VyY2U9d2dldCZwcm9maWxlSW5zdGFuY2VOYW1lPU9yYWNsZSBMaW51eCA3IDcuMiZwbGF0Zm9ybU5hbWU9eDg2IDY0IGJpdCZtZWRpYUNpZD01MDAyNzYmcmVsZWFzZUNpZD00OTExOTYmaXNSZWxlYXNlU2VhcmNoPXRydWU" -O $OUTPUT_DIR/V100082-01.iso >> $LOGFILE 2>&1