|
|
|
|
|
by j_lagof
5996 days ago
|
|
I agree. What I said is that I do something similar to it, not exactly the same.. I have a little shell script that I run: ./pass-site.sh http://facebook.com "
#!/bin/sh SITE=$1
stty -echo
read UPASS
stty echo
PASS=`sha1 "$SITE $UPASS"`
echo "PASS: $PASS"
" |
|