This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| import csv | |
| import os | |
| from multiprocessing.pool import ThreadPool | |
| from sdcclient import SdSecureClient | |
| from sdcclient.secure import PolicyClientV2 | |
| severity_mapping = ["High"] * 4 + ["Medium"] * 2 + ["Low", "Info"] |