Bypass DDOS Guard's scraper shield with Node.
Go to file
aria 0a3e9b280f
bump
2022-08-17 11:01:04 -04:00
.gitignore first version 2021-07-28 23:31:17 -04:00
fakeMark.json fix for mark not working 2022-08-05 08:44:13 -04:00
index.js fix breaking bug 2022-08-17 11:00:02 -04:00
LICENSE Initial commit 2021-07-28 19:14:32 -07:00
package-lock.json fix for mark not working 2022-08-05 08:44:13 -04:00
package.json bump 2022-08-17 11:01:04 -04:00
README.md v1.0.3 - way better 2022-08-01 02:59:00 -04:00
test.js v1.0.3 - way better 2022-08-01 02:59:00 -04:00

ddos-guard-bypass

Bypass DDOS Guard's scraper shield with Node.

example

const dg = require("@cantfindkernel/ddos-guard-bypass");
const axios = require("axios");

(async function() {
  let ddgu = await dg.bypass(`https://ddos-guard.net/en`);
  let resp = await axios({
    url: `https://ddos-guard.net/en`,
    headers: ddgu.headers,
  });
  console.log(resp.status) // 200 or 403
})();

You can see an example here.

not working?

Submit an issue with the URL you are requesting or a PR to contribute.