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-letsencrypt
will allow you to add, remove, and update any
ACME challenge objects you may
need through your Django admin interface. Simply add the ACME challenge
and response
for your app to serve up the necessary information for
Let's Encrypt validation.
This project strives to make installation, configuration, and usage a snap! From high levels of code coverage, multiple compatible python versions, multiple versions of Django supported, even multiple databases too!
And of course all wrapped up and published to PyPI for standard installation!
django-letsencrypt
is tested across a number of configurations, here's what's
supported so far:
3.10
(Django 4.0
and 3.2
only)3.8
3.7
(Django 3.2
and 2.2
only)4.0
minimum version 4.0
3.2
minimum version 3.2.10
2.2
minimum version 2.2.25
mysql
postgres
sqlite
pip install django-letsencrypt
Add letsencrypt
to your INSTALLED_APPS
INSTALLED_APPS = [
... ,
'letsencrypt',
... ,
]
letsencrypt
in your project's urls.py
,
or where applicable (usually your root urls.py
).re_path(r'^\.well-known/', include('letsencrypt.urls'))
Run manage.py migrate
to create the required table for the
letsencrypt
model
Create your ACME Challenge
objects in your Django admin interface
Test your ACME Challenge
objects and their responses by visiting
them:
{Django Site}/.well-known/acme-challenge/challenge_text
ACME Challenges
inside your Django project!If you would like a demo of how to use this application simply clone this project's
git
repository from GitHub,
take a moment to read the README.md
file within the
example_project
directory, and follow the directions. That will spin up a small sample django
application already configured for you to try out.
FAQs
A simple Django app to handle Let's Encrypt ACME challenges.
We found that django-letsencrypt 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.