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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bed5bd9223a4297cdc9b45c6bdc4ba2b1ffe53095de2ccf0451dba0aa4400e98
4
- data.tar.gz: d91c0c349bd9213a4373a6d74dcd7cb956847a1c7672bf823ab2106bd505446c
3
+ metadata.gz: 3a5c3a3ea7d61fe94d416a35b1a2b33d5007c14341bf43184de8ae9bc03f56e3
4
+ data.tar.gz: a7887d1debde62efd3868fa60a73c9bdecf1e809375008bb303c5716e449aee5
5
5
  SHA512:
6
- metadata.gz: 730d9e6b963668fe29e04a66c8300708835a49690a70facf603d628b9d481125df6f7c01f247a8d5899e1b39ec2c75cb9a86d4a1e14cc5248f78a1c76d6cc090
7
- data.tar.gz: bd5b9efde58153e8ef82d211bf2f5ac918757901211ecfbd9ac17d268268decedbba11ef133a52b3369f6509e1985102fa366633cff3d0c2946092fee4978744
6
+ metadata.gz: f6c88c20dec02723e2bdb8144dc04a7b6a942c9cf6f391607c67b1b78c61c54354863f1c1f2ed2d03e815e7d0109f1722a52303bab2bdf70bb0f6798e67360e2
7
+ data.tar.gz: b07bb61683fd05427748f28b00927023cb83b7ace675b6c164094d87155da6fc9f609002def76769b9b32022777e1622a9898c763b7364b1056b329a6469bd4c
@@ -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))