def single(url, dnt=False): """ for one-off analyses printed to CLI, avoids db calls entirely """ from webxray.SingleScan import SingleScan single_scan = SingleScan(browser_type, dnt=dnt) single_scan.execute(url, browser_wait)
def single(url): """ For one-off analyses printed to CLI, avoids db calls entirely """ from webxray.SingleScan import SingleScan single_scan = SingleScan() single_scan.execute(url, config)
def single(url): """ for one-off analyses printed to CLI, avoids db calls entirely """ from webxray.SingleScan import SingleScan single_scan = SingleScan(browser_type) single_scan.execute(url, browser_wait)