justoverclockl / justoverclockl/ihbp-client

Puppeteer can't bypass CloudFlare turnstile

Open
#2 0 comments 0 reactions 0 assignees View on GitHub
enhancement help wanted
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.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.