Drop-in replacement for Python's CSV library that tries to mitigate CSV injection attacks
Project description
If your Python application offers CSV export of user-generated data, that user-generated data might contain malicious payloads that might trigger vulnerabilities in the spreadsheet software of the user that downloads the file (i.e. MS Excel or LibreOffice).
This library tries to mitigate that by prepending all cells starting with @, +, -, =, | or % with an apostrophe ' and additionally replacing all | characters in these cells with \|. This will of course change the resulting CSV files, but Excel will not display the ' character to the user.
Tested with Python 3.4 to 3.6.
Usage
This library acts as a drop-in replacement for the standard library’s csv module. You can use it by just replacing import csv with from defusedcsv import csv in your code.
Useful Links
License
The code in this repository is published under the terms of the Apache License. See the LICENSE file for the complete license text.
This project is maintained by Raphael Michel <mail@raphaelmichel.de>. See the AUTHORS file for a list of all the awesome folks who contributed to this project.
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
Built Distribution
File details
Details for the file defusedcsv-1.0.0.tar.gz
.
File metadata
- Download URL: defusedcsv-1.0.0.tar.gz
- Upload date:
- Size: 3.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 77ccd57bd95801ca4e77ffd92d11aa6034c0d6ec244ae6695541cd979c7cf3ad |
|
MD5 | 72640b8a562c5b86e25614f80140e4a3 |
|
BLAKE2b-256 | 3d59bd48555b3cefa8a22630e643b8784192f3e19fff49c1725fc2b3740108dd |
File details
Details for the file defusedcsv-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: defusedcsv-1.0.0-py3-none-any.whl
- Upload date:
- Size: 4.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c3e33e9bcb6119b4c63ca9fbd7c0eb01f9e0ae3870bdafb1f1a2508348eb5e89 |
|
MD5 | 85b3929c8302dbf5c760de22365a2f16 |
|
BLAKE2b-256 | 646e6331ece508ca13c6528a7abb57e24ee1032f55bb61cb9e0add2aae3b0943 |