3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-25 10:25:01 +00:00

Update data type

This commit is contained in:
RedSpid3r 2021-12-23 23:16:19 +00:00 committed by GitHub
parent fba346c0b5
commit 1464788726
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,30 +3,6 @@ export interface PhishermanUnknownDomain {
} }
export interface PhishermanDomainInfo { export interface PhishermanDomainInfo {
status: string;
lastChecked: string;
verifiedPhish: boolean; verifiedPhish: boolean;
classification: "safe" | "malicious"; classification: "safe" | "malicious";
created: string;
firstSeen: string | null;
lastSeen: string | null;
targetedBrand: string;
phishCaught: number;
details: PhishermanDomainInfoDetails;
}
export interface PhishermanDomainInfoDetails {
phishTankId: string | null;
urlScanId: string;
websiteScreenshot: string;
ip_address: string;
asn: PhishermanDomainInfoAsn;
registry: string;
country: string;
}
export interface PhishermanDomainInfoAsn {
asn: string;
asn_name: string;
route: string;
} }