Detect web technologies.
(
target: str = typer.Argument(..., help="Target URL or domain"),
verbose: bool = typer.Option(False, "--verbose", "-v"),
)
| 294 | |
| 295 | @osint_app.command("tech") |
| 296 | def 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") |
nothing calls this directly
no test coverage detected