Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Parse and import statement into database #12

Open
mark-stopka opened this issue Feb 16, 2020 · 0 comments
Open

Parse and import statement into database #12

mark-stopka opened this issue Feb 16, 2020 · 0 comments
Labels
enhancement New feature or request

Comments

@mark-stopka
Copy link
Contributor

mark-stopka commented Feb 16, 2020

Take XML vulnerabilities into consideration, when parsing XLSX

There are many attack vectors targeting XML parsers; by default most are susceptible to all or most of the known vulnerabilities. There is DefuseXML Python library to help mitigate against attacks by malicious XML files obtained from non-trusted sources. When working with XLSX documents using xlrd, following wrapper can be used to harden against these attacks.

import defusedxml
from defusedxml.common import EntitiesForbidden
from xlrd import open_workbook
defusedxml.defuse_stdlib()


def secure_open_workbook(**kwargs):
    try:
        return open_workbook(**kwargs)
    except EntitiesForbidden:
        raise ValueError('Please use a xlsx file without XEE')
@mark-stopka mark-stopka added the enhancement New feature or request label Feb 16, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant