sql2008r2 hash
#1
New here and am needing to just determine the password for one user login. moving from 2008r2 to 2019. we have some custom apps that connect to the sql server with this user and we don't have the source to the custom apps. we are trying to create the user login on the new sql server but needed to have to same password.

i am using the following command line:
hashcat.exe -a 3 -m 132 --outfile-format=2 -o "c:\tmp\testpwd.txt" -1 ?d "c:\tmp\testhash.txt" ?1?1?1?1?1?1?1?1?1?1?1?1?1?1?1?1

but it says it will take 234 days to complete. 
Any advise/help would be appreciated.
Reply
#2
determined the hash:

select name, password_hash
from sys.sql_logins
Reply