Daniel García
2 months ago
No known key found for this signature in database
GPG Key ID: FC8A7D14C3CD543A
1 changed files with
6 additions and
6 deletions
-
src/api/core/mod.rs
|
@ -135,13 +135,13 @@ async fn put_eq_domains(data: Json<EquivDomainData>, headers: Headers, conn: DbC |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
#[get("/hibp/breach?<username>")] |
|
|
#[get("/hibp/breach?<username>")] |
|
|
async fn hibp_breach(username: &str) -> JsonResult { |
|
|
async fn hibp_breach(username: &str, _headers: Headers) -> JsonResult { |
|
|
|
|
|
if let Some(api_key) = crate::CONFIG.hibp_api_key() { |
|
|
let username: String = url::form_urlencoded::byte_serialize(username.as_bytes()).collect(); |
|
|
let username: String = url::form_urlencoded::byte_serialize(username.as_bytes()).collect(); |
|
|
let url = format!( |
|
|
let url = format!( |
|
|
"https://haveibeenpwned.com/api/v3/breachedaccount/{username}?truncateResponse=false&includeUnverified=false" |
|
|
"https://haveibeenpwned.com/api/v3/breachedaccount/{username}?truncateResponse=false&includeUnverified=false" |
|
|
); |
|
|
); |
|
|
|
|
|
|
|
|
if let Some(api_key) = crate::CONFIG.hibp_api_key() { |
|
|
|
|
|
let res = make_http_request(Method::GET, &url)?.header("hibp-api-key", api_key).send().await?; |
|
|
let res = make_http_request(Method::GET, &url)?.header("hibp-api-key", api_key).send().await?; |
|
|
|
|
|
|
|
|
// If we get a 404, return a 404, it means no breached accounts
|
|
|
// If we get a 404, return a 404, it means no breached accounts
|
|
|