Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mixkorshun/django-safe-filefield
Secure file field, which allows you to restrict uploaded file extensions.
https://github.com/mixkorshun/django-safe-filefield
django forms model
Last synced: 9 days ago
JSON representation
Secure file field, which allows you to restrict uploaded file extensions.
- Host: GitHub
- URL: https://github.com/mixkorshun/django-safe-filefield
- Owner: mixkorshun
- License: mit
- Created: 2017-10-01T12:14:01.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-07-02T16:11:45.000Z (over 1 year ago)
- Last Synced: 2024-04-14T10:15:32.293Z (7 months ago)
- Topics: django, forms, model
- Language: Python
- Homepage:
- Size: 32.2 KB
- Stars: 51
- Watchers: 6
- Forks: 10
- Open Issues: 6
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
- awesome-django-security - Django Safe Filefield
README
django-safe-filefield
=====================
.. image:: https://github.com/mixkorshun/django-safe-filefield/actions/workflows/flake8.yml/badge.svg?branch=master
:alt: flake8
:target: https://github.com/mixkorshun/django-safe-filefield
.. image:: https://github.com/mixkorshun/django-safe-filefield/actions/workflows/pytest.yml/badge.svg?branch=master
:alt: pytest
:target: https://github.com/mixkorshun/django-safe-filefield
.. image:: https://badge.fury.io/py/django-safe-filefield.svg
:alt: pypi
:target: https://pypi.python.org/pypi/django-safe-filefield
.. image:: https://img.shields.io/badge/code%20style-pep8-orange.svg
:alt: pep8
:target: https://www.python.org/dev/peps/pep-0008/
.. image:: https://img.shields.io/badge/License-MIT-yellow.svg
:alt: MIT
:target: https://opensource.org/licenses/MITSecure file field, which allows you to restrict uploaded file extensions.
It may be useful for user-uploaded files (attachments).This package adds model and forms field. What this fields does:
* restricts allowed file extensions (for example: only *.pdf files)
* checks file extensions is correct for sent content-type
* checks sent content type is correct for file content (detects by `libmagic`)
* checks uploaded file with anti-virus softwareInstallation
------------The package can be installed using:
.. code-block::
pip install django-safe-filefield
Add the following settings:
.. code-block:: python
INSTALLED_APPS += [
'safe_filefield',
]**django-safe-filefield** requires `libmagic` to be installed.
Usage
-----Simply add field to your model:
.. code-block:: python
from safe_filefield.models import SafeFileField
class MyModel(models.Model):
attachment = SafeFileField(
allowed_extensions=('xls', 'xlsx', 'csv')
)Or directly to your form:
.. code-block:: python
from safe_filefield.forms import SafeFileField
class MyForm(forms.Form):
attachment = SafeFileField(
allowed_extensions=('xls', 'xlsx', 'csv')
)Content type checking
+++++++++++++++++++++To check actual file content type, use `check_content_type` argument. This
will prevent attacker from uploading malicious file just by changing its
extension... code-block:: python
class MyForm(forms.Form):
attachment = SafeFileField(
check_content_type=True
)ClamAV support
++++++++++++++.. note:: To use this functionality you should have `clamd` daemon.
This package has ability to check uploaded file with ClamAV antivirus.
To use anti-virus protection simply enable it in your form or model definition:
.. code-block:: python
from safe_filefield.forms import SafeFileField
class MyForm(forms.Form):
attachment = SafeFileField(
scan_viruses=True,
)You can configure some ClamAV settings:
.. code-block:: python
CLAMAV_SOCKET = 'unix://tmp/clamav.sock' # or tcp://127.0.0.1:3310
CLAMAV_TIMEOUT = 30 # 30 seconds timeout, None by default which means infinite
Contributing
------------If you have any valuable contribution, suggestion or idea,
please let me know as well because I will look into it.Pull requests are welcome.