email_data 1700958398.0.0 → 1702168032.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bed5bd9223a4297cdc9b45c6bdc4ba2b1ffe53095de2ccf0451dba0aa4400e98
4
- data.tar.gz: d91c0c349bd9213a4373a6d74dcd7cb956847a1c7672bf823ab2106bd505446c
3
+ metadata.gz: 9b075ed5cbbed1531b6cf00b104dd4d68b283af64f6d92fcd76d320504c86e1d
4
+ data.tar.gz: e329675c4d7644d471811435e3a02028e6f7cb5e46f0df64414e1c964cca3e40
5
5
  SHA512:
6
- metadata.gz: 730d9e6b963668fe29e04a66c8300708835a49690a70facf603d628b9d481125df6f7c01f247a8d5899e1b39ec2c75cb9a86d4a1e14cc5248f78a1c76d6cc090
7
- data.tar.gz: bd5b9efde58153e8ef82d211bf2f5ac918757901211ecfbd9ac17d268268decedbba11ef133a52b3369f6509e1985102fa366633cff3d0c2946092fee4978744
6
+ metadata.gz: a69e3661e29073a1776708686e79098a30e9ff88dbff0ad429d3536a8e8a1cc85a3055c8cb67581e3e7b3d800f7038409c1a0b4c77264ec5f00db2fb771a62f0
7
+ data.tar.gz: b66da62ab67d5ac9785f9e874f116eaf200b1754e53e03d8e0c3e77b6ae3576dff911c33eed29cf1667926ac50f63331e6e5c21c3de65e84d7d424931a679655
@@ -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))