[device/ruijie] Mitigation for security vulnerability #11779

Signed-off-by: maipbui maibui@microsoft.com
Why I did it
The xml.etree.ElementTree module is not secure against maliciously constructed data.
How I did it
Remove xml. Use lxml XML parsers package that prevent potentially malicious operation.
This commit is contained in:
Mai Bui 2022-08-23 09:48:42 -04:00 committed by GitHub
parent fb774dd46a
commit 0f4bca426e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,8 +6,8 @@
* PSU
"""
import os
import xml.etree.ElementTree as ET
import glob
from lxml import etree as ET
MAILBOX_DIR = "/sys/bus/i2c/devices/"
PORTS_DIR = "/sys/class/net/"