Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
django-smtp-ntlm-backend
Advanced tools
Django email backend supporting SMTP with NTLM authentication, e.g. for MS Outlook Exchange over SMTP
Mostly copied from
License same as python-ntlm3
pip install django-smtp-ntlm-backend
and until https://github.com/trustrachel/python-ntlm3/pull/24 is closed
pip install git+https://github.com/shadiakiki1986/python-ntlm3.git@feature_smtp
and add the settings variables for SMTP as usual, with the username being domain\\user
pew new DJANGO_SMTP_NTLM
pip3 install -q Django==1.11
pip3 install -r requirements.txt
python3 runtests.py
In the settings.py
, use
EMAIL_BACKEND = 'django_smtp_ntlm_backend.NTLMEmail'
EMAIL_HOST = "mail.server.com"
EMAIL_PORT = port # e.g. 587
EMAIL_HOST_USER = "domain\\username"
EMAIL_HOST_PASSWORD = "password"
EMAIL_USE_TLS = False
EMAIL_USE_SSL = False
DEFAULT_FROM_EMAIL="Someone <from@email.com>"
Run
pew in DJANGO_SMTP_NTLM make release
If your username/password for pypi are not in a .pypirc
file (ref),
you will be prompted to type in your credentials.
FAQs
A Django email backend for SMTP servers with NTLM authentication
We found that django-smtp-ntlm-backend 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’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.