Tag: Hash

  • SQL Server Login password hash

    In this article we will look at how SQL Server stores passwords and how we can go about working them out. As a developer/administrator you are probably accessing SQL Server via a windows login, however the other option is when the instance is changed into mixed mode allowing SQL Logins. These logins are created within…

  • Get-StringHash and Get-FileHash

    Hashing Here are two of my powershell scripts that provide a quick and easy way to hash either a string or a file using any of the cryptography hash algorithms. Get-StringHash Usage Examples: Get-StringHash “My String to hash” “MD5” Get-StringHash “My String to hash” “RIPEMD160” Get-StringHash “My String to hash” “SHA1” Get-StringHash “My String to hash” “SHA256”…