2023-04-03 12:41:09 +00:00
|
|
|
import * as plugins from '../ul-interfaces.plugins.js';
|
|
|
|
|
|
|
|
export interface IDomainSnapshot {
|
2023-04-10 12:09:21 +00:00
|
|
|
registration: {
|
|
|
|
isRegistered: boolean;
|
2023-04-17 11:56:55 +00:00
|
|
|
updatedDate: number;
|
|
|
|
createdDate: number;
|
2023-04-17 11:54:47 +00:00
|
|
|
expiryDate: number;
|
2023-04-10 12:09:21 +00:00
|
|
|
};
|
2023-04-10 12:04:13 +00:00
|
|
|
delegation: {
|
|
|
|
domainWithoutSuffix: string;
|
|
|
|
publicSuffix: string;
|
|
|
|
subdomain: string;
|
|
|
|
isIcann: boolean;
|
|
|
|
dnsSecEnabled: boolean;
|
|
|
|
};
|
|
|
|
phishingFlags: {
|
|
|
|
listName: string;
|
|
|
|
}[];
|
2023-04-19 18:40:21 +00:00
|
|
|
recordScans: {
|
|
|
|
identifier: string;
|
|
|
|
nameservers: string[];
|
|
|
|
aRecords: plugins.tsclass.network.IDnsRecord[];
|
|
|
|
aaaaRecords: plugins.tsclass.network.IDnsRecord[];
|
|
|
|
txtRecords: plugins.tsclass.network.IDnsRecord[];
|
|
|
|
mxRecords: plugins.tsclass.network.IDnsRecord[];
|
|
|
|
specialRecords: {
|
|
|
|
dmarc: plugins.tsclass.network.IDnsRecord[];
|
|
|
|
}
|
|
|
|
}[]
|
2023-04-03 12:41:09 +00:00
|
|
|
whoisServers: {
|
|
|
|
serverUrl: string;
|
|
|
|
content: string;
|
|
|
|
}[];
|
2023-04-17 11:48:32 +00:00
|
|
|
}
|