Launch HN: Intuned (YC S22) – Build and run reliable browser automations as code
41–50 of 76 posts
Re: Launch HN: Intuned (YC S22) – Build and run reliable browser automations as code
#42Re: Launch HN: Intuned (YC S22) – Build and run reliable browser automations as code
#43Re: Launch HN: Intuned (YC S22) – Build and run reliable browser automations as code
#44For auth, how does this handle things like 2FA or cases where, for first login from a new IP/whatever, there's an extra verification step (email, etc)
Re: Launch HN: Intuned (YC S22) – Build and run reliable browser automations as code
#45Re: Launch HN: Intuned (YC S22) – Build and run reliable browser automations as code
#46Is this a bet that Computer Use models don't get better and cheaper?
If you think about "price", "speed" and "accuracy (reliability/quality)", our bet is that models won't hit those 3 together. So you won't get a model that is very fast, very cheap and very accurate anytime soon. Also, imagine that you have a case where you want to scrape 10,000 records from a website, why have AI navigate to every page to do this? why not write the code, run it, and get consistent and fast result? it…
Generalized computer use is what will ultimately solve this, but I think there’s real intermediate value in optimizing browser workflows specifically, as a medley of remote browser automation and multi-modal browser use.
Re: Launch HN: Intuned (YC S22) – Build and run reliable browser automations as code
#47Earlier quoted context omitted.
Great question - we tried so many things and overtime, we ended up doing 2 things - custom chromium build and extension to solve captchas. In our docs, checkout stealth mode - https://intunedhq.com/docs/main/02-features/stealth-mode-cap... Also, one of our engineers did a write up on bot detection systems and how they work - https://intunedhq.com/blog/how-bot-detection-works
This never made it into prod since the scale was small, but one of the favorite leaks I found when working on bot detection was browsers which generated the same random numbers. Presumably because they were being init to the same VM snapshot and therefore the same random number state.
p.s. I've added this comment to https://news.ycombinator.com/highlights. I mention this so more people might learn that it exists and hopefully send us nominations!
Re: Launch HN: Intuned (YC S22) – Build and run reliable browser automations as code
#48Really cool! I was reading the blog post about bot detection with browsers. The first layer being the IP address of the browser. One rather unique scenario I've been trying to work out for a scraper is eliminating network latency. My use of the site is enhanced by the request from the browser having the lowest RTT latency to the webserver as possible. This means being in the same cloud provider. To do this right now…
Hi Bronco, Omar here, a Lead Platform Engineer at Intuned. > I've tried adding browser automation outside of the single click from the extension, and I'm immediately met with bot detection. Can you explain how you write your automation? How do you do the click from the extension? Do you use CDP input commands to perform the click (`Input.dispatchMouseEvent`), or do you execute JS code and click the button using `elem…
While I understand that not every business wants automation on their site, I know some businesses are totally open to it. But from a technical perspective, it's very difficult to allow well-behaved browser automation while still blocking abusive bots. Web Bot Auth gives website owners / security vendors a lightweight way to allow providers like Intuned.
(I work on the Web Bot Auth implementation for Stytch, now a part of Twilio: https://stytch.com/blog/stytch-supports-web-bot-auth/ )