UNPKG

axios-ddos-guard-bypass

Version:

Library to bypass DDoS Guard protection (https://ddos-guard.net/en) using Node and Axios.

9 lines (8 loc) 248 B
import type { AxiosInstance } from 'axios'; import { CookieJar } from 'tough-cookie'; declare module 'axios' { interface AxiosRequestConfig { jar?: CookieJar; } } export declare function ddosGuardBypass(axios: AxiosInstance): void;