search for: unicodepw_generated

Displaying 3 results from an estimated 3 matches for "unicodepw_generated".

2019 Oct 10
3
user password hash
...nd))' unicodePwd > > This will get you a users password, you just need to run it through the > reverse of what I posted earlier to see the actual users password. Out of curiosity I tried that, and wrote the following little bash script: > PASSWORD="zKY\.Jp4jdiJ\_" > UNICODEPW_GENERATED="$(echo -n "$PASSWORD" | iconv -f UTF-8 -t UTF-16LE | base64 -w 0)" > PASSWORD_DECODED_FROM_UNICODEPW="$(echo -n $UNICODEPW_GENERATED | base64 -d -w 0 | iconv -t UTF-8 -f UTF-16LE)" > > echo "Password: $PASSWORD" > echo "Generated unicodePwd...
2019 Oct 09
3
user password hash
On Tue, Oct 8, 2019 at 8:04 AM Rowland penny via samba <samba at lists.samba.org> wrote: > > On 08/10/2019 12:53, Jonathon Reinhart wrote: > > > > > > On Tue, Oct 8, 2019, 07:45 Rowland penny via samba > > <samba at lists.samba.org <mailto:samba at lists.samba.org>> wrote: > > > > On 08/10/2019 12:27, Elias Pereira via samba wrote:
2019 Oct 10
2
user password hash
...; the reverse of what I posted earlier to see the actual > > users password. > > > > > > Out of curiosity I tried that, and wrote the following > little bash > > > script: > > > > > >> PASSWORD="zKY\.Jp4jdiJ\_" > > >> UNICODEPW_GENERATED="$(echo -n "$PASSWORD" | iconv -f UTF-8 -t > > >> UTF-16LE | base64 -w 0)" > > > > I posted: > > > > UNICODEPW=$(echo -n "\"$PASSWORD\"" | iconv -f UTF-8 -t UTF-16LE | > > base64 -w 0) > > > > Believe...