import { Context } from "../../agent/Context"; import { InterceptorResult } from "../../agent/hooks/InterceptorResult"; /** * This function goes over all the different input types in the context and checks * if it possibly implies SSRF, if so the function returns an InterceptorResult */ export declare function checkContextForSSRF({ hostname, port, operation, context, }: { hostname: string; port: number | undefined; operation: string; context: Context; }): InterceptorResult;