@cantfindkernel/ddos-guard-bypass
v1.0.6
Published
Bypass DDOS Guard's scraper shield with Node.
Downloads
30
Maintainers
Readme
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.