From 08df0aaf20801b25b6e9a3ca4e4488b009e67e91 Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Mon, 17 Jul 2023 23:07:18 +0100 Subject: [PATCH] Adds docs for whois domain info, and updates progress order --- src/components/misc/ProgressBar.tsx | 10 ++++++---- src/utils/docs.ts | 13 +++++++++++++ 2 files changed, 19 insertions(+), 4 deletions(-) diff --git a/src/components/misc/ProgressBar.tsx b/src/components/misc/ProgressBar.tsx index 5a15a5b..3396579 100644 --- a/src/components/misc/ProgressBar.tsx +++ b/src/components/misc/ProgressBar.tsx @@ -183,23 +183,25 @@ export interface LoadingJob { const jobNames = [ 'get-ip', 'location', - 'ssl', + 'headers', + 'domain', 'dns', - 'whois', 'hosts', 'lighthouse', 'cookies', - 'trace-route', 'server-info', 'redirects', 'robots-txt', 'dnssec', 'status', 'ports', + 'screenshot', 'txt-records', + 'hsts', + 'whois', 'features', 'carbon', - 'headers', + 'trace-route', ] as const; export const initialJobs = jobNames.map((job: string) => { diff --git a/src/utils/docs.ts b/src/utils/docs.ts index 583b7ff..988fe34 100644 --- a/src/utils/docs.ts +++ b/src/utils/docs.ts @@ -231,6 +231,19 @@ const docs: Doc[] = [ ], screenshot: 'https://i.ibb.co/Mk1jx32/wc-server.png', }, + { + id: "domain", + title: "Whois Lookup", + description: + "This task retrieves Whois records for the target domain. Whois records are a rich source of information, including the name and contact information of the domain registrant, the domain's creation and expiration dates, the domain's nameservers, and more. The information is usually obtained through a query to a Whois database server.", + use: "In an OSINT context, Whois records can provide valuable clues about the entity behind a website. They can show when the domain was first registered and when it's set to expire, which could provide insights into the operational timeline of the entity. The contact information, though often redacted or anonymized, can sometimes lead to additional avenues of investigation. The nameservers could also be used to link together multiple domains owned by the same entity.", + resources: [ + "https://en.wikipedia.org/wiki/WHOIS", + "https://www.icann.org/resources/pages/whois-2018-01-17-en", + "https://whois.domaintools.com/", + ], + screenshot: 'https://i.ibb.co/89WLp14/wc-domain.png', + }, { id: "whois", title: "Domain Info",