A PHP Library built for ';--have i been pwned?
- This uses only API v2.
- PHP 7 or higher.
Open your composer.json file and add the following to the require key:
"ridvanbaluyos/haveibeenpwned": "v0.1"
After adding the key, run composer update from the command line to install the package
composer installor
composer update<?php
error_reporting(E_ALL);
// namespace and autoloaders
use \Ridvanbaluyos\Pwned\BreachedAccount as BreachedAccount;
require_once __DIR__ . '/vendor/autoload.php';
$breachedAccount = new BreachedAccount();
$result = $breachedAccount->setAccount('[email protected]')->get();<?php
use \Ridvanbaluyos\Pwned\BreachedAccount as BreachedAccount;
$breachedAccount = new BreachedAccount();
$result = $breachedAccount->setAccount('[email protected]')
->setIncludeUnverified()
->setDomain('tumblr.com')
->get();<?php
use \Ridvanbaluyos\Pwned\Breaches as Breaches;
$breachedSites = new Breaches();
$result = $breachedSites->setDomain('adobe.com')->get();<?php
use \Ridvanbaluyos\Pwned\DataClasses as DataClasses;
$dataClasses = new DataClasses();
$result = $dataClasses->get();<?php
use \Ridvanbaluyos\Pwned\PasteAccount as PasteAccount;
$pasteAccount = new PasteAccount();
$result = $pasteAccount->setAccount('[email protected]')->get();Note: Please be careful when using this. Do not send any password you actively use to a third-party service - even this one!
<?php
use Ridvanbaluyos\Pwned\PwnedPasswords as PwnedPasswords;
$pwnedPasswords = new PwnedPasswords();
$result = $pwnedPasswords->setPassword('password123')->get();
