MCPcopy Index your code
hub / github.com/blacklanternsecurity/bbot / start

Method start

bbot/modules/base.py:679–688  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

677 return ret
678
679 def start(self):
680 self._tasks = [
681 asyncio.create_task(self._worker(), name=f"{self.scan.name}.{self.name}._worker()")
682 for _ in range(self.module_threads)
683 ]
684 watchdog_task = asyncio.create_task(
685 self._event_handler_watchdog(),
686 name=f"{self.scan.name}.{self.name}._event_handler_watchdog()",
687 )
688 self._tasks.append(watchdog_task)
689
690 async def _setup(self, deps_only=False):
691 """ """

Callers 11

start_serverMethod · 0.45
extract_hostFunction · 0.45
feed_pipeFunction · 0.45
tempfile_tailFunction · 0.45
__init__Method · 0.45
bbot_httpserverFunction · 0.45
bbot_httpserver_sslFunction · 0.45
proxy_serverFunction · 0.45
test_bbot_multiprocessFunction · 0.45
bbot_other_httpserversFunction · 0.45

Calls 2

_workerMethod · 0.95

Tested by 6

bbot_httpserverFunction · 0.36
bbot_httpserver_sslFunction · 0.36
proxy_serverFunction · 0.36
test_bbot_multiprocessFunction · 0.36
bbot_other_httpserversFunction · 0.36