HomeTopicsThreat Modeling › What Attackers Want

What Attackers Actually Want from Your File Transfers

A file transfer server feels like an unlikely target. It is not a bank, not a customer database, not a hospital system — just a quiet box that moves files from one place to another. So when administrators are told to secure it, the honest inner response is often: secure it against whom, exactly? Who would bother?

The answer is: more parties than you would guess, for more reasons than you would guess, and most of them are not choosing you at all — they are choosing everyone. Any service that listens on the internet is being probed continuously by automated scanners, and file transfer services get special attention because of what they are: concentrated collections of data that somebody valued enough to move, guarded by credentials, sitting on the boundary between your network and the world.

This article decodes the motives. Understanding why attackers want your transfer service is the foundation of every defense decision that follows, because motive shapes method: an attacker who wants your files behaves differently from one who wants your bandwidth, and the logs they leave behind look different too. By the end, you will be able to look at your own server the way an attacker does — and know which defenses answer which motive. It is the opening article of our File Transfer Threat Modeling series, and everything else in the series builds on it.

Why File Transfer Services Make Attractive Targets

Before the individual motives, it helps to see why this class of service draws attention at all. Five properties do most of the work:

  • They concentrate curated data. Nobody sets up a transfer flow for worthless files. Payroll runs, invoices, orders, medical records, engineering drawings, database exports — a transfer server is a collection point for exactly the files an organization considers important enough to send somewhere. An attacker does not have to hunt through a whole network for the good material; the transfer service has already gathered it.
  • They are exposed by design. A partner-facing transfer endpoint must be reachable by outsiders — that is its job. You cannot simply firewall it away from the internet the way you can an internal database. Exposure is a permanent condition to be managed, not a mistake to be corrected.
  • They are easy to find. Transfer protocols live on well-known ports, and internet-wide scanning services catalog every reachable host continuously. Your server's address, open ports, and software version are almost certainly listed in public search indexes already. There is no hiding in obscurity.
  • They are often less watched. Email and web servers get security attention because everyone knows they are attacked. Transfer servers frequently run for years in a quiet corner, doing their job, with nobody reading the logs. Quiet corners are where intruders prefer to work.
  • They hold trust and credentials. A transfer server authenticates partners, stores or receives credentials, and produces files that downstream systems import without question. Compromising it does not just expose data — it inherits relationships.

With those properties in mind, the four motives below stop being abstract. Each one exploits a different property of the same machine.

The diagram below shows the four motives at a glance: the same transfer service, viewed by four different kinds of attacker, each after something different.

Your transfer service files · credentials · trust · bandwidth 1. Data theft steal the files themselves 2. Extortion staging a channel to move stolen data out 3. Pivot point a foothold into the rest of the network 4. Free infrastructure your disk, bandwidth, and reputation

Motive One: The Data Itself

The most direct motive is theft of the files. What makes this worth an attacker's time is not always what administrators expect, so it is worth walking through the forms value can take:

  • Directly usable data. Payroll files contain names, addresses, salaries, bank details, and national identity numbers — the raw material of identity fraud. Healthcare files carry protected patient information. Order and invoice files reveal who your customers are and what they pay. Files like these have a straightforward criminal market.
  • Extortion material. An attacker does not need to resell data to profit from it. Threatening to publish it — customer lists, contracts, personnel files, anything embarrassing or regulated — converts stolen files into leverage against you directly.
  • Competitive and targeting value. Engineering drawings, price lists, and bid documents interest competitors and the intermediaries who sell to them. Even mundane files help an attacker plan the next stage: an org chart or a vendor list is a phishing target list.
  • Aggregation value. Individually boring files become valuable in bulk. One week's invoice batch is nothing; the ability to quietly read every invoice batch for months is a business intelligence feed.
  • Credentials inside files. A special prize: configuration exports, scripts, and documentation that pass through transfer flows often contain passwords, connection strings, and keys. Attackers search stolen file sets for these first, because each one opens another door.

Two practical conclusions follow. First, you cannot judge how attractive your data is until you know what actually flows — which is why a file flow census, an inventory of every transfer you run, is the natural companion to threat thinking. Administrators who run one are routinely surprised by what turns out to be crossing their own boundary. Second, retention multiplies exposure. A server that deletes files after delivery exposes one day's data when breached; a server that quietly accumulates them exposes the entire archive. Old files sitting in a delivered folder are risk earning no interest.

Motive Two: Ransomware and Extortion Staging

Modern ransomware operations rarely stop at encrypting your disks. The standard playbook is double extortion: first quietly copy your data out, then encrypt what remains, then demand payment twice over — once for the decryption key, once for the promise not to publish what was stolen. That "copy your data out" step is called exfiltration — moving data from inside your network to somewhere the attacker controls — and it is where your transfer infrastructure enters the story in two uncomfortable ways.

First, as the getaway vehicle. Attackers prefer to use tools that already exist inside a victim's network, because traffic from a legitimate, already-installed transfer tool draws far less suspicion than traffic from something they bring along. A transfer server or automation client that can reach the internet is, from an intruder's perspective, a pre-approved exfiltration channel: outbound file transfers are literally what it is for, so a few more transfers blend in. This is exactly why defenders watch outbound transfer volume and destinations, not just logins. A flow that normally moves fifty megabytes a night suddenly moving twenty gigabytes, or connecting to an address no partner has ever used, is one of the highest-value alerts a transfer log can produce — the kind of signal our transfer logging and audit series is about.

Second, as a high-reach victim. To do its job, a transfer server often has read and write access to many places: department shares, application export folders, archive volumes. Ransomware that lands on an ordinary workstation encrypts what that workstation can reach; ransomware that lands on a transfer server encrypts what the server can reach, which is usually far more. The server's reach — an operational convenience — is also its blast radius. Trimming that reach to what each job genuinely needs is one of the cheapest risk reductions available, and it costs only configuration time.

Motive Three: A Pivot Point into Your Network

Some attackers do not care about your files at all. They want the machine — because of where it stands and what it knows. In security language, using one compromised system to reach others is called pivoting, and the spread from system to system is lateral movement. Transfer servers make excellent pivot points for three reasons.

They straddle the boundary. A transfer server typically has one foot in the reachable world — accepting connections from the internet — and one foot inside, with network paths to the systems that feed it files and collect them. Compromise the machine that bridges the two, and the attacker inherits the bridge. This is precisely why security architecture puts edge-facing transfer hosts in a DMZ — a buffer network segment with deliberately limited paths to the interior — a design our DMZ and gateway architecture series covers in depth.

They know things. A working transfer environment accumulates operational knowledge: scripts with connection details, saved profiles for partner endpoints, scheduled jobs that name internal hosts, sometimes credentials stored in plain text by an administrator in a hurry. To an intruder, each stored credential is a key already cut. A transfer server that holds passwords for the ERP export share, the backup target, and three partner endpoints converts one compromise into four.

They are trusted downstream. Files that arrive through the established transfer flow are treated as legitimate by whatever consumes them. An import job does not interrogate a file's life story; it processes what appears in the folder. An attacker who controls the transfer path can therefore inject content into systems that would never accept a connection from the outside — a poisoned price file, a tampered configuration, a malicious payload dressed as the nightly batch. The trust your automation places in the transfer flow is part of the transfer flow's value to an attacker.

The defensive translation: keep secrets off the edge machine wherever possible, give every job its own narrowly scoped account, and treat the transfer server's own integrity as something worth monitoring — not just its uptime.

Motive Four: Free Infrastructure

The least dramatic motive is the most common one for small servers: the attacker wants your machine as a resource. Disk space, bandwidth, and a clean reputation are worth money, and a writable server on the internet provides all three at your expense.

  • Storage for illegal content. Writable space — classically an anonymous FTP upload area, but any weakly guarded account will do — gets discovered by automated crawlers and filled with pirated software, video, and worse. The operators then share your address as a distribution point. This abuse pattern is old, ongoing, and entirely automated; our anonymous and guest access series covers it in detail.
  • Malware distribution. Attackers need hosting for malicious files that does not trace back to them, served from an address with no bad reputation. A compromised transfer server with a respectable business domain is ideal: links to it pass reputation filters that would block a known-bad host.
  • Relay and cover traffic. A compromised host can proxy an attacker's onward connections, making their traffic to the next victim appear to come from you.

The costs land on you in slow motion: your address appears on blocklists — shared databases of misbehaving hosts that mail servers and security products consult — and suddenly unrelated things break, like your organization's email deliverability. Disks fill with strangers' files until legitimate jobs fail. In the worst cases, illegal content on your hardware brings legal attention before you knew the content existed. Free-infrastructure abuse rarely makes headlines, but it is the most likely fate of an unwatched server with weak credentials or anonymous write access.

How Your Server Looks from the Outside

Attackers begin with reconnaissance — learning what you have before touching it — and for internet-facing services, most of that work is already done for them. Scanning projects sweep the entire public address space on a rolling basis, recording which ports answer at every address and what the services say about themselves. Within hours of a new transfer endpoint going live, its existence, open ports, and banner — the greeting text a service sends on connection, which often names the software and version — are indexed and searchable. Nobody had to look for you specifically; you were cataloged along with everyone else.

From that catalog, two very different kinds of attention follow, and telling them apart matters:

  • Opportunistic attention is bulk work. Automation harvests the list of every host answering on a transfer port and tries common usernames and passwords against all of them, around the clock, with no idea and no interest in who each victim is. This is the vast majority of what your logs will show, and every internet-facing server receives it.
  • Targeted attention means someone chose you. The probes use your real account naming pattern, your employees' names, your partners' names — details that required research. Far rarer, far more serious, and only distinguishable from the noise if you actually read the evidence.

The evidence looks like this — a fragment of an authentication log from a typical internet-facing server, showing the opportunistic knocking that never stops:

03:12:44  connect 198.51.100.23   USER admin      530 Login incorrect
03:12:47  connect 198.51.100.23   USER admin      530 Login incorrect
03:12:53  connect 203.0.113.87    USER test       530 Login incorrect
03:13:05  connect 198.51.100.23   USER ftpuser    530 Login incorrect
03:13:18  connect 192.0.2.140     USER backup     530 Login incorrect
03:13:31  connect 203.0.113.87    USER admin123   530 Login incorrect
03:13:44  connect 192.0.2.140     USER upload     530 Login incorrect

Read defensively, this fragment says: multiple unrelated addresses, generic usernames, steady mechanical timing — opportunistic scanning, unpleasant but normal. The moment the usernames stop being generic and start being yours, the story changes. That distinction is only visible if login attempts are being recorded and reviewed; on a server product such as Sysax Multi Server, the activity log captures every connection and authentication attempt, which makes this kind of review a ten-minute habit rather than a forensic project. Reading your own authentication log for one week is the fastest education in attacker attention available, and it costs nothing.

While you are looking outward-in, check what your own service volunteers: banners that announce exact software versions hand attackers their next search query ("known vulnerabilities in version X"). Trimming what your server discloses is part of the hardening discipline covered in our hardening transfer servers series.

Remember: you do not have to be chosen to be attacked. Most attacks against transfer services are automated sweeps that try every server they can find, and being small, obscure, or boring offers no protection from a process that never checks. Being hardened and being watched are the defenses that work — obscurity is not one of them.

Matching Motive to Defense

Motives are only useful if they change what you defend. The table below maps each motive to what the attacker reaches for first and the defenses that most directly answer it.

Motive What they go for first Defenses that answer it
Data theft The files, and the credentials guarding them Strong authentication, encrypted protocols, least-privilege access, short retention on the server
Extortion staging Your outbound channel and the server's reach Egress monitoring, alerts on volume and new destinations, trimming the server's access to shares
Pivot point Stored credentials and the server's trusted position DMZ placement, minimal secrets on the edge box, one narrowly scoped account per job
Free infrastructure Writable space behind weak or absent credentials No anonymous writes, disk quotas, lockouts on guessing, routine log review

Notice the overlap. Four different motives, yet the same handful of controls keeps appearing: strong authentication, encryption, least privilege, restrained retention, and logs that someone reads. That convergence is good news for a small team — you do not need a defense per attacker. Guessing-resistant authentication alone shuts down the cheapest path for all four motives, which is why it gets an entire series of its own in brute-force protection.

From Motive to Threat Model

Knowing what attackers want is step zero of threat modeling — the structured habit of asking who might attack a system, how, and what to do about it, which this series teaches end to end. The next steps follow naturally from here. Map everything an attacker can touch on your service — every port, login prompt, admin page, script, and stored credential — with the attack surface of a file transfer service. See how the motives translate into concrete technique in the attacks file transfer services actually see. Then put it all together on one of your own flows with threat modeling a file transfer workflow, step by step.

The version to keep in your head: attackers come for your files, your outbound channel, your network position, or your raw resources — and usually they come for whatever is cheapest, found by automation that never sleeps and never cares who you are. Defend accordingly: assume you are already on the list, because you are.

Frequently Asked Questions

My transfer server holds nothing sensitive. Am I still a target?
Yes, because two of the four motives do not care about your data at all. Attackers who want free storage, bandwidth, or a pivot point into your network value the machine itself. A server with boring files but weak credentials is exactly what infrastructure abusers look for.
How do attackers even find my server in the first place?
They do not search for you specifically — internet-wide scanners sweep every public address on a rolling basis and index which ports answer and what software greets them. Any service reachable from the internet appears in those indexes within hours of going live, so assume you are already listed.
Are small businesses really attacked, or just large ones?
Opportunistic attacks are run by automation that works through lists of reachable servers without ever checking who owns them, so small organizations receive the same constant guessing traffic as large ones. Size only matters for targeted attacks, which are the rarer kind. Being small reduces headlines, not attempts.
What is the single most effective first defense?
Strong authentication — long unique passwords or key-based logins, with lockouts against guessing — because credential guessing is the cheapest attack and the entry point for all four motives. After that, encrypt the transport and make sure someone actually reads the authentication log occasionally.
Does moving my service to a nonstandard port protect it?
It reduces noise, not risk. Scanners that sweep all ports still find the service, and its banner still identifies what it is. A nonstandard port can quiet your logs so real signals stand out, which has modest value — but it is a filter, not a defense, and it must never substitute for strong authentication and encryption.

From the Sysax team: we build secure file transfer software for Windows — Sysax Multi Server, an FTP, FTPS, SFTP, and HTTPS server, and Sysax FTP Automation for scheduled, scripted transfers. Free trials are on the download page.