@hashangit/breachhound
Version:
An efficient OSINT tool for uncovering digital footprints associated with a username. TypeScript port of GoSearch.
11 lines (10 loc) • 598 B
TypeScript
import { BreachHoundResults } from '../lib/types';
export declare const ASCII_ART = "...";
export declare const VERSION = "1.0.0";
export declare function printHeader(username: string, siteCount: number, options: {
hideFalsePositives: boolean;
breachDirectoryEnabled: boolean;
}): void;
export declare function appendToFile(targetUsername: string, content: string): Promise<void>;
export declare function deleteOldFile(targetUsername: string): Promise<void>;
export declare function displayResults(results: BreachHoundResults, username: string, hideFalsePositives: boolean): Promise<void>;