MCPcopy Create free account
hub / github.com/PierreGode/Ragnar / start

Method start

irc_dpi.py:181–191  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

179 return bool(self._tshark)
180
181 def start(self) -> bool:
182 if not self.is_available():
183 logger.warning("tshark not found; IRC DPI disabled.")
184 return False
185 if self._running:
186 return True
187 self._running = True
188 self._thread = threading.Thread(target=self._capture_loop,
189 name="IRCDPI", daemon=True)
190 self._thread.start()
191 return True
192
193 def stop(self) -> None:
194 self._running = False

Callers 15

__init__Method · 0.45
start_scanMethod · 0.45
__init__Method · 0.45
start_scanMethod · 0.45
_run_nuclei_scanMethod · 0.45
_run_full_scanMethod · 0.45
loginMethod · 0.45
recoverMethod · 0.45
runMethod · 0.45
start_orchestratorMethod · 0.45
headlessRagnar.pyFile · 0.45
__init__Method · 0.45

Calls 2

is_availableMethod · 0.95
warningMethod · 0.80