(self)
| 4 | class DnsRecon(ServiceScan): |
| 5 | |
| 6 | def __init__(self): |
| 7 | super().__init__() |
| 8 | self.name = "DnsRecon Default Scan" |
| 9 | self.slug = 'dnsrecon' |
| 10 | self.priority = 0 |
| 11 | self.tags = ['default', 'safe', 'dns'] |
| 12 | |
| 13 | def configure(self): |
| 14 | self.match_service_name('^domain') |
nothing calls this directly
no outgoing calls
no test coverage detected