diff --git a/Changelog.md b/Changelog.md index 3c1d5c8..529a54a 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,8 +1,7 @@ # keepass2-haveibeenpwned Changelog -### v1.3.2-alpha.1+hibpv3 - 2019-08-24 -* Upgrade to HIBP v3 Api and add support for api-keys (password of entry with title hibp-apikey) - Not tested as registration of API-Keys https://haveibeenpwned.com/api/key is momentarily disabled. +### v1.3.2 - 2019-09-07 +* Upgrade to HIBP v3 Api and add support for api-keys (password of entry with title hibp-apikey). Thanks to Jakob Ledermann. ### v1.3.1 - 2019-02-01 * Allow cancelling a running breach check. diff --git a/HaveIBeenPwned.plgx b/HaveIBeenPwned.plgx index f5856fb..b730190 100644 Binary files a/HaveIBeenPwned.plgx and b/HaveIBeenPwned.plgx differ diff --git a/HaveIBeenPwned/HaveIBeenPwned.csproj b/HaveIBeenPwned/HaveIBeenPwned.csproj index 00e9434..2710fb4 100644 --- a/HaveIBeenPwned/HaveIBeenPwned.csproj +++ b/HaveIBeenPwned/HaveIBeenPwned.csproj @@ -54,8 +54,8 @@ MinimumRecommendedRules.ruleset - - $(USERPROFILE)\Dropbox\KeePass\KeePass.exe + + C:\Program Files (x86)\KeePass Password Safe 2\KeePass.exe False False diff --git a/HaveIBeenPwned/Properties/AssemblyInfo.cs b/HaveIBeenPwned/Properties/AssemblyInfo.cs index 1ebe9f5..d3536c0 100644 --- a/HaveIBeenPwned/Properties/AssemblyInfo.cs +++ b/HaveIBeenPwned/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.3.1.0")] -[assembly: AssemblyFileVersion("1.3.1.0")] +[assembly: AssemblyVersion("1.3.2.0")] +[assembly: AssemblyFileVersion("1.3.2.0")] diff --git a/LICENSE b/LICENSE index 683f2fc..8ae2be5 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2017 Andrew Schofield +Copyright (c) 2017-2019 Andrew Schofield Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index bd309b6..629bc5d 100644 --- a/README.md +++ b/README.md @@ -10,14 +10,14 @@ Mono users may find they need to install their distro equivalent of `mono-comple ## Currently Supported Breach Lists ### Site/Domain based -* [Have I Been Pwned (HIBP)](https://haveibeenpwned.com/) - Checks the domains of any entries against the Have I Been Pwned? list curated by Troy Hunt +* [Have I Been Pwned (HIBP)](https://haveibeenpwned.com/) - Checks the domains of any entries against the Have I Been Pwned? list curated by Troy Hunt. * [Cloudbleed vulnerability list](https://github.com/pirate/sites-using-cloudflare) - Checks the domains of any entries that appear in the Cloudbleed vulnerability list. This has potential to produce false positives due to the way this list was produced. ### Username based -* [Have I Been Pwned (HIBP)](https://haveibeenpwned.com/) - Checks the usernames of any entries against the Have I Been Pwned? list curated by Troy Hunt +* [Have I Been Pwned (HIBP)](https://haveibeenpwned.com/) - Checks the usernames of any entries against the Have I Been Pwned? list curated by Troy Hunt. ### Password based -* [Have I Been Pwned (HIBP)](https://haveibeenpwned.com/) - Checks the passwords of any entries against the Have I Been Pwned? list curated by Troy Hunt +* [Have I Been Pwned (HIBP)](https://haveibeenpwned.com/) - Checks the passwords of any entries against the Have I Been Pwned? list curated by Troy Hunt. This service requires you to register for an API key via https://haveibeenpwned.com/API/Key **This checker sends a small portion of the password hash to HIBP and then checks the full hash locally against the list of hashes returned by HIBP. This service does not send your password, nor enough of the hash to expose your password to HIBP.** @@ -49,4 +49,6 @@ keepass2-haveibeenpwned is developed entirely in my own time. If you wish to sup * **Andrew Schofield** * **Matt Schneeberger** -* **strayge** \ No newline at end of file +* **strayge** +* **SlightlyMadGargoyle** +* **Jakob Ledermann** \ No newline at end of file diff --git a/VERSION b/VERSION index 20870fc..91b27fa 100644 --- a/VERSION +++ b/VERSION @@ -1,3 +1,3 @@ : -HaveIBeenPwned checker:1.3.2-alpha.1+hibpv3 +HaveIBeenPwned checker:1.3.2 : \ No newline at end of file diff --git a/mono/HaveIBeenPwned.dll b/mono/HaveIBeenPwned.dll index 6058fda..c002ae9 100644 Binary files a/mono/HaveIBeenPwned.dll and b/mono/HaveIBeenPwned.dll differ