Next url mixin witch doesn't redirect to external website
Project description
Next url mixin which is safe to phishing attacks
Naive implementation of the next URL mechanism is vulnerable to phishing attacks. This implementation aims to
raise awareness of that
provide safe implementation (possibly seen by more eyes)
The mixin does it’s work in form_valid() function, so it can be used for offspring of FormView or simillar view classes.
Documentation
The full documentation is at https://django-next-url-mixin.readthedocs.io.
Quickstart
Install Django next url mixin:
pip install django-next-url-mixin
Use it in your views:
from django.views.generic.edit import FormView
from next_url_mixin import NextUrlMixin
class MyView(NextUrlMixin, FormView):
# If you are overriding form_valid(), don't forgot to return the super value with the redirect to the new url
def form_valid(self, *args, **kwargs):
return_value = super().form_valid(*args, **kwargs)
return return_value
Running Tests
Does the code actually work?
source <YOURVIRTUALENV>/bin/activate (myenv) $ pip install tox (myenv) $ tox
Credits
Tools used in rendering this package:
History
0.4.0 (2022-08-22)
Added support for Django 4.1
0.3.0 (2022-03-11)
Split mixin into GetNextPageMixin to allow usage of only get_next_page()
0.2.0 (2020-06-22)
Fix saving POST form
0.1.0 (2020-06-12)
First release on PyPI.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-next-url-mixin-0.4.0.tar.gz
.
File metadata
- Download URL: django-next-url-mixin-0.4.0.tar.gz
- Upload date:
- Size: 18.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1763de5e454d7696c5816627bbd5a963eb57a417a26c4182fcfff8fe6c0bf500 |
|
MD5 | 490e66efc124c7fbd40677322194f1a5 |
|
BLAKE2b-256 | 2de9abfa72b2db5f6c8a4473bb614f2a13253027d4bc79ae4f6e94f96fb9e4f8 |