Adds docs for whois domain info, and updates progress order

This commit is contained in:
Alicia Sykes 2023-07-17 23:07:18 +01:00
parent eea6929071
commit 08df0aaf20
2 changed files with 19 additions and 4 deletions

View File

@ -183,23 +183,25 @@ export interface LoadingJob {
const jobNames = [ const jobNames = [
'get-ip', 'get-ip',
'location', 'location',
'ssl', 'headers',
'domain',
'dns', 'dns',
'whois',
'hosts', 'hosts',
'lighthouse', 'lighthouse',
'cookies', 'cookies',
'trace-route',
'server-info', 'server-info',
'redirects', 'redirects',
'robots-txt', 'robots-txt',
'dnssec', 'dnssec',
'status', 'status',
'ports', 'ports',
'screenshot',
'txt-records', 'txt-records',
'hsts',
'whois',
'features', 'features',
'carbon', 'carbon',
'headers', 'trace-route',
] as const; ] as const;
export const initialJobs = jobNames.map((job: string) => { export const initialJobs = jobNames.map((job: string) => {

View File

@ -231,6 +231,19 @@ const docs: Doc[] = [
], ],
screenshot: 'https://i.ibb.co/Mk1jx32/wc-server.png', 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", id: "whois",
title: "Domain Info", title: "Domain Info",