UNPKG

padding-oracle-attacker

Version:

CLI tool and library to execute padding oracle attacks easily

13 lines (12 loc) 384 B
/// <reference types="node" /> import { OracleResult, OracleCallerOptions } from './types'; declare const OracleCaller: (options: OracleCallerOptions) => { networkStats: { count: number; lastDownloadTime: number; bytesDown: number; bytesUp: number; }; callOracle: (payload: Buffer) => Promise<OracleResult>; }; export default OracleCaller;