websec-audit
Version:
A universal security scanning and audit tool for websites
22 lines (21 loc) • 548 B
TypeScript
import { Scanner } from '../types';
export interface BlacklistResult {
status: {
blacklisted: boolean;
platform: string;
threats: string[];
}[];
overallStatus: {
blacklisted: boolean;
platformsChecked: string[];
threatTypes: string[];
};
issues: {
severity: 'high' | 'medium' | 'low' | 'info';
description: string;
}[];
}
/**
* Check if a website is blacklisted in Google Safe Browsing
*/
export declare const checkBlacklistStatus: Scanner<BlacklistResult>;