Bypass DDOS Guard's scraper shield with Node.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
aria 0a3e9b280f
bump
8 months ago
.gitignore first version 2 years ago
LICENSE Initial commit 2 years ago
README.md v1.0.3 - way better 8 months ago
fakeMark.json fix for mark not working 8 months ago
index.js fix breaking bug 8 months ago
package-lock.json fix for mark not working 8 months ago
package.json bump 8 months ago
test.js v1.0.3 - way better 8 months ago

README.md

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.