https://github.com/the-viper-one/convertto-nt
Uses PowerShell to convert a given string to its NT hash equivalent.
https://github.com/the-viper-one/convertto-nt
ntlm powershell security windows
Last synced: about 2 months ago
JSON representation
Uses PowerShell to convert a given string to its NT hash equivalent.
- Host: GitHub
- URL: https://github.com/the-viper-one/convertto-nt
- Owner: The-Viper-One
- Created: 2024-07-13T07:12:47.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-13T13:29:58.000Z (almost 2 years ago)
- Last Synced: 2025-01-22T10:18:30.203Z (over 1 year ago)
- Topics: ntlm, powershell, security, windows
- Language: PowerShell
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ConvertTo-NT
`ConvertTo-NT` is a PowerShell function that converts a given string into its NT hash equivalent using the NTLM hashing algorithm. This can be particularly useful in security-related tasks where you need to generate or verify NT hashes for passwords.
## Usage
Load `ConvertTo-NT` in memory
```powershell
IEX(New-Object System.Net.WebClient).DownloadString("https://raw.githubusercontent.com/The-Viper-One/ConvertTo-NT/main/ConvertTo-NT.ps1")
```
Convert a string to an NT hash
```powershell
# Example 1
ConvertTo-NT -string "Password123"
# Example 2
"Password123" | ConvertTo-NT
```