Skip to main content
Piloterr
Back to blog
July 2, 2026

Migrating from NetNut: what to do after the network takedown

On July 2, 2026, Google announced action against the NetNut residential proxy network (also known as Popa), in coordination with the FBI and Lumen. The company says it disabled accounts and services tied to malware command-and-control operations, and shared technical intelligence with law enforcement and industry partners.

According to Google, the action removed millions of devices from the operator's available pool. Reuters, via Zonebourse, covers the operation.

If NetNut sat in your stack for web scraping, price monitoring, or OSINT collection, now is the time to assess the impact on your pipelines and plan a migration.

Context

NetNut sold rotating residential, ISP, mobile, and datacenter proxies. A subsidiary of Alarum Technologies (Israel, founded 2017), it was used by teams that paired an IP pool with their own scraping code.

Residential proxy networks have legitimate uses, but they are also regularly abused to hide malicious traffic. That tension explains why major platforms keep tightening enforcement, and why a proxy network can vanish overnight and take your pipeline with it.

Likely impact on your stack

Without assuming anything about your specific use case, teams on NetNut typically see the following in this kind of situation:

  • Higher error rates and timeouts
  • Instability on routes still active
  • Increased blocking on target sites, as network IPs get flagged

Even for compliant use, maintaining the proxy + anti-bot layer yourself gets expensive when the provider collapses.

What the investigation highlights

Researchers documented the link between Popa and NetNut. One summarized the industry takeaway:

If you take short cuts building your proxy network, there are criminal consequences. Huge shout out to all of the researchers that linked Popa to Netnut and the criminal conspiracy to build a large residential proxy pool. All proxy providers should be careful with their SDK and where it might land.

For data teams, the practical lesson: outsourcing collection to an API that handles proxies, fingerprinting, and anti-bot internally reduces your exposure to a third-party IP pool.

How to migrate

1. Inventory your use cases

Use caseUnderlying need
E-commerce scrapingStructured data, anti-bot handling
SERP monitoringIndexed pages, geo context
JavaScript sitesFull DOM rendering
Protected sites (Cloudflare, DataDome…)Reliable unblocking

Often the goal is not "a residential pool" per se, but reliable access to data.

2. Pick the right Piloterr mode

Piloterr does not sell proxies. We offer managed scraping APIs. Three products cover most cases:

ProductWhen to use it
Scraper APIs (400+ endpoints)Ready-made structured data (Amazon, LinkedIn, SERP, e-commerce…)
Website RenderingJavaScript pages, selector waits, rendered HTML
Website WebUnlockerHardened anti-bot targets (Cloudflare, DataDome, PerimeterX…)

Proxies, IP rotation, and bypass are handled on Piloterr's side. You do not buy or configure a proxy gateway.

To choose between Crawler, Rendering, and WebUnlocker, see our comparison guide.

3. Replace the proxy with an API call

Before: HTTP request + NetNut proxy + custom parsing.

After: dedicated endpoint or rendering, depending on the site.

Structured endpoint (e.g. e-commerce product):

Python
import requests

response = requests.get(
    "https://api.piloterr.com/v2/lidl/product",
    headers={"x-api-key": "YOUR-API-KEY"},
    params={"query": "100397447", "region": "fr"},
    timeout=30,
)
data = response.json()

Generic JavaScript page:

Python
import requests

response = requests.get(
    "https://api.piloterr.com/v2/website/rendering",
    headers={"x-api-key": "YOUR-API-KEY"},
    params={"query": "https://example.com/page", "wait_in_seconds": 10},
    timeout=60,
)
html = response.text

Protected site: use WebUnlocker (allowlisted domain).

In summary

  • Google's action permanently degrades the NetNut network: plan the migration now.
  • If you scraped via DIY proxies, consider a Scraper API, JS rendering, or WebUnlocker instead of shopping for another proxy vendor.
  • Fewer moving parts, less risk that a compromised IP pool takes down prod.

Questions? Contact us or browse the API library.

More to read

Guides and news about web scraping, proxies, and data extraction.

Scraping

€17.99 in France, €29.99 in Germany: monitoring prices by country

Same ERP reference, different prices by country: promos, currencies, and assortment vary from one shop to the next. Data model, API examples, and a Python script for reliable price monitoring.

Josselin Liebe
Josselin Liebe
Read
Scraping

Best Leboncoin Scraper 2026

Piloterr vs Apify vs lobstr.io for Leboncoin scraping in 2026. Pricing, endpoints, and product data verified from official sources on June 29, 2026 — including the legal gap between public and authenticated scraping.

Josselin Liebe
Josselin Liebe
Read
Scraping

How to Scrape Company Salary Data with Python

Learn to scrape Comparably salary data with Python and Piloterr. Complete tutorial with code, Angular handling, and structured JSON extraction.

Josselin Liebe
Josselin Liebe
Read

Ready to get started?

Your web scraping API is one click away. Start with +500 credits, no infrastructure to set up, no proxies to manage, and no credit card required.

  • +500 credits
  • No credit card required
  • All endpoints included