The site I want to login/post has cloudflare protection it basically detects if you’re a bot when I use HTTP Request node in n8n but I don’t get cloudflare challenge if I use a browser. Is there any free tools that can bypass bot detection? I tried using the community node n8n-nodes-camoufox but it seems to have connection issues connect ECONNREFUSED ::1:9222 any other community nodes I can use?
What is the error message (if any)?
Please share your workflow
(Select the nodes on your canvas and use the keyboard shortcuts CMD+C/CTRL+C and CMD+V/CTRL+V to copy and paste the workflow.)
The reason you are encountering these issues is that Cloudflare does not just look at your “User-Agent” header; it performs TLS Fingerprinting (checking how your network connection is established) and JavaScript Challenges (running code in a browser to prove you aren’t a script). The standard n8n HTTP Request node is a simple HTTP client with no browser engine, so it fails these tests immediately.
To fix this, you would typically need to launch a Camoufox or Chromium browser manually in your Ubuntu terminal with the remote debugging flag enabled:
# Example (actual command depends on your camoufox installation)
camoufox --remote-debugging-port=9222
If you don’t have the browser binary installed and running as a separate process, the node has nothing to connect to.
Another alternative is FlareSolverr
You need to install via docker