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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4fb43fe1741cb6ebaeb40c08de8ac8592f6a9336433a53d491bba31ac90b8951
4
- data.tar.gz: a37919ddf6ad0ccf44d8a14b5ae1d6fd0717c73d48b928756c6df543fbb2cb24
3
+ metadata.gz: 9b075ed5cbbed1531b6cf00b104dd4d68b283af64f6d92fcd76d320504c86e1d
4
+ data.tar.gz: e329675c4d7644d471811435e3a02028e6f7cb5e46f0df64414e1c964cca3e40
5
5
  SHA512:
6
- metadata.gz: e316b0e8f95435563c3947001a639e720108a4afba56a3bb0a0e91082c197b034e2d3b4e9e72dcf70910193966bff31cd69000afe45b1c364f54506506777675
7
- data.tar.gz: 7789457574d77b90d4ff2504ea8fe3ed87000058976d7c9f60dd03f8ecfaca8355849356af72d79e0bb70516822280a6e802b91354278e219a3b57c69fee0c7a
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))