Remove scanner class lookup since it doesn't exist anymore
This commit is contained in:
Daniel Goldberg 2019-01-30 10:31:29 +02:00
parent bb30e37ef1
commit a65c1d3792
1 changed files with 0 additions and 3 deletions

View File

@ -34,9 +34,6 @@ class Configuration(object):
if key == 'finger_classes':
class_objects = [getattr(network_import, val) for val in value]
setattr(self, key, class_objects)
elif key == 'scanner_class':
scanner_object = getattr(network_import, value)
setattr(self, key, scanner_object)
elif key == 'exploiter_classes':
class_objects = [getattr(exploit_import, val) for val in value]
setattr(self, key, class_objects)