Why a Client Web Portal is Better Than Excel and Emails
Still managing clients in Excel? Discover how a custom web portal can save you time, reduce errors, and improve client satisfaction.

2,200 third-party scripts. That's the average Cloudflare sees running on a single enterprise domain.
Most companies can name maybe five of them. Google Analytics, sure. Maybe the chat widget. The payment gateway. After that, it gets murky. But every one of those scripts runs in your customer's browser with the same permissions as your own code. They can read forms. They can send data anywhere. And your server never sees it, because your server only knows what happens on the server.
Magecart-style attacks have worked the same way for years. An attacker doesn't need to break into your site. They compromise a library that one of your third-party scripts depends on (a chat widget dependency, an analytics SDK, a payment form module). They add a few lines of JavaScript that silently copies payment form data to an external server.
No downtime. No error pages. The customer pays normally. The only difference is someone else now has their card number and CVV.
The same principle applies to credential theft (modified scripts reading login forms), session hijacking, redirecting selected visitors to phishing pages, or even cryptojacking, where the visitor's browser mines cryptocurrency. The site is slower, but it "works."
In every one of these cases the website looks fine. You find out from a fraud report from your acquiring bank. Or you don't find out at all.
On March 30, 2026, Cloudflare made its Advanced Client-Side Security feature available to all customers. It used to be enterprise-only. Now anyone with a domain behind Cloudflare can turn it on.
Their system scans 3.5 billion JavaScript scripts daily, using graph neural networks (GNN) alongside large language models. The GNN maps relationships between scripts and flags behavioral anomalies. The LLM layer then judges whether a flag is a real threat or a false positive.
That second layer is the interesting part. It cut false positives by a factor of 200 compared to previous methods, from 0.3% to 0.1% overall, and from 1.39% to 0.007% on unique scripts. That's the difference between a tool that cries wolf constantly and one you can actually leave on.
Detection tools have had the same problem for years. Too many false alerts, so teams stop reading them, and eventually switch them off. If Cloudflare's numbers hold up in production (and with 3.5 billion scripts a day, the sample is large enough to mean something), this changes the cost-benefit calculation for client-side monitoring.
Even without Cloudflare, two things should be in place on any site that handles logins or payments:
Content Security Policy (CSP), an HTTP header that tells the browser which domains can serve scripts. If a script loads from an unauthorized source, the browser blocks it. The catch is that most sites have no CSP at all. Those that do often use unsafe-inline or unsafe-eval, which defeats the purpose. And CSP isn't set-and-forget, every new widget, every analytics change, every payment integration modifies it.
Subresource Integrity (SRI), a hash attached to external script tags. If the script content changes (say, after a CDN compromise), the browser refuses to run it. Simple, effective for static dependencies.
Start by opening DevTools in your browser, going to the Network tab, and counting how many external domains your site contacts. That number is usually higher than anyone expects.
For the broader cybersecurity picture, we've written about how AI is changing phishing and deepfake attacks and about phishing campaigns currently targeting Slovak companies. On the infrastructure side, CI/CD pipeline security is a related concern.
If your site runs third-party scripts, and it does, it's worth knowing what they're doing. We can run a security check and set up CSP properly.
Still managing clients in Excel? Discover how a custom web portal can save you time, reduce errors, and improve client satisfaction.

Choose a first automation by scoring the work, data, risk, ownership, and reversibility. Then validate one pilot before you expand it.
Your enterprise clients will start sending NIS2 compliance questionnaires. Here's what software companies need to know about security baselines, incident response, and supply chain obligations.