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.
|
8 months ago | |
---|---|---|
.gitignore | 2 years ago | |
LICENSE | 2 years ago | |
README.md | 8 months ago | |
fakeMark.json | 8 months ago | |
index.js | 8 months ago | |
package-lock.json | 8 months ago | |
package.json | 8 months ago | |
test.js | 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.