Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add domains from onetime-mail.com #471

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

e-nomem
Copy link

@e-nomem e-nomem commented Apr 2, 2024

I generated an email address for the one-ml.com domain using the website at https://www.onetime-mail.com. All the domains in this list have MX records pointing back at themselves, but they all have the same IPv4 address of 203.152.198.135.

This list can be verified with the following script:

#!/usr/bin/env bash
set -euo pipefail

PR="471"
PROVIDER="onetime-mail.com"
A_RECORDS=("203.152.198.135")

while read -r line; do
    echo "Checking $line"
    mx="$(dig +short MX "$line" | cut -d' ' -f2-)"
    a="$(dig +short A "${mx[@]}")"
    grep_args=()
    for search_record in "${A_RECORDS[@]}"; do
        grep_args+=('-e' "^${search_record//./\.}$")
    done
    grep -q "${grep_args[@]}" <<< "$a" || echo "$line is not part of $PROVIDER (MX: $(paste -s -d' ' - <<< "${mx:-missing}"))"
done < <(curl -fsSL -o- https://github.com/disposable-email-domains/disposable-email-domains/pull/$PR.diff | grep '^+[^+]' | cut -d'+' -f2-)

Closes #386

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

New disposable domain
1 participant