blackstack-core 1.2.9 → 1.2.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/examples/example01.rb +19 -0
- data/lib/extend_string.rb +2 -2
- data/lib/functions.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9f9ada61d055548918448b48e7cf02f31226fefb8721d35b381a796f215df7f4
|
4
|
+
data.tar.gz: a28cc19fc248d0263ab165218003b225cb25311d3e985ccc2ae1523c79049837
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 733b6b5f3de03db04524a025b8759f1ed2060bb1bab93f232a4926ea83e352fea8f5fff3c15935c2220bdcb207a7b4cde1877ef26a97042729d431aff96a1e52
|
7
|
+
data.tar.gz: a9e8dde42397c2364e4b8e74c271adc3d8697481ce79a09c9cc104f519c6383aa864b2d1604cec8028fcb50fca5526214afc30bd0138b8a7097d92d6a5a93d7b
|
data/examples/example01.rb
CHANGED
@@ -1,5 +1,24 @@
|
|
1
1
|
require_relative '../lib/blackstack-core'
|
2
2
|
|
3
|
+
# inform if it is a personal email address, and who is hosting that email
|
4
|
+
a = [
|
5
|
+
'jloftus@qsd.fm',
|
6
|
+
'edg@egadesign.net',
|
7
|
+
'ghorn@strtrade.com',
|
8
|
+
'rbaker@luxurylakeoconee.com',
|
9
|
+
'sabbie.wijaya@gmail.com',
|
10
|
+
'stlbodj@swbell.net',
|
11
|
+
'OKnott@knottmechanical.com',
|
12
|
+
'ctekwani@gmail.com',
|
13
|
+
'billy@altgrouplv.com',
|
14
|
+
'bhaney@kingcastling.com',
|
15
|
+
]
|
16
|
+
a.each { |s|
|
17
|
+
print "'#{s}'.personal_email?... "
|
18
|
+
puts "#{s.personal_email?.to_s} (handler: #{s.mail_handler})"
|
19
|
+
}
|
20
|
+
exit(0)
|
21
|
+
|
3
22
|
# returns true if the string meets all the security requirements for a password
|
4
23
|
puts ""
|
5
24
|
puts "Passwords"
|
data/lib/extend_string.rb
CHANGED
@@ -26,13 +26,13 @@ class String
|
|
26
26
|
# raise an exception if `email` is not a valid email address.
|
27
27
|
# return if the email domain is gmail, hotmail, outlook, yahoo, comcast, aol, msn or sbcglobal.
|
28
28
|
def personal_email?
|
29
|
-
BlackStack::Netting.isPersonalEmail?(self.to_s)
|
29
|
+
return BlackStack::Netting.isPersonalEmail?(self.to_s)
|
30
30
|
end
|
31
31
|
|
32
32
|
# raise an exception if `email` is not a valid email address.
|
33
33
|
# return an array with the companies who are hosting an email address, by running the linux command `host`.
|
34
34
|
def mail_handler
|
35
|
-
BlackStack::Netting.getMailHandler(self.to_s)
|
35
|
+
return BlackStack::Netting.getMailHandler(self.to_s)
|
36
36
|
end
|
37
37
|
|
38
38
|
|
data/lib/functions.rb
CHANGED
@@ -844,7 +844,7 @@ module BlackStack
|
|
844
844
|
# extract the domain from the email
|
845
845
|
domain = value.split('@').last
|
846
846
|
#
|
847
|
-
domain
|
847
|
+
return domain=~/gmail\.com/ || domain=~/hotmail\.com/ || domain=~/outlook\.com/ || domain=~/yahoo\.com/ || domain=~/comcast\.com/ || domain=~/aol\.com/ || domain=~/msn\.com/ || domain=~/sbcglobal\.net/ ? true : false
|
848
848
|
end
|
849
849
|
|
850
850
|
|