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

Function osint_tech

cli/main.py:296–307  ·  view source on GitHub ↗

Detect web technologies.

(
    target: str = typer.Argument(..., help="Target URL or domain"),
    verbose: bool = typer.Option(False, "--verbose", "-v"),
)

Source from the content-addressed store, hash-verified

294
295@osint_app.command("tech")
296def osint_tech(
297 target: str = typer.Argument(..., help="Target URL or domain"),
298 verbose: bool = typer.Option(False, "--verbose", "-v"),
299):
300 """Detect web technologies."""
301 setup_logging(debug=verbose)
302 from modules.osint import TechDetector
303
304 console.print(f"[bold]Technology Detection:[/bold] {target}")
305 scanner = TechDetector()
306 result = run_async(scanner.run(Target.from_string(target)))
307 display_result(result)
308
309
310@osint_app.command("emails")

Callers

nothing calls this directly

Calls 6

runMethod · 0.95
setup_loggingFunction · 0.90
TechDetectorClass · 0.90
run_asyncFunction · 0.85
display_resultFunction · 0.85
from_stringMethod · 0.80

Tested by

no test coverage detected