justoverclockl / justoverclockl/ihbp-client
Puppeteer can't bypass CloudFlare turnstile
- Dominant language
- TypeScript
- Stars
- 0
- Forks
- 0
- PR merge metrics
- No merged PRs in 30d
Description
At moment, puppeteer is not able to bypass CloudFlare turnstile if we are using the isEmailPwned method
`await ihbp.isEmailPwned('testemail@gmail.com')`
at moment we are using the puppeteer stealth plugin without success.
```javascript
private async initializeBrowser(): Promise {
try {
this.browser = await puppeteer
.use(StealthPlugin())
.launch(this.puppeteerOptions)
const pages: Page[] = await this.browser.pages()
this.page =
pages.length > 0 ? pages[0] : await this.browser.newPage()
if (this.browser && this.page) {
this.emit('client ready')
}
} catch (error) {
this.emit('client crashed')
throw error
}
}
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.