PwnedPassCheck.psd1
@{ RootModule = 'PwnedPassCheck.psm1' ModuleVersion = '3.0.0' GUID = 'f33d7d9c-2dc0-4bd4-a80a-557bc46bfe8c' Author = 'Ryan Bolger' Copyright = '(c) 2019 Ryan Bolger. All rights reserved.' Description = 'Check passwords and hashes against the haveibeenpwned.com Pwned Passwords API. Also supports third party equivalent APIs.' PowerShellVersion = '3.0' FunctionsToExport = @( 'Get-NTLMHash' 'Get-PwnedHash' 'Get-PwnedHashBytes' 'Get-PwnedPassword' 'Get-SHA1Hash' 'Test-PwnedHash' 'Test-PwnedHashBytes' 'Test-PwnedPassword' ) CmdletsToExport = @() VariablesToExport = @() AliasesToExport = @() PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. Tags = 'Security','HIBP','HaveIBeenPwned','InfoSec','PSEdition_Desktop','PSEdition_Core','Linux','Mac' # A URL to the license for this module. LicenseUri = 'https://github.com/rmbolger/PwnedPassCheck/blob/main/LICENSE' # A URL to the main website for this project. ProjectUri = 'https://github.com/rmbolger/PwnedPassCheck' # ReleaseNotes of this module ReleaseNotes = @' ## 3.0.0 (2023-02-14) * Slightly better error handling. ### Breaking Changes * Added support for the `mode=ntlm` querystring parameter which is automatically added to HTTP based queries that are using an NTLM hash. It you need to disable this functionality, use the `-NoModeQueryString` switch. '@ } # End of PSData hashtable } # End of PrivateData hashtable } |