tags : System Design,Archival

FAQ

Good resources?

Headless non-headless

  • headless: no gui (eg. webscraping)
  • non-headless: gui, visual rendering (eg. if user needs to keep seeing what the automation does)

What are diff kinds of scraping bots?

This list i’ll keep updating

  • Sneaker bot: commonly referred to as a “shoe bot”, is a sophisticated software component designed to help individuals quickly purchase limited availability stock.

Enumeration

Discovery/mining

Orchestrating

Archiving

See Archival

Change detection

  • thp/urlwatch: Watch (parts of) webpages and get notified when something changes via e-mail, on your phone or via other means. Highly configurable.
  • paschmann/changd: Changd is a open source web monitoring application for monitoring visual site changes using screenshots, XPath’s or API’s.
  • dgtlmoon/changedetection.io: Has a browser ext. Sort of commercial even if oss.
  • visualping: commercial service

Reconnaissance

  • Basically examining the target
  • Also see Checklist & Best Practices

Post processing

Summarization

NLP tasks

Cleanup and parsing

Checklist & Best Practices

Checklist

  • Using something like wappalyzer find out tech used/projection used etc.
  • Does the website have an API (internal or exposed)?
  • Does it have some JSON inside the HTML? Eg. site might preload JSON payloads into the initial HTML for hydration.
  • Think beyond DOM scraping
    • Does it even need scraping or I can just make an API call
    • Does it include a static session header?
    • Does it include a dynamic session header?
    • Does it dump things to the heap that we can use objects from it?
  • If it’s DOM based scraping and we using Playwright, can we get around using codegen?
  • Is the data being served via iframe? in that case we check the source of the frame.
  • Does it makes certain requests only from mobile app? TODO: How do we catch these?
  • Is the data being rendered via canvas, so no DOM at all? Maybe tools shot-scraper, ishan0102/vimGPT, OpenAdapt,mayt/BrowserGPT can help?

Best practices

Sites with dynamic sessions

  • These usually need complex combination of temporary auth token headers which is difficult to do outside the context of the app/expire etc.
  • In these cases, we sort of would need to automate the task of “inspecting the network tab”. Application context can help. (See Page.setRequestInterception(), Network Events | Playwright)
  • Sometimes they may even be predictable in some way.

Sites with data in the runtime Heap

  • Eg. find the apollo client instance in memory, use it to get the data. Profit? (See adriancooney/puppeteer-heap-snapshot, this will work with playwright as-well because uses the CDP).
  • This can be slow but nice because even if the UI changes frequently, the underlying data-structure to store the data might not etc.

DOM based scraping

  • We try using playwright codegen if possible
  • Don’t use XPath&CSS selectors at all (Except if you don’t have choice). You rely on more generic stuff, e.g, “the button that has ‘Sign in’ on it”: await page.getByRole('button', { name: 'Sign in' }).click();

Other ideas

Antibot stuff

Antibot Protection

If anti-bot detects your fingerprint or you raise suspicion, you get captcha. Idea is to detect which anti-bot mechanism is at play and then use bypassing techniques when scraping. w some anti-bot tools, you may not even need to use headless browser, maybe just using rotating proxies will solve it.

Fingerprinting

See Anonymity

  • Passive

    This is usually not under your control. You can try changing devices etc.

    • TCP/IP: IPv4 and IPv6 headers, TCP headers, the dynamics of the TCP handshake, and the contents of application-level payloads. (See p0f)
    • TLS: The TLS handshake is not encrypted and can be used for finger printing.
    • HTTP : Special frames in the packet that differ by clients so that we can fingerprint the client etc. SETTINGS/WINDOW_UPDATE/PRIORITY for 2
  • Active

    In this case, the website tries to run certain tests back on you to check if your fingerprint matches and do whatever action it desires to based on that info

    • Canvas Fingerprinting: This may try to render something which may render differently in a personal computer vs a vm etc. WebGL Fingerprinting also works similarly.

Products offering protection

Antibot solutions

Proxy services

I’ll just say that firefox still runs tampermonkey, and that includes firefox mobile, so depending on how often you need a different IP and how much data you’re getting, you might be able to do away with the whole idea of proxies and just have a few mobile phones that can be configured as workers that take requests through a tampermonkey script. Or that a laptop tethers to that does the same, or that runs puppeteer itself. It depends on whether a worker needs a new IP every few minutes, hours or days as to whether a real mobile phone works (as some manual interaction is often required to actively change the IP). - kbenson

  • Residential/Mobile
  • 4G rotating proxies??

Captcha solvers

Obfuscate fingerprint

  • May require playing w JS
  • Manage cookies/headers
  • Crack backend APIs and so on.

Other configs

  • There are always specific config that you’ll need to trial and error. eg. some sites might not like headless, so you gotta scrape with no-headless or something similar

Pre-made solutions

  • These usually do the job of Proxy services + Obfuscating fingerprints
  • Bright data, Zyte API, Smart Proxy and Oxylabs Web Unlocker

Tools

Ready2Go Solutions

NameUSPUse
BrightDataBuilt for devsCustom public scrapers
DiffbotStructured data extractions & datasetsMarket research, public data extraction
ApifyNo code?
OctoparseNo code?
ScrapingBeeManages headless browsers for you
zytescrapinghub renamed to zyte, they maintain scrapy
SerpAPIGoogle search as API

Social Media

Twitter

Reddit

YT

Other tools

Crawlee Primer

  • currently supports 3 main crawlers
  • There’s request and requestQueue that crawlee offers. These are low level
  • Every crawler has an implicit RequestQueue instance, and you can add requests to it with the crawler.addRequests() method.

Resources

War stories

  • So… I built a Browser Extension to grab the data at a speed that is usually under their detection rate. Basically created a distributed scraper and passed it out to as many people in the league as I could.
    • I found that tampermonkey is often much easier to deal with in most cases and also much quicker to develop for
    • some sites can block ‘self’ origin scripts by leaving it out of the CSP and only allowing scripts they control served by a CDN

Others