All Projects → FlareSolverr → FlareSolverrSharp

FlareSolverr / FlareSolverrSharp

Licence: MIT license
FlareSolverr .Net / Proxy server to bypass Cloudflare protection

Programming Languages

C#
18002 projects

Projects that are alternatives of or similar to FlareSolverrSharp

Flaresolverr
Proxy server to bypass Cloudflare protection
Stars: ✭ 241 (+288.71%)
Mutual labels:  chromium, cloudflare, puppeteer
pupflare
A webpage proxy that request through Chromium (puppeteer) - can be used to bypass Cloudflare anti bot / anti ddos on any application (like curl)
Stars: ✭ 183 (+195.16%)
Mutual labels:  chromium, cloudflare, puppeteer
Reactopt
A CLI React performance optimization tool that identifies potential unnecessary re-rendering
Stars: ✭ 1,975 (+3085.48%)
Mutual labels:  chromium, puppeteer
Phantomas
Headless Chromium-based web performance metrics collector and monitoring tool
Stars: ✭ 2,191 (+3433.87%)
Mutual labels:  chromium, puppeteer
Chromium for spider
dynamic crawler for web vulnerability scanner
Stars: ✭ 220 (+254.84%)
Mutual labels:  chromium, puppeteer
Puppeteer Sharp
Headless Chrome .NET API
Stars: ✭ 2,122 (+3322.58%)
Mutual labels:  chromium, puppeteer
Google Meet Scheduler
😴 Attends classes for you.
Stars: ✭ 150 (+141.94%)
Mutual labels:  chromium, puppeteer
Chrome Aws Lambda
Chromium Binary for AWS Lambda and Google Cloud Functions
Stars: ✭ 2,502 (+3935.48%)
Mutual labels:  chromium, puppeteer
clusteer
Clusteer is a Puppeteer wrapper written for Laravel, with the super-power of parallelizing pages across multiple browser instances.
Stars: ✭ 81 (+30.65%)
Mutual labels:  chromium, puppeteer
playwright-demos
playwright for scrapping and UI testing / automate testing workflows
Stars: ✭ 65 (+4.84%)
Mutual labels:  chromium, puppeteer
simplechrome
Webrecorders DevTools Protocol Automation Library
Stars: ✭ 16 (-74.19%)
Mutual labels:  chromium, puppeteer
Wendigo
A proper monster for front-end automated testing
Stars: ✭ 121 (+95.16%)
Mutual labels:  chromium, puppeteer
Pyppeteer
Headless chrome/chromium automation library (unofficial port of puppeteer)
Stars: ✭ 1,286 (+1974.19%)
Mutual labels:  chromium, puppeteer
Secret Agent
The web browser that's built for scraping.
Stars: ✭ 151 (+143.55%)
Mutual labels:  chromium, puppeteer
Puppeteer Docs Zh Cn
Google Puppeteer 文档的中文版本 , 目标版本 1.9.0, 翻译中...
Stars: ✭ 61 (-1.61%)
Mutual labels:  chromium, puppeteer
Headless Chrome Crawler
Distributed crawler powered by Headless Chrome
Stars: ✭ 5,129 (+8172.58%)
Mutual labels:  chromium, puppeteer
Webster
a reliable high-level web crawling & scraping framework for Node.js.
Stars: ✭ 364 (+487.1%)
Mutual labels:  chromium, puppeteer
Puppetron
Puppeteer (Headless Chrome Node API)-based rendering solution.
Stars: ✭ 429 (+591.94%)
Mutual labels:  chromium, puppeteer
throughout
🎪 End-to-end testing made simple (using Jest and Puppeteer)
Stars: ✭ 16 (-74.19%)
Mutual labels:  chromium, puppeteer
LInkedIn-Reverese-Lookup
🔎Search LinkedIn profile by email address📧
Stars: ✭ 20 (-67.74%)
Mutual labels:  chromium, puppeteer

FlareSolverrSharp

Latest version NuGet downloads GitHub issues GitHub pull requests Donate PayPal Donate Bitcoin Donate Ethereum

FlareSolverr .Net DelegatingHandler / interceptor. FlareSolverr is a proxy server to bypass Cloudflare protection.

Installation

Full-Featured library:

PM> Install-Package FlareSolverr

Dependencies

You need a running FlareSolverr service.

Issues

Cloudflare regularly modifies their protection challenge and improves their bot detection capabilities.

If you notice that the anti-bot page has changed, or if library suddenly stops working, please create a GitHub issue so that I can update the code accordingly.

Before submitting an issue, just be sure that you have the latest version of the library.

Usage

A DelegatingHandler that handles the challenge solution automatically.

A type for HTTP handlers that delegate the processing of HTTP response messages to another handler, called the inner handler.

It checks on every request if the clearance is required or not, if required, it solves the challenge in background then returns the response.

Websites not using Cloudflare will be treated normally. You don't need to configure or call anything further, and you can effectively treat all websites as if they're not protected with anything.

var handler = new ClearanceHandler("http://localhost:8191/")
{
    MaxTimeout = 60000,
    ProxyUrl = "http://127.0.0.1:8888"
};

var client = new HttpClient(handler);
var content = await client.GetStringAsync("https://uam.hitmehard.fun/HIT");
Console.WriteLine(content);

Full example here

Options

FlareSolverr Service API

You have to set the FlareSolverr service API in the ClearanceHandler constructor. If you set an empty or null endpoint, FlareSolverrSharp will be able to detect challenges, but it will not be able to solve them.

Example: http://localhost:8191/

MaxTimeout

Max timeout to solve the challenge.

MaxTimeout should be greater than 15000 (15 seconds) because starting the web browser and solving the challenge takes time.

Example: 60000

ProxyUrl

The ProxyUrl which will be sent to FlareSolverr.

Example: http://127.0.0.1:8888

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].