UNPKG

@hashangit/breachhound

Version:

An efficient OSINT tool for uncovering digital footprints associated with a username. TypeScript port of GoSearch.

7 lines (6 loc) 274 B
/** * Attempts to crack a password hash using the Weakpass API. * @param hash The hash string to crack. * @returns The cracked password string or null if not found or an error occurred. */ export declare function crackPasswordHash(hash: string): Promise<string | null>;