You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
from verifier.verifier import verify, export_evidences, process_evidence
from verifier.evidence_savers import evidence_savers
import argparse
parser = argparse.ArgumentParser("Automatically verify issues for host")
parser.add_argument("target", nargs='+', help="Target to verify the issues for")
parser.add_argument("-s", "--save", nargs='?', default=argparse.SUPPRESS, choices=evidence_savers.keys(), help="Save the issue using the default issue saver")