email_data 1700353605.0.0 → 1702168032.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/sync-disposable-emails +1 -0
- data/bin/sync-dnsbls +19 -0
- data/data/disposable_domains.txt +1352 -0
- data/data/disposable_domains_with_mx.txt +1766 -1531
- data/data/disposable_domains_without_mx.txt +107797 -106681
- data/data/manual/exceptions.txt +1 -0
- data/data/tlds.txt +0 -1
- data/lib/email_data/version.rb +1 -1
- data/package.json +1 -1
- metadata +6 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9b075ed5cbbed1531b6cf00b104dd4d68b283af64f6d92fcd76d320504c86e1d
|
4
|
+
data.tar.gz: e329675c4d7644d471811435e3a02028e6f7cb5e46f0df64414e1c964cca3e40
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a69e3661e29073a1776708686e79098a30e9ff88dbff0ad429d3536a8e8a1cc85a3055c8cb67581e3e7b3d800f7038409c1a0b4c77264ec5f00db2fb771a62f0
|
7
|
+
data.tar.gz: b66da62ab67d5ac9785f9e874f116eaf200b1754e53e03d8e0c3e77b6ae3576dff911c33eed29cf1667926ac50f63331e6e5c21c3de65e84d7d424931a679655
|
data/bin/sync-disposable-emails
CHANGED
@@ -138,6 +138,7 @@ threads << thread { load_github_url("https://raw.githubusercontent.com/maxmalysh
|
|
138
138
|
threads << thread { load_github_url("https://raw.githubusercontent.com/jespernissen/disposable-maildomain-list/master/disposable-maildomain-list.txt") }
|
139
139
|
threads << thread { load_github_url("https://raw.githubusercontent.com/wesbos/burner-email-providers/master/emails.txt") }
|
140
140
|
threads << thread { load_github_url("https://gist.github.com/fnando/dafe542cac13f831bbf5521a55248116/raw/disposable.txt") }
|
141
|
+
threads << thread { load_github_url("https://raw.githubusercontent.com/bitbar/disposable-email-domains/master/domains.txt") }
|
141
142
|
threads << thread { temp_mail_address }
|
142
143
|
threads << thread { tempmail_io }
|
143
144
|
threads << thread { moakt }
|
data/bin/sync-dnsbls
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
require_relative "helpers"
|
5
|
+
|
6
|
+
dnsbls = []
|
7
|
+
|
8
|
+
puts "=> Loading dnsbls.txt"
|
9
|
+
dnsbls += normalize_list(File.read("#{__dir__}/../data/manual/dnsbls.txt").lines)
|
10
|
+
|
11
|
+
puts "=> Normalize dnsbls (count: #{dnsbls.size})"
|
12
|
+
dnsbls = dnsbls
|
13
|
+
.uniq
|
14
|
+
.map {|dnsbl| dnsbl.downcase.strip }
|
15
|
+
.reject(&:empty?)
|
16
|
+
.uniq
|
17
|
+
|
18
|
+
puts "=> Saving dnsbls (count: #{dnsbls.size})"
|
19
|
+
save_file("dnsbls.txt", normalize_list(dnsbls))
|