Add XposedOrNot analyzer (email breach lookup, no API key required) - #1471
Open
DevaOnBreaches wants to merge 2 commits into
Open
Add XposedOrNot analyzer (email breach lookup, no API key
required)#1471DevaOnBreaches wants to merge 2 commits into
DevaOnBreaches wants to merge 2 commits into
Conversation
required) Two flavors for mail observables backed by the free, keyless XposedOrNot API: XposedOrNot_CheckEmail (fast breach-name list) and XposedOrNot_BreachAnalytics (per-breach dates, records, exposed data classes, password-storage risk, overall risk score, breached-site domains extracted as artifacts). Taxonomies: XON:Breaches (safe/suspicious), XON:Risk, and a malicious-level XON:PlaintextPwd when any breach stored plaintext passwords. Both flavors are TLP- and PAP-gated; an optional API key raises rate limits via the Plus API. Clean results render a not-found panel rather than an error; 429 responses return an actionable message. Includes README, service logo and report templates for both flavors.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR adds an analyzer for XposedOrNot — an open, free data-breach search service. Given a
mailobservable, it reports which known data breaches the address appears in.No API key or registration required. Both flavors work out of the box via the free keyless API (rate limits: 2 req/s, 25/hour per IP; the analyzer returns an actionable error when reached). An optional
keyconfiguration item (from console.xposedornot.com) switches to the commercial Plus API with higher limits.Flavors
XON:Breaches=<count>(safeat 0,suspiciousat 1+).XON:Risk=<label>and amalicious-levelXON:PlaintextPwd=yeswhen any breach stored passwords in plaintext. Breached-site domains are extracted asdomainartifacts for pivoting.Privacy / data egress
Only the observable's email address is sent (TLS) to xposedornot.com. Since an email address is PII, both flavors ship TLP- and PAP-gated (
check_tlp/check_pap, max 2 by default), and this is documented in the analyzer README.Testing
safetaxonomy), invalid input, and TLP-exceeded (refuses before any network call).user+tag@addresses,x-api-keyheader, plaintext-password taxonomy), clean 200-with-empty response. The API key never appears in reports or errors.cortexutils+requestsonly.