Skip to content

Commit 8d97e64

Browse files
committed
Merge branch 'master' of [email protected]:ardentperf/racattack.git
2 parents 2d59869 + dda9867 commit 8d97e64

File tree

1 file changed

+89
-0
lines changed

1 file changed

+89
-0
lines changed

makeDVD/auto.sh

+89
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
#!/bin/bash
2+
#
3+
# Copyright 2010 Jeremy Schneider
4+
#
5+
# This file is part of RAC-ATTACK
6+
#
7+
# RAC-ATTACK is free software: you can redistribute it and/or modify
8+
# it under the terms of the GNU General Public License as published by
9+
# the Free Software Foundation, either version 3 of the License, or
10+
# (at your option) any later version.
11+
#
12+
# RAC-ATTACK is distributed in the hope that it will be useful,
13+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
14+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
# GNU General Public License for more details.
16+
#
17+
# You should have received a copy of the GNU General Public License
18+
# along with RAC-ATTACK If not, see <http://www.gnu.org/licenses/>.
19+
#
20+
#
21+
22+
DOWNLOADS=(
23+
'http://download.oracle.com/otn_software/asmlib/oracleasmlib-2.0.4-1.el5.i386.rpm'
24+
'http://download.oracle.com/otn/linux/oracle11g/R2/linux_11gR2_database_1of2.zip'
25+
'http://download.oracle.com/otn/linux/oracle11g/R2/linux_11gR2_database_2of2.zip'
26+
'http://download.oracle.com/otn/linux/oracle11g/R2/linux_11gR2_grid.zip'
27+
)
28+
29+
[ -n "$DEBUG" ] && set -x
30+
[ -z "$1" ] && { echo "Usage: auto.sh <dest-path>" && exit 1; }
31+
32+
function getFormFields {
33+
perl <<EOF
34+
use HTML::Parser ();
35+
sub handle_start {
36+
return if shift ne "input"; my \$attr=shift;
37+
return if \$attr->{name} eq "ssousername";
38+
return if \$attr->{name} eq "password";
39+
print \$attr->{name}."=".\$attr->{value}."&";
40+
}
41+
my \$p=HTML::Parser->new(api_version=>3,start_h=>[\&handle_start,"tagname,attr"]);
42+
\$p->attr_encoded(true); \$p->parse_file("$1") || die \$!;
43+
print "ignorenonsense=nothing\n";
44+
EOF
45+
}
46+
47+
48+
mkdir -p $1
49+
50+
cd $(dirname $0)
51+
cp -v oracle-profile $1/
52+
tar cvf $1/fix_cssd.tar root
53+
54+
read -p "Oracle SSO Username: " ORACLE_USERNAME
55+
stty -echo
56+
read -p "Oracle SSO Password: " ORACLE_PASSWORD; echo
57+
stty echo
58+
59+
# login to oracle website first
60+
echo "LOGGING IN TO ORACLE SSO"
61+
curl --location-trusted -c /tmp/cookies -A "Mozilla/5.0" http://www.oracle.com/webapps/redirect/signon >/tmp/formfields
62+
getFormFields /tmp/formfields >/tmp/formx
63+
curl -vd @/tmp/formx -d ssousername="$ORACLE_USERNAME" -d password="$ORACLE_PASSWORD" --location-trusted -b /tmp/cookies -c /tmp/cookies -A "Mozilla/5.0" https://login.oracle.com/oam/server/sso/auth_cred_submit >/tmp/form_login_debug 2>&1
64+
65+
# download files from list
66+
cd $1
67+
for URL in "${DOWNLOADS[@]}"; do
68+
FILE="$(basename $URL)"
69+
echo "DOWNLOADING: /tmp/$FILE"
70+
if [ ! -f /tmp/$FILE ]; then
71+
curl --location-trusted -b /tmp/cookies -c /tmp/cookies -A "Mozilla/5.0" -o /tmp/$FILE "$URL"
72+
fi
73+
if [ $(echo $FILE|awk -F. '{print$NF}') == zip ]; then
74+
unzip /tmp/$FILE
75+
rm -v /tmp/$FILE
76+
else
77+
mv -v /tmp/$FILE .
78+
fi
79+
done
80+
81+
if [ ! -n "$DEBUG" ]; then
82+
rm -v /tmp/cookies
83+
rm -v /tmp/formx
84+
rm -v /tmp/formfields
85+
rm -v /tmp/form_login_debug
86+
fi
87+
88+
echo "FINISHED BUILDING RAC ATTACK DVD"
89+

0 commit comments

Comments
 (0)