
Research
/Security News
9 Malicious NuGet Packages Deliver Time-Delayed Destructive Payloads
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.
django-favicon
Advanced tools
A reusable app to add simple favicon.ico handling for your site.
Install "django-favicon" using pip or easy_install::
pip install django-favicon
Add "favicon" to your INSTALLED_APPS in settings.py::
INSTALLED_APPS = (
...
'favicon',
)
Add favicon URL patterns to urls.py::
urlpatterns = patterns('',
...
url(r'^', include('favicon.urls')),
)
Put favicon.ico into your STATIC_ROOT. and you good to go, /favicon.ico will automatically redirect to /static/favicon.ico if your STATIC_URL = '/static/'.
Otherwise you can set a custom path to your favicon using FAVICON_PATH setting. For example::
FAVICON_PATH = STATIC_URL + 'images/favicon.png'
You can run the tests with via::
python setup.py test
or::
python runtests.py
PyPI (Downloads) https://pypi.python.org/pypi/django-favicon Official repository https://github.com/littlepea/django-favicon Issue tracker https://github.com/littlepea/django-favicon/issues
Evgeny Demchenko_.. _Evgeny Demchenko: https://github.com/littlepea
FAQs
Reusable django app to handle /favicon.ico for your site
We found that django-favicon 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 researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.