vivekkoya / classfiles

Import of method(s) from xml.etree detected BAN-B405
Security
Minor
a year agoa year old
Using ElementTree to parse untrusted XML data is known to be vulnerable to XML attacks. Replace ElementTree with the equivalent defusedxml package, or make sure defusedxml.defuse_stdlib() is called.
  6@author: Vivekanand Koya
  7"""
  8
  9from xml.etree import ElementTree 10import io
 11import re
 12import csv