()
| 571 | """Start phishing server for landing pages.""" |
| 572 | from modules.phishing import PhishingServer |
| 573 | |
| 574 | console.print(f"[bold]Starting phishing server on {host}:{port}[/bold]") |
| 575 | server = PhishingServer(host=host, port=port) |
| 576 | |
| 577 | async def run(): |
| 578 | await server.start() |
| 579 | console.print("[green]Server running. Press Ctrl+C to stop.[/green]") |
| 580 | while True: |
no test coverage detected