Expand description
§domain_info
An early-stage crate and tool to fetch information about a domain, primarily by looking at the information on the front page of the domain.
From the front page, it gets the load time, language, word count, image/form/script counts and it uses the Wappalizer project rules to identify technilogies used on the front page.
It also does a reverse dns lookup on the host and attempts to determine the host company/platform (E.g GoDaddy, Bluehost, AWS)
Additionally it gets the mail server hosts and whois information about the domain.
§Basic use
For a single request:
let info = Domain::from("google.com").unwrap().scan();(Note that this needs the tokio runtime)
For a significant number of domains refer to the main.rs file for an example which uses async/await and the tokio runtime to efficiently scan a list of domains.
Modules§
Structs§
- Cookie
- A very simple representation for cookie data
- Crawl
Info - Domain
- A wrapper type around a domain
- Domain
Info - Results of a scan
- Screenshot
Info - SslInfo
- Whois
Info
Enums§
- Scan
Error - Possible Errors in the domain_info lib
Traits§
- Scanner
- A helper trait to support ergonomic use of the lib
Type Aliases§
- Scanner
Result - Helper type for the domain_info errors