fork download
  1. import hashlib
  2. Nonce = "6583620021732105022"
  3. Salt = "2586456158"
  4. Usr = "admin"
  5. Psw = "10203040"
  6. #SHA512(psw+salt)
  7. con1 = Psw +Salt
  8. Hash1 = hashlib.sha512(con1.encode('UTF-8'))
  9. #sha512(Hash1+nonce)
  10. con2 = Hash1.hexdigest()+Nonce
  11. Hash2 = hashlib.sha512(con2.encode('UTF-8'))
  12.  
  13. #Result
  14. Res = "LOGINPSW@"+Usr+":"+Hash2.hexdigest()
  15. print(Res)
Success #stdin #stdout 0.01s 9452KB
stdin
Standard input is empty
stdout
LOGINPSW@admin:758c908e8f764f6acfe222a7df5e6a5aafba6368bffce1633a2c1fa8fe83586aff36527286168303dbe6630cb112ef5bf639d09d510ddae37ae22edd31758bec