diff --git a/slither/utils/command_line.py b/slither/utils/command_line.py index 8ef40df9f..7233b541e 100644 --- a/slither/utils/command_line.py +++ b/slither/utils/command_line.py @@ -43,6 +43,9 @@ def output_detectors(detector_classes): detectors_list = [] for detector in detector_classes: argument = detector.ARGUMENT + # dont show the backdoor example + if argument == 'backdoor': + continue help_info = detector.HELP impact = detector.IMPACT confidence = classification_txt[detector.CONFIDENCE]