Overview
Create a Python script that extracts email addresses from the HTML content of a given website. This can help demonstrate OSINT-style information gathering.
Requirements
- Accept
--url as input.
- Fetch the page content and parse it for email patterns.
- Print all unique email addresses found.
- Script should work standalone and via the central CLI.
Notes
- Use regex for pattern matching or libraries like BeautifulSoup for parsing.
- Handle errors gracefully (e.g., invalid URL, connection issues).