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;
|
|
|
|
registeredAt: Date;
|
|
|
|
expiresAt: Date;
|
|
|
|
};
|
2023-04-10 12:04:13 +00:00
|
|
|
delegation: {
|
|
|
|
domainWithoutSuffix: string;
|
|
|
|
publicSuffix: string;
|
|
|
|
subdomain: string;
|
|
|
|
isIcann: boolean;
|
|
|
|
dnsSecEnabled: boolean;
|
|
|
|
};
|
|
|
|
phishingFlags: {
|
|
|
|
listName: string;
|
|
|
|
}[];
|
2023-04-03 12:41:09 +00:00
|
|
|
nameservers: string[];
|
|
|
|
aRecords: plugins.tsclass.network.IDnsRecord[];
|
|
|
|
aaaaRecords: plugins.tsclass.network.IDnsRecord[];
|
|
|
|
txtRecords: plugins.tsclass.network.IDnsRecord[];
|
2023-04-06 16:15:12 +00:00
|
|
|
mxRecords: plugins.tsclass.network.IDnsRecord[];
|
2023-04-03 12:41:09 +00:00
|
|
|
whoisServers: {
|
|
|
|
serverUrl: string;
|
|
|
|
content: string;
|
|
|
|
}[];
|
|
|
|
}
|