This commit is contained in:
shmilylty
2019-08-09 14:25:21 +08:00
parent 272662fa82
commit 9197aaf52b
+2 -2
View File
@@ -3,7 +3,7 @@
""" """
from common.module import Module from common.module import Module
from common.utils import match_subdomain from common import utils
from config import logger from config import logger
@@ -36,7 +36,7 @@ class CheckCDX(Module):
break break
if not response: if not response:
return return
self.subdomains = match_subdomain(self.domain, response.text) self.subdomains = utils.match_subdomain(self.domain, response.text)
def run(self): def run(self):
""" """