email_data 1700958398.0.0 → 1702772829.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 +1268 -0
- data/data/disposable_domains_with_mx.txt +1805 -1560
- data/data/disposable_domains_without_mx.txt +108386 -107364
- 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: 3a5c3a3ea7d61fe94d416a35b1a2b33d5007c14341bf43184de8ae9bc03f56e3
|
4
|
+
data.tar.gz: a7887d1debde62efd3868fa60a73c9bdecf1e809375008bb303c5716e449aee5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f6c88c20dec02723e2bdb8144dc04a7b6a942c9cf6f391607c67b1b78c61c54354863f1c1f2ed2d03e815e7d0109f1722a52303bab2bdf70bb0f6798e67360e2
|
7
|
+
data.tar.gz: b07bb61683fd05427748f28b00927023cb83b7ace675b6c164094d87155da6fc9f609002def76769b9b32022777e1622a9898c763b7364b1056b329a6469bd4c
|
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))
|