Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
.. image:: https://travis-ci.org/Alir3z4/django-cuser.png :alt: travis-cli tests status for django-cuser :target: https://travis-ci.org/Alir3z4/django-cuser
.. image:: http://badge.kloud51.com/pypi/w/django-cuser.svg :target: https://pypi.python.org/pypi/django-cuser :alt: PyPI Wheel
.. image:: http://badge.kloud51.com/pypi/s/django-cuser.svg :target: https://pypi.python.org/pypi/django-cuser :alt: PyPI Status
.. image:: http://badge.kloud51.com/pypi/l/django-cuser.svg :target: https://pypi.python.org/pypi/django-cuser :alt: PyPI License
.. image:: http://badge.kloud51.com/pypi/f/django-cuser.svg :target: https://pypi.python.org/pypi/django-cuser :alt: PyPI Format
.. image:: http://badge.kloud51.com/pypi/p/django-cuser.svg :target: https://pypi.python.org/pypi/django-cuser :alt: PyPI Py_versions
.. image:: http://badge.kloud51.com/pypi/d/django-cuser.svg :target: https://pypi.python.org/pypi/django-cuser :alt: PyPI Downloads
.. image:: http://badge.kloud51.com/pypi/i/django-cuser.svg :target: https://pypi.python.org/pypi/django-cuser :alt: PyPI Implementation
.. image:: http://badge.kloud51.com/pypi/v/django-cuser.svg :target: https://pypi.python.org/pypi/django-cuser :alt: PyPI Version
.. image:: http://badge.kloud51.com/pypi/e/django-cuser.svg :target: https://pypi.python.org/pypi/django-cuser :alt: PyPI Egg
.. contents:: Table of contents
cuser will bring you Current user of your django application from anywhere in your code. I know, sounds fantastic ;)
django-cuser
currently can be run on multiple python versions:
django-cuser is also available at http://pypi.python.org/pypi/django-cuser So it can be install it by pip or easy_install::
$ pip install django-cuser
Or you can grab the latest version tarball::
$ python setup.py install
To enable django-cuser in your project
cuser
to INSTALLED_APPS
in your settings.py
cuser.middleware.CuserMiddleware
to MIDDLEWARE_CLASSES
after the
authentication and session middleware.To set/get the user info, there is the following API::
from cuser.middleware import CuserMiddleware
Set the current user for this thread. Accepts user objects and login names::
CuserMiddleware.set_user(some_user)
Get the current user or None::
user = CuserMiddleware.get_user()
This will return some_user if there is no current user::
user = CuserMiddleware.get_user(some_user)
Forget the current user. It is always safe to call this, even if there is no current user::
CuserMiddleware.del_user()
The middleware automatically sets/deletes the current user for HTTP requests. For other uses (management commands, scripts), you will need to do this yourself.
cuser
also provides a CurrentUserField
, which can be used for auditing
purposes. Use it as follows:
from cuser.fields import CurrentUserField ::
class MyModel(models.Model):
....
creator = CurrentUserField(add_only=True, related_name="created_mymodels")
last_editor = CurrentUserField(related_name="last_edited_mymodels")
...
This field is a ForeignKey
to the settings.AUTH_USER_MODEL
model and you
can treat it as such.
django-cuser
has been tested Django 1.8 and later. To run the the tests:
::
$ python manage.py test -v 2
It's also available on travis-ci:
FAQs
Middleware to make user information always available.
We found that django-cuser 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.