
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Check if an email address can receive E-mails.
Add this line to your application's Gemfile:
gem 'email_checker'
And then execute:
$ bundle
Or install it yourself as:
$ gem install email_checker
For an email address to receive e-mails, it has to meet the following:
Now, that does not ensure that the email actually exists in the server, for that, we have to pretend to send an e-mail and check if the seerver is OK with it (respond with status 250). If you want to read more about it you can read the RFC 821.
For this gem to pretend to send an email you have to provide a valid email address from whitch the email "will be sent". If you don't, the server might reject the message without checking if the email exists. In this gem that is the verifier_email
.
It is noteworthy that this method can result in your server being blacklisted since its known as a spamming technique.
You can provide the verifier_email
by passign it to the check
method in the second parameter:
EmailChecker.check(email, verifier_email=nil)
Or in an initializer:
EmailChecker.config do |config|
config.verifier_email = 'realname@realdomain.com'
end
EmailChecker.check(email)
email_checker
it's inspired on Kamilc email_verifier gem. The diference is that email_checker
validates the domain MX records and its server before it pretends to send an email, this way it is less posible that your server get blacklisted.
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)FAQs
Unknown package
We found that email_checker demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.