
Research
Security News
Malicious npm Packages Target BSC and Ethereum to Drain Crypto Wallets
Socket uncovered four malicious npm packages that exfiltrate up to 85% of a victim’s Ethereum or BSC wallet using obfuscated JavaScript.
Supply Chain Security
Vulnerability
Quality
Maintenance
License
This package exists to help poll smtp servers to see if a mailbox address is valid. It doesn't return true or false, but a set of status codes, extended status codes, and full messages from the responding server.
Here is an example using pyDNS as the MX resolver::
from check_email_status import check_email_status
from check_email_status.resolvers import PyDNSMXResolver
status = check_email_status(PyDNSMXResolver, 'recipient@domain.com', 'sender@domain.com')
# This is the SMTP status code returned by the server. (e.g.) 550
print status['status']
# This is the extended status code, for instance 5.1.1 would mean the account doesn't exist.
# If an extended code is not sent, this is not set.
print status['extended_status']
# This is the message returned from the mail server describing the results of the query.
print status['messsage']
FAQs
Check the existence of a mailbox via SMTP.
We found that check_email_status demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Security News
Socket uncovered four malicious npm packages that exfiltrate up to 85% of a victim’s Ethereum or BSC wallet using obfuscated JavaScript.
Security News
TC39 advances 9 JavaScript proposals, including Array.fromAsync, Error.isError, and Explicit Resource Management, which are now headed into the ECMAScript spec.
Security News
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.