Skip to content

Commit

Permalink
Switching to parsing out the csrf from the embedded JS; there's only …
Browse files Browse the repository at this point in the history
…1 occurrence of it that way
  • Loading branch information
mintsoft committed Nov 27, 2016
1 parent c5ecf36 commit 23c6404
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doBackup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ username=$2;
password=$3;

csrf=$(curl -Ss --insecure --cookie-jar /tmp/$hostname-cookies.txt https://$hostname/diag_backup.php | sed -n 's/.*name=.__csrf_magic. value="\([^"]*\)".*/\1/p')
csrf2=$(curl -Ss --insecure --location --cookie-jar /tmp/$hostname-cookies.txt --cookie /tmp/$hostname-cookies.txt --data "login=Login&usernamefld=$username&passwordfld=$password&__csrf_magic=$csrf" https://$hostname/diag_backup.php | sed -n 's/.*name=.__csrf_magic. value="\([^"]*\)".*/\1/p' | head -n 1)
csrf2=$(curl -Ss --insecure --location --cookie-jar /tmp/$hostname-cookies.txt --cookie /tmp/$hostname-cookies.txt --data "login=Login&usernamefld=$username&passwordfld=$password&__csrf_magic=$csrf" https://$hostname/diag_backup.php | sed -n 's/.*var csrfMagicToken = "\([^"]*\)".*/\1/p')
curl -Ss --insecure --cookie /tmp/$hostname-cookies.txt --cookie-jar /tmp/$hostname-cookies.txt --data "Submit=download&donotbackuprrd=yes&__csrf_magic=$csrf2" https://$hostname/diag_backup.php > config-router-`date +%Y%m%d%H%M%S`.xml

rm /tmp/$hostname-cookies.txt;

0 comments on commit 23c6404

Please sign in to comment.