Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/detroitenglish/pw-pwnage-cfworker
Deploy a Cloudflare Worker to sanely score users' new passwords with zxcvbn AND check for matches against haveibeenpwned's 10+ billion breached accounts
https://github.com/detroitenglish/pw-pwnage-cfworker
cloudflare cloudflare-workers haveibeenpwned passwords security serverless zxcvbn
Last synced: 6 days ago
JSON representation
Deploy a Cloudflare Worker to sanely score users' new passwords with zxcvbn AND check for matches against haveibeenpwned's 10+ billion breached accounts
- Host: GitHub
- URL: https://github.com/detroitenglish/pw-pwnage-cfworker
- Owner: detroitenglish
- License: mit
- Created: 2018-07-29T19:47:43.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-07-05T03:54:14.000Z (over 2 years ago)
- Last Synced: 2024-08-01T16:34:31.851Z (3 months ago)
- Topics: cloudflare, cloudflare-workers, haveibeenpwned, passwords, security, serverless, zxcvbn
- Language: JavaScript
- Homepage: https://pw-pwnage-protection.glitch.me/
- Size: 822 KB
- Stars: 153
- Watchers: 8
- Forks: 13
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
- Changelog: CHANGELOG.MD
- License: LICENSE
Awesome Lists containing this project
- awesome-cloudflare - Pwnage Protection - Secure password scoring and user pwnage protection api - [Usage](https://community.cloudflare.com/t/estimate-strength-of-users-new-password-input-with-zxcvbn-and-query-haveibeenpwned-for-matches-against-known-hacked-accounts/26378). (Workers / Recipes)
- awesome-cloudflare - Pwnage Protection - Secure password scoring and user pwnage protection api - [Usage](https://community.cloudflare.com/t/estimate-strength-of-users-new-password-input-with-zxcvbn-and-query-haveibeenpwned-for-matches-against-known-hacked-accounts/26378). (Workers / Recipes)
README
# Enlist a Cloudflare Worker as your Secure Password Scoring and Pwnage Protection API
(Prefer traditional serverless sorcery? [See the AWS Lambda version here](https://github.com/detroitenglish/haveibeenpwned-zxcvbn-lambda-api))
Deploy a private, secure and serverless RESTful endpoint for sanely scoring users' new passwords using Dropbox's [`zxcvbn`](https://github.com/dropbox/zxcvbn) library while (k-)anonymously querying Troy Hunt's [`haveibeenpwned`](https://haveibeenpwned.com/) collection of +10 _billion_ breached accounts.
![API in Action](.github/pwnage.gif?raw=true 'API in Action')
_Example: handling results with [VuetifyJS](https://github.com/vuetifyjs/vuetify)_
## Motivation
People seemed to think this concept was neat, and a tiny RESTful API like this is a perfect use case for [**Cloudflare Workers**](https://developers.cloudflare.com/workers/).
As a bonus, [over 90%](https://twitter.com/troyhunt/status/1011871596603060225) of `pwnedpassword` queries are already cached on Cloudflare's edge, making response times _spooky_ fast 👻
---
## Quick Start
1. Rename `example.cloudflare.env` to `cloudflare.env` and edit the configuration as needed.
2. Install deps with `npm install`
3. Launch 🚀 with `npm run deploy`### Configuration
The following options are configurable via `cloudflare.env`:
- `ROUTE_PATTERN`: Optionally include a route-matching pattern for your worker. See [`example.cloudflare.env`](./example.cloudflare.env) for details on how patterns are parsed and applied (default: `undefined`)
- `ALLOWED_ORIGIN`: Whitelisted origin for Cross Origin Resource Sharing. If not provided, all origins are allowed (default: `*`)
- `ALLOWED_ORIGIN_PATTERNS`: Comma-seperated list of strings to be converted to `RegExp` patterns for testing the incoming request origin. If the origin matches, it's returned as allowed. If no pattern is matched, CORS falls back to the configured `ALLOWED_ORIGIN` (default: `undefined`)
- Example: `"(foo|bar|buzz)\.example\.lol,yet\.another\.example\.omg"`
- `CORS_MAXAGE`: Value in seconds for the `Access-Control-Max-Age` CORS header (default: `"300"`)
- `ALWAYS_RETURN_SCORE`: Return the `zxcvbn` score even if the `pwnedpasswords` match value is > 0. See [Response](#Response) for details (default: `undefined`, thereby `false`)
- `CUSTOM_PW_DICT`: Comma-seperated list of words/phrases to be included in the `zxcvbn` strength estimation dictionary. It's a good idea to include e.g. your company or application name here (default: `''`)
- `RETURN_PW_METADATA`: Return the full result of the `zxcvbn` strength estimation as a `metadata` response key. Refer to the [zxcvbn documentation](https://github.com/dropbox/zxcvbn#usage) for details on what that includes (default: `undefined`, thereby `false`)
### Updating
Update configuration à la changes to `cloudflare.env` by re-running `npm run deploy`.
**NOTE**: For reasons unknown, the Cloudflare Dash may continue to show older scripts after a successful upload. Check the `x-worker-last-modified` response header to verify that your latest script is up and running.
### Request
POST user password input to your route as JSON with field `password` like so:
```javascript
// pwned password
{
"password": "monkey123"
}
``````javascript
// stronger password
{
"password": "wonderful waffles"
}
```### Response
Our little worker-bro will reply with an appropriate status code, and JSON body with `ok` indicating successful scoring and range search, a strength estimation `score` of 0 through 4 per `zxcvbn`, and `pwned` matches, indicating the number times the input appears in the `haveibeenpwned` database.
```javascript
// pwned password 'monkey123'
{
"ok": true,
"score": 0,
"pwned": 56491
}
``````javascript
// stronger password 'wonderful waffles'
{
"ok": true,
"score": 3,
"pwned": 0
}
```By default, if `pwned` is greater than 0, then `score` will **always** be 0. You can override this behavior by settings `"ALWAYS_RETURN_SCORE"` to `true` in `cloudflare.env`
If `RETURN_PW_METADATA` is truthy, responses will also include a `metadata` key with the complete `zxcvbn` [strength estimation result object](https://github.com/dropbox/zxcvbn#usage).
Each response will also contain a `x-worker-last-modified` header with a timestamp indicating when the script was built and deployed.
#### Errors
Failure will return JSON to inform you that something's not `ok` and a `message` as to why.
```json
{
"ok": false,
"message": "It went kaput 💩"
}
```### Good to Know
Send a `GET` request to act as a little health-check. Response `204` means you're good to go. Useful for testing CORS configuration 👍
## Because Software
### Disclaimer
I am not affiliated with Cloudflare, Troy Hunt, Dropbox, haveibeenpwned, good software development in general, or any combination thereof.
Handling user passwords is no laughing matter, so handle them with care and respect.
Just like your own users, assume that I have no idea what I'm doing. This part is important, because I have no idea what I'm doing.
**REVIEW THE SOURCE**, and use at your own risk 🙈
### License
MIT