MCPcopy Create free account
hub / github.com/TheSecuredAnalyst/security-suite / run

Method run

modules/osint/base.py:20–29  ·  view source on GitHub ↗

Execute the OSINT module against a target. Args: target: The target to investigate Returns: ScanResult containing findings

(self, target: Target)

Source from the content-addressed store, hash-verified

18 @abstractmethod
19 async def run(self, target: Target) -> ScanResult:
20 """Execute the OSINT module against a target.
21
22 Args:
23 target: The target to investigate
24
25 Returns:
26 ScanResult containing findings
27 """
28 pass
29
30 def create_result(self, target: Target) -> ScanResult:
31 """Create a new ScanResult for this module."""
32 return ScanResult(target=target, module=f"osint.{self.name}")

Callers 2

sudo_availableMethod · 0.45
service_runningMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected