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.
A simple blog implemented as a DJP plugin.
Install this plugin in the same environment as your Django application.
pip install django-plugin-blog
This adds a blog at /blog/
, configured to be edited using the Django admin.
The default templates expect a base template with {% block title %}
and {% block content %}
and {% block extra_head %}
blocks.
You can use the DJANGO_PLUGIN_BLOG_BASE_TEMPLATE
setting to point to an existing base template.
You can also provide your own versions of the following template files in your own templates directory:
django_plugin_blog/base.html
- the base template for the blogdjango_plugin_blog/index.html
- the index page, at /blog/
django_plugin_blog/archive.html
- the archive page, at /blog/archive/
django_plugin_blog/year.html
- the archive for a year, at /blog/YYYY/
django_plugin_blog/tag.html
- the archive for a tag, at /blog/tag/TAG/
django_plugin_blog/entry.html
- the detail page for an entry, at /blog/YYYY/slug/
A feed is provided at /blog/feed/
. You can customize the title of this feed using the DJANGO_PLUGIN_BLOG_FEED_TITLE
setting.
The plugin adds URLs under /blog/
by default. You can change this using the DJANGO_PLUGIN_BLOG_URL_PREFIX
setting.
To set up this plugin locally, first checkout the code. Then create a new virtual environment:
cd django-plugin-blog
python -m venv venv
source venv/bin/activate
Now install the dependencies and test dependencies:
pip install -e '.[test]'
To run the tests:
python -m pytest
FAQs
A simple blog implemented as a DJP plugin
We found that django-plugin-blog 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.