INCIDENT RESPONSE

Kiteworks Tells Customers to Go Dark for 9 Hours on a Federal Tip

Kiteworks, formerly Accellion, has asked customers to shut down their systems for nine hours this weekend. Federal intelligence authorities told the company a threat actor may target some Kiteworks systems.

Matt Lucas  |  September 26, 2026  |  5 min
Editorial hero illustration
9 hours
Recommended shutdown window
9.5.1
Release addressing all known vulns
0
Confirmed customer compromises
8
Subsidiaries stated as unaffected
TL;DR
  • What: Kiteworks asked customers to shut down their systems for nine hours this weekend after federal intelligence authorities warned that a threat actor may target some Kiteworks systems.
  • Impact: No compromise has been confirmed, but customers lose their secure file transfer service for the whole window, and the company has not named the agency, the actor, or the attack vector.
  • Fix / mitigation: Follow the shutdown window in the Kiteworks customer email and upgrade to release 9.5.1, which Kiteworks says addresses all known vulnerabilities.
  • Who's at risk: Organizations running Kiteworks systems; Kiteworks says its subsidiaries Zivver, DRACOON, totemo, ownCloud, WAMNET, Maytech, Bonfy.ai, and 123FormBuilder are not affected.

This weekend, Kiteworks asked its customers to do something vendors almost never ask: switch off the product for nine hours. The company, formerly known as Accellion, says federal intelligence authorities gave it credible threat intelligence that a threat actor may attempt to target some Kiteworks systems. It has not found a breach, identified a victim, or named a CVE. It has a warning, and it is asking customers to take an outage because of it.

For the security teams affected, this means a weekend change window they did not plan, a business service that goes offline, and a decision to make on limited information. For everyone else, the episode shows what happens when threat intelligence arrives before the exploit does.

What Kiteworks has said

Frank Balonis, Chief Information Security Officer at Kiteworks, described the action as precautionary: "Kiteworks received credible threat intelligence from federal intelligence authorities indicating that a threat actor may attempt to target some Kiteworks systems. Out of an abundance of caution, we notified customers directly and recommended a precautionary shutdown window while we continue to work through the matter with federal intelligence authorities."

The company says it has found no evidence that any customer system has been compromised, and describes the advisory as preventative rather than a response to a confirmed attack. Customers received an email listing the specific hours of the recommended nine-hour window. Kiteworks also says release 9.5.1 addresses all known vulnerabilities and recommends that customers apply it. According to the company, its subsidiaries Zivver, DRACOON, totemo, ownCloud, WAMNET, Maytech, Bonfy.ai, and 123FormBuilder are not affected. German publication Heise first reported the story, and The Hacker News carried it on September 26, 2026.

What is still unknown

Kiteworks has not said which agency alerted it, who the threat actor is, or which component or vulnerability the actor might target. Customers are being asked to act on a warning they cannot independently check. Plan for a known outage and assume the threat details will not be shared.

Why this vendor, and why it matters

This is not a vendor without history. In late 2020 and early 2021, the Clop threat actor, also tracked as UNC2546, exploited multiple zero-day vulnerabilities in the company's file transfer program to run a data theft and extortion campaign against high-profile organizations. Managed file transfer platforms concentrate sensitive documents from many business units, sit at the network edge, and are built to talk to outside parties. That makes them among the most valuable single targets in an enterprise.

When a federal agency warns a file transfer vendor, and the vendor responds by asking the whole customer base to go offline instead of just patching, it signals that the vendor is not sure the current patch covers whatever is coming. The source does not state this outright. It is the plain reading of a patch-plus-shutdown recommendation.

The RedEye take

Kiteworks made the right call, and the industry should say so. Vendors are usually rewarded for staying quiet and punished for sounding the alarm. A company that has been through a Clop campaign has every reason to downplay an unconfirmed tip. Instead, it contacted customers directly, gave them a defined window, and pointed to a specific release. That is how pre-emptive disclosure should work.

The gap is attribution and scope. "Some Kiteworks systems" leaves every customer to assume they are included. A warning with no actor, no vector, and no indicators puts the full cost of caution on customers and gives them nothing to hunt with. We understand that federal sources often restrict what can be shared. Even so, customers need at least one indicator or a targeting criterion to judge their own risk, and we expect Kiteworks to publish more once the window closes. Until then, treat this as a credible threat to your edge and follow the recommendation.

What defenders should learn

This weekend's checklist

Confirm you received the Kiteworks customer email with the exact hours. Verify the host is actually unreachable from the internet during the window. Upgrade to 9.5.1 before you bring it back. Keep firewall logs for the whole window.

Bottom line

A nine-hour outage costs something you can measure. A repeat of 2021 would cost far more. Kiteworks has asked customers to accept a small loss to avoid a possibly large one, based on intelligence they cannot see. Take the outage, patch during it, and use the quiet window to collect the evidence the vendor has not yet published.

Source: The Hacker News, "Kiteworks Urges Customers to Shut Down Systems for 9 Hours Over Possible Cyber Attack," September 26, 2026, first reported by Heise.

Fix It Yourself

Everything above is what happened. This is what to run. The check commands change nothing.

Check whether you are exposed

Confirm your Kiteworks hostname resolves publicly (replace with your host); read only

dig +short kiteworks.yourco.com

See whether the service still answers from outside during the shutdown window; read only

curl -skI --max-time 10 https://kiteworks.yourco.com/ | head -5

Check whether TCP 443 is reachable; a refused or timed out result means the host is dark

nc -zv -w5 kiteworks.yourco.com 443

Close it

The source gives no upgrade CLI: apply release 9.5.1 through the Kiteworks admin console or your vendor upgrade process, then confirm the version there before reopening

echo 'Upgrade to Kiteworks 9.5.1 via the vendor documented process, then verify version in admin console'

Containment on a Linux edge firewall: drop inbound 443 to the appliance for the window (replace 203.0.113.10 with your appliance IP; remove with -D afterward)

sudo iptables -I FORWARD -d 203.0.113.10 -p tcp --dport 443 -j LOG --log-prefix 'KW-DARK ' && sudo iptables -I FORWARD 2 -d 203.0.113.10 -p tcp --dport 443 -j DROP

Prompts for the agent you already run

Before the shutdown window, to inventory exposure

Find every Kiteworks instance in our environment. Search DNS zone files, load balancer and reverse proxy configs (nginx, HAProxy, F5), and firewall NAT rules for hostnames or backend pools containing 'kiteworks' or 'accellion'. For each one, list the hostname, public IP, internal IP, and whether TCP 443 is reachable from the internet, using read-only commands such as dig and nc -zv. Show each command you run and its output. Do not change any config, firewall rule, or service state. Stop and give me the table.

After the window closes, to hunt for prior probing

Review the web access logs for our Kiteworks appliance and the reverse proxy in front of it for the last 30 days. Group requests by source IP, list IPs seen for the first time, IPs with high 4xx or 5xx rates, and any requests to admin or API paths from outside our partner allowlist. Separately, list every source IP that tried to connect to the appliance on 443 during the shutdown window (firewall log prefix KW-DARK). Show the queries or commands you ran. Do not block, delete, or modify anything; stop and report findings.

What to alert on

Alert on firewall or edge flow logs (for example, a destination IP of the Kiteworks appliance, destination port 443, and action drop or reset) for any inbound connection attempt during the vendor-recommended shutdown window. Once the service is offline, legitimate users have no reason to connect, so every source IP in that set is either a partner integration you need to fix or reconnaissance. After the window, correlate those source IPs against the appliance's web access logs (client IP and request path fields) from the previous 30 days, and escalate any match that touched admin or API endpoints.

Questions about your exposure?

RedEye Security provides assessments for organizations that need to understand their real risk.

Talk to us