Skip to main content

An interface to Troy Hunt's 'Have I Been Pwned' public API

Project description

pyHIBP (pyHave I Been Pwned)

image image image

A Python interface to Troy Hunt's 'Have I Been Pwned?' (HIBP) public API. A full reference to the API specification can be found at the HIBP API Reference.

This module detects when the rate limit of the API has been hit, and raises a RuntimeError when the limit is exceeded, or when another API-defined error condition is encountered based on the submitted data. When data is found from a call, the data returned will be in the format as retrieved from the endpoint, documented in the return-type information for the relevant function.

Note that the pwnedpasswords API backend does not have a rate limit. If you are intending to bulk-query passwords or hashes, you should consider downloading the raw data files accessible via the Pwned Passwords page.

Installing

$ pip install pyhibp

Example usage

For an interactive example, check out the Jupyter Notebook for pyhibp, as well as pyhibp.pwnedpasswords.

import pyhibp
from pyhibp import pwnedpasswords as pw

# Required: A descriptive user agent must be set describing the application consuming
#   the HIBP API
pyhibp.set_user_agent(ua="Awesome application/0.0.1 (An awesome description)")

# Check a password to see if it has been disclosed in a public breach corpus
resp = pw.is_password_breached(password="secret")
if resp:
    print("Password breached!")
    print("This password was used {0} time(s) before.".format(resp))

# Get data classes in the HIBP system
resp = pyhibp.get_data_classes()

# Get all breach information
resp = pyhibp.get_all_breaches()

# Get a single breach
resp = pyhibp.get_single_breach(breach_name="Adobe")

# An API key is required for calls which search by email address
#   (so get_pastes/get_account_breaches)
# See <https://haveibeenpwned.com/API/Key>
HIBP_API_KEY = None

if HIBP_API_KEY:
    # Set the API key prior to using the functions which require it.
    pyhibp.set_api_key(key=HIBP_API_KEY)

    # Get pastes affecting a given email address
    resp = pyhibp.get_pastes(email_address="test@example.com")

    # Get breaches that affect a given account
    resp = pyhibp.get_account_breaches(account="test@example.com", truncate_response=True)

Developing

In order to ensure we have a consistent and repeatable development environment we use a virtual environment, namely pipenv. To develop or test, execute the following:

# Install the prerequisite virtual environment provider
$ pip install pipenv
# Initialize the pipenv environment and install the module within it
$ make dev
# To run PEP8, tests, and check the manifest
$ make tox

Other commands can be found in the Makefile.

Goals

  • Synchronize to the latest HIBP API(s), implementing endpoint accessing functions where it makes sense. For instance, in the interest of security, the ability to submit a SHA-1 to the Pwned Passwords endpoint is not implemented. See "Regarding password checking" below for further details.
  • For breaches and pastes, act as an intermediary; return the JSON as received from the service.

Regarding password checking

  • For passwords, the option to supply a plaintext password to check is provided as an implementation convenience.
  • For added security, pwnedpasswords.is_password_breached() only transmits the first five characters of the SHA-1 hash to the Pwned Passwords API endpoint; a secure password will remain secure without disclosing the full hash.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyhibp-4.2.0.tar.gz (32.1 kB view details)

Uploaded Source

Built Distribution

pyhibp-4.2.0-py3-none-any.whl (20.8 kB view details)

Uploaded Python 3

File details

Details for the file pyhibp-4.2.0.tar.gz.

File metadata

  • Download URL: pyhibp-4.2.0.tar.gz
  • Upload date:
  • Size: 32.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for pyhibp-4.2.0.tar.gz
Algorithm Hash digest
SHA256 825c383e0ac43ac3438dad82e5ddb45773754fbb1b5c3b8ac56669483f2c67ed
MD5 2c0da2745ead41eaab81111409bbb480
BLAKE2b-256 3a4a2bebc8a6f3230b0b0c39aae4cd05eed23cdb9ccf5914e08277f443a66c4a

See more details on using hashes here.

File details

Details for the file pyhibp-4.2.0-py3-none-any.whl.

File metadata

  • Download URL: pyhibp-4.2.0-py3-none-any.whl
  • Upload date:
  • Size: 20.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for pyhibp-4.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 4fd8096eef5d840f5144fbfe66a07a5b984c12e4cf4936caea879106f18222ec
MD5 def3b0f1ef0770228e2023e322e74bef
BLAKE2b-256 fe4d581e025f8011c6f9f7beb06ad57fc9cfc7dcb994b37514551d0f412d2948

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page