summaryrefslogtreecommitdiffstats
path: root/skripti/spremeni_geslo_ul.sh
blob: 533bba55ca5d8988909b1b709c0c0d7aef2c7041 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash
set -xe
echo vpiši trenutno geslo
read s
echo vpiši novo geslo
read n
p=`rev <<<$0 | cut -d/ -f1 | rev`
umask 0077
t=`mktemp -p "" $p.XXX`
trap "rm $t" EXIT
r=`curl --cookie $t --cookie-jar $t https://id.uni-lj.si/DigitalnaIdentiteta/SpremembaGesla | grep RequestVerificationToken | tail -n1 | cut -d\" -f6`
curl --cookie $t --cookie-jar $t 'https://id.uni-lj.si/DigitalnaIdentiteta/SpremembaGesla' -X POST --data-raw "Form.Username=$1&Form.Password=$s&Form.NewPassword=$n&Form.NewPasswordConfirmation=$n&__RequestVerificationToken=$r" | grep "Uspešno ste spremenili"