domainlooker
Version:
🕵️ Mission-critical domain intelligence gathering tool with spy-themed interface. Comprehensive WHOIS, DNS, SSL, network analysis, subdomain discovery, and API-ready JSON exports.
88 lines • 2.01 kB
TypeScript
export interface DomainInfo {
domain: string;
whois?: WhoisData;
dns?: DNSData;
ssl?: SSLData;
security?: SecurityData;
network?: NetworkData;
subdomains?: SubdomainData;
}
export interface SubdomainData {
subdomains: string[];
sources: {
dnsEnumeration: string[];
certificateTransparency: string[];
commonNames: string[];
};
totalFound: number;
}
export interface WhoisData {
registrar?: string;
registrationDate?: string;
expirationDate?: string;
nameServers?: string[];
registrantCountry?: string;
status?: string[];
}
export interface DNSData {
a?: string[];
aaaa?: string[];
mx?: Array<{
priority: number;
exchange: string;
}>;
ns?: string[];
txt?: string[];
cname?: string[];
soa?: {
primary: string;
admin: string;
serial: number;
refresh: number;
retry: number;
expiration: number;
minimum: number;
};
}
export interface SSLData {
issuer?: string;
subject?: string;
validFrom?: string;
validTo?: string;
fingerprint?: string;
serialNumber?: string;
signatureAlgorithm?: string;
keySize?: number;
isValid?: boolean;
daysUntilExpiry?: number;
}
export interface SecurityData {
threatLevel?: 'LOW' | 'MEDIUM' | 'HIGH' | 'CRITICAL';
blacklisted?: boolean;
malwareDetected?: boolean;
phishingRisk?: boolean;
reputation?: number;
}
export interface NetworkData {
openPorts?: number[];
services?: Array<{
port: number;
protocol: string;
service: string;
version?: string;
}>;
location?: {
country: string;
city: string;
coordinates?: [number, number];
};
}
export interface InspectionOptions {
verbose?: boolean;
quick?: boolean;
banner?: boolean;
exportCsv?: string;
exportJson?: string;
subdomains?: boolean;
}
//# sourceMappingURL=index.d.ts.map