Rclone

Summary

Rclone is an open source, multi threaded, command line computer program to manage or migrate content on cloud and other high latency storage. Its capabilities include sync, transfer, crypt, cache, union, compress and mount. The rclone website lists supported backends including S3 and Google Drive.[6]

Rclone
Original author(s)Nick Craig-Wood[1]
Developer(s)Nick Craig-Wood,[2] Ivan Andreev[3]
Initial releaseJuly 3, 2014; 9 years ago (2014-07-03)[4]
Stable release
1.66.0[5] Edit this on Wikidata / 10 March 2024
Repositorygithub.com/rclone/rclone
Written inGo[6]
Operating systemLinux, Windows, macOS, FreeBSD, NetBSD, OpenBSD, Plan9, Solaris[6]
PlatformIntel/AMD-64, Intel/AMD-32, ARM-32, ARM-64, MIPS-Big-Endian, MIPS-Little-Endian[6]
LicenceMIT
Websiterclone.org

Descriptions of rclone often carry the strapline "Rclone syncs your files to cloud storage".[6] Those prior to 2020 include the alternative "Rsync for Cloud Storage".[7]

Rclone is well known for its rclone sync and rclone mount commands.[8] It provides further management functions analogous to those ordinarily used for files on local disks, but which tolerate some intermittent and unreliable service. Rclone is commonly used with media servers such as Plex,[9] Emby or Jellyfin[10] to stream content direct from consumer file storage services.[9]

Official Ubuntu, Debian, Fedora, Gentoo, Arch, Brew, Chocolatey, and other package managers include rclone.[11]

History edit

Nick Craig-Wood was inspired by rsync.[12][7] Concerns about the noise and power costs arising from home computer servers prompted him to embrace cloud storage and he began developing rclone as open source software in 2012 under the name swiftsync.[13][14][1]

Rclone was promoted to stable version 1.00 in July 2014.[4]

In May 2017, Amazon Drive barred new users of rclone and other upload utilities, citing security concerns.[15] Amazon Drive had been advertised as offering unlimited storage for £55 per year. Amazon's AWS S3 service continues to support new rclone users.

The original rclone logo was updated in September 2018.[16]

In March 2020, Nick Craig-Wood resigned from Memset Ltd, a cloud hosting company he founded, to focus on open source software.[17][14][18][19]

Amazon's AWS April 2020 public sector blog explained how the Fred Hutch Cancer Research Center were using rclone in their Motuz tool to migrate very large biomedical research datasets in and out of AWS S3 object stores.[20]

In November 2020, rclone was updated to correct a weakness in the way it generated passwords. Passwords for encrypted remotes can be generated randomly by rclone or supplied by the user. In all versions of rclone from 1.49.0 to 1.53.2 the seed value for generated passwords was based on the number of seconds elapsed in the day, and therefore not truly random. CVE-2020-28924 recommended users upgrade to the latest version of rclone and check the passwords protecting their encrypted remotes.[21]

Release 1.55 of rclone in March 2021 included features sponsored by CERN and their CS3MESH4EOSC project.[22] The work was EU funded to promote vendor-neutral application programming interfaces and protocols for synchronisation and sharing of academic data on cloud storage.[23]

Backends and commands edit

Rclone supports the following services as backends. There are others, built on standard protocols such as WebDAV or S3, that work.[6] WebDAV backends do not support rclone functionality dependent on server side checksum or modtime.[24]

Remotes are usually defined interactively from these backends, local disk, or memory (as S3), with rclone config. Rclone can further wrap those remotes with one or more of alias, chunk, compress, crypt or union, remotes.

Once defined, the remotes are referenced by other rclone commands interchangeably with the local drive. Remote names are followed by a colon to distinguish them from local drives. For example, a remote example_remote containing a folder, or pseudofolder, myfolder is referred to within a command as a path example_remote:/myfolder.[34]

Rclone commands directly apply to remotes, or mount them for file access or streaming. With appropriate cache options the mount can be addressed as if a conventional, block level disk. Commands are provided to serve remotes over SFTP, HTTP, WebDAV, FTP and DLNA.[6] Commands can have sub-commands and flags. Filters determine which files on a remote that rclone commands are applied to.[35]

rclone rc passes commands or new parameters to existing rclone sessions and has an experimental web browser interface.[36]

Crypt remotes edit

Rclone's crypt implements encryption of files at rest in cloud storage. It layers an encrypted remote over a pre-existing, cloud or other remote. Crypt is commonly[9] used to encrypt / decrypt media, for streaming, on consumer storage services such as Google Drive.

Rclone's configuration file contains the crypt password. The password can be lightly obfuscated, or the whole rclone.conf file can be encrypted.[37]

Crypt can either encrypt file content and name, or additionally full paths. In the latter case there is a potential clash with encryption for cloud backends, such as Microsoft OneDrive, having limited path lengths.[38] Crypt remotes do not encrypt object modification time or size. The encryption mechanism for content, name and path is available, for scrutiny, on the rclone website. Key derivation is with scrypt.[37]

Example syntax (Linux) edit

These examples describe paths and file names but object keys behave similarly.

To recursively copy files from directory remote_stuff, at the remote xmpl, to directory stuff in the home folder:-

$ rclone copy -v -P xmpl:/remote_stuff ~/stuff

-v enables logging and -P, progress information. By default rclone checks the file integrity (hash) after copy; can retry each file up to three times if the operation is interrupted; uses up to four parallel transfer threads, and does not apply bandwidth throttling.

Running the above command again copies any new or changed files at the remote to the local folder but, like default rsync behaviour, will not delete from the local directory, files which have been removed from the remote.

To additionally delete files from the local folder which have been removed from the remote - more like the behaviour of rsync with a --delete flag:-

$ rclone sync xmpl:/remote_stuff ~/stuff

And to delete files from the source after they have been transferred to the local directory - more like the behaviour of rsync with a --remove-source-file flag:-

$ rclone move xmpl:/remote_stuff ~/stuff

To mount the remote directory at a mountpoint in the pre-existing, empty stuff directory in the home directory (the ampersand at the end makes the mount command run as a background process):-

$ rclone mount xmpl:/remote_stuff ~/stuff &

Default rclone syntax can be modified. Alternative transfer, filter, conflict and backend specific flags are available. Performance choices include number of concurrent transfer threads; chunk size; bandwidth limit profiling, and cache aggression.[35]

Academic evaluation edit

In 2018, University of Kentucky researchers published a conference paper comparing use of rclone and other command line, cloud data transfer agents for big data.[39] The paper was published as a result of funding by the National Science Foundation.[40]

Later that year, University of Utah's Center for High Performance Computing examined the impact of rclone options on data transfer rates.[41]

Rclone use at HPC research sites edit

Examples are University of Maryland,[42] Iowa State University,[43] Trinity College Dublin,[44] NYU,[45] BYU,[46] Indiana University,[47] CSC Finland,[48] Utrecht University,[49] University of Nebraska,[50] University of Utah,[51] North Carolina State University,[52] Stony Brook,[53] Tulane University,[54] Washington State University,[55] Georgia Tech,[56] National Institutes of Health,[57] Wharton,[58] Yale,[59] Harvard,[60] Minnesota,[61] Michigan State,[62] Case Western Reserve University,[63] University of South Dakota, Northern Arizona University,[64] University of Pennsylvania,[65] Stanford,[66] University of Southern California,[67] UC Santa Barbara,[68][69] UC Irvine,[70] UC Berkeley,[71][72] and SURFnet.[73]

Rclone and cybercrime edit

May 2020 reports stated rclone had been used by hackers to exploit Diebold Nixdorf ATMs with ProLock ransomware.[74][75] The FBI issued a Flash Alert MI-000125-MW on May 4, 2020, in relation to the compromise.[76] They issued a further, related alert 20200901–001 in September 2020. Attackers had exfiltrated / encrypted data from organisations involved in healthcare, construction, finance, and legal services. Multiple US government agencies, and industrial entities were affected. Researchers established the hackers spent about a month exploring the breached networks, using rclone to archive stolen data to cloud storage, before encrypting the target system.[76][77][78] Reported targets included LaSalle County, and the city of Novi Sad.[79][80]

The FBI warned January 2021, in Private Industry Notification 20210106–001, of extortion activity using Egregor ransomware and rclone. Organisations worldwide had been threatened with public release of exfiltrated data. In some cases rclone had been disguised under the name svchost.[81] Bookseller Barnes & Noble, US retailer Kmart, games developer Ubisoft and the Vancouver metro system have been reported as victims.[82]

An April 2021, cybersecurity investigation into SonicWall VPN zero-day vulnerability SNWLID-2021-0001[83] by FireEye's Mandiant team established attackers UNC2447 used rclone for reconnaissance and exfiltration of victims' files.[84] Cybersecurity and Infrastructure Security Agency Analysis Report AR21-126A confirmed this use of rclone in FiveHands ransomware attacks.[85]

A June 2021, Microsoft Security Intelligence Twitter post identified use of rclone in BazaCall cyber attacks.[86] The miscreants sent emails encouraging recipients to contact a bogus call centre to cancel a paid for service. The call centre team then instructed victims to download a hostile file that installed malware on the target network, ultimately allowing use of rclone for covert extraction of potentially sensitive data.

Rclone Wars edit

In a 2021, Star Wars Day blog article, Managed Security Service Provider Red Canary announced Rclone Wars, an allusion to Clone Wars. The post notes illicit use of other legitimate file transfer utilities in exfiltrate and extort schemes but focuses on MEGAsync, MEGAcmd and rclone. To identify use of renamed rclone executables on compromised devices the authors suggest monitoring for distinctive rclone top level commands and command line flag strings such as remote: and \\.[87]

Rclone or rsync edit

Rsync transfers files with other computers that have rsync installed.[88] It operates at the block, rather than file, level and has a delta algorithm so that it only needs to transfer changes in files. Rsync preserves file attributes and permissions. Rclone has a wider range of content management capabilities, and types of backend it can address, but only works at a whole file / object level.[89][1] It does not currently preserve permissions and attributes.[90] Rclone is designed to have some tolerance of intermittent and unreliable connections or remote services. Its transfers are optimised for high latency networks. Rclone decides which of those whole files / objects to transfer after obtaining checksums, to compare, from the remote server. Where checksums are not available, rclone can use object size and timestamp.[91]

Rsync is single threaded.[92] Rclone is multi threaded with a user definable number of simultaneous transfers.[93][94]

Rclone can pipe data between two completely remote locations, sometimes without local download. During an rsync transfer, one side must be a local drive.[88][94]

Rclone ignores trailing slashes. Rsync requires their correct use.[95] Rclone filters require the use of ** to refer to the contents of a directory. Rsync does not.[96]

Eponymous cloud storage service rsync.net provides remote unix filesystems so that customers can run rsync and other standard Unix tools.[97] They also offer rclone only accounts.[98]

In 2016, a poster on Hacker News summarised rclone's relationship to rsync as:- (rclone) exists to give you rsync to things that aren't rsync. If you want to rsync to things that are rsync, use rsync.[99]

See also edit

References edit

  1. ^ a b c Craig-Wood, Nick (November 21, 2018). "Rclone "rsync for cloud storage"" (PDF). craig-wood.com. Archived (PDF) from the original on December 4, 2020. Retrieved July 30, 2020.
  2. ^ Craig-Wood, Nick (September 3, 2020). "Rclone 1.53 release". rclone. Archived from the original on November 5, 2021. Retrieved September 17, 2020.
  3. ^ Craig-Wood, Nick (February 2, 2021). "Rclone 1.54 release". rclone forum. Archived from the original on February 2, 2021. Retrieved May 6, 2021.
  4. ^ a b "Changelog". rclone. Archived from the original on May 4, 2022. Retrieved July 29, 2020.
  5. ^ "Release 1.66.0". March 10, 2024. Retrieved March 25, 2024.
  6. ^ a b c d e f g "Rclone". rclone. Archived from the original on June 17, 2020. Retrieved July 29, 2020.
  7. ^ a b "rclone/rclone". July 31, 2020. Archived from the original on June 30, 2020. Retrieved July 29, 2020 – via GitHub.
  8. ^ Tozzi, Christopher (September 25, 2020). "How to Access S3 Buckets from Windows or Linux". Itpro Today: It News, How-Tos, Trends, Case Studies, Career Tips, More. Archived from the original on October 29, 2020. Retrieved September 27, 2020.
  9. ^ a b c "Recommended Google Drive and Plex Mount Settings". rclone forum. July 10, 2018. Archived from the original on October 24, 2020. Retrieved September 17, 2020.
  10. ^ "Storage | Documentation - Jellyfin Project". jellyfin.org. Archived from the original on January 22, 2021. Retrieved November 10, 2020.
  11. ^ "rclone package versions - Repology". repology.org. Archived from the original on October 30, 2020. Retrieved September 17, 2020.
  12. ^ Craig-Wood, Nick (September 9, 2020). "Rclone --links gets tripped up by existing .rclonelink files". rclone forum. Archived from the original on June 2, 2022. Retrieved September 17, 2020.
  13. ^ Craig-Wood, Nick (June 10, 2020). "Is rclone more efficient than an nfs mount". rclone forum. Archived from the original on June 2, 2022. Retrieved July 29, 2020.
  14. ^ a b "Meet The Team". Memset. Archived from the original on March 23, 2021. Retrieved September 17, 2020.
  15. ^ Claburn, Thomas (May 23, 2017). "Amazon Drive bans rclone storage client". The Register. Archived from the original on August 11, 2020. Retrieved July 30, 2020.
  16. ^ "A New Logo for rclone". rclone forum. September 30, 2018. Archived from the original on June 2, 2022. Retrieved July 30, 2020.
  17. ^ Craig-Wood, Nick (May 27, 2020). "Rclone 1.52 release". rclone forum. Archived from the original on May 6, 2021. Retrieved September 17, 2020.
  18. ^ "MEMSET LTD - Officers (free information from Companies House)". beta.companieshouse.gov.uk. Archived from the original on June 2, 2022. Retrieved September 17, 2020.
  19. ^ "Trading Update, Iomart Group PLC, 2020-04-03". AIM-Watch. April 3, 2020. Archived from the original on June 2, 2022. Retrieved September 17, 2020.
  20. ^ Rogers, Ray (April 16, 2020). "How Fred Hutch unlocks siloed data with AWS and open-source software". Amazon Web Services. Archived from the original on July 12, 2020. Retrieved July 30, 2020.
  21. ^ "CVE - CVE-2020-28924". cve.mitre.org. November 19, 2020. Archived from the original on November 19, 2020. Retrieved November 20, 2020.
  22. ^ Craig-Wood, Nick (March 31, 2021). "Rclone 1.55 release". rclone forum. Archived from the original on May 6, 2021. Retrieved May 6, 2021.
  23. ^ "Interactive and agile/responsive sharing mesh of storage, data and applications for EOSC". Cordis. Archived from the original on May 6, 2021. Retrieved May 6, 2021.
  24. ^ Winokur, Justin (October 5, 2020). "iDrive.com Support". rclone forum. Archived from the original on October 9, 2020. Retrieved October 5, 2020.
  25. ^ "Aruba Cloud Object Storage". rclone forum. October 10, 2020. Archived from the original on June 2, 2022. Retrieved October 12, 2020.
  26. ^ Roetert, Niels (August 28, 2019). "S3 Bucket migration with metadata issues". rclone forum. Archived from the original on June 2, 2022. Retrieved September 26, 2020.
  27. ^ "Is anybody using Dell EMC Object Storage successfully with rclone?". rclone forum. September 23, 2020. Archived from the original on June 2, 2022. Retrieved September 25, 2020.
  28. ^ a b Craig-Wood, Nick (February 2, 2021). "Rclone 1.54 release". rclone forum. Archived from the original on February 2, 2021. Retrieved March 8, 2021.
  29. ^ "Can't ls to sub directory? sorry, total newbie here". rclone forum. November 11, 2019. Archived from the original on October 2, 2020. Retrieved September 22, 2020.
  30. ^ "RClone". openio.io. Archived from the original on August 6, 2020. Retrieved September 22, 2020.
  31. ^ "OOM with big buckets". rclone forum. September 16, 2020. Archived from the original on September 19, 2020. Retrieved September 17, 2020.
  32. ^ "Cloud Object Storage that supports an Amazon S3-compatible API". selectel.ru. Archived from the original on June 3, 2020. Retrieved September 17, 2020.
  33. ^ "Add Selectel.com Storage support · Issue #4472 · rclone/rclone". GitHub. July 30, 2020. Archived from the original on June 2, 2022. Retrieved September 17, 2020.
  34. ^ McKay, Dave (January 10, 2020). "How to Use rclone to Back Up to Google Drive on Linux". How-To Geek. Archived from the original on August 4, 2020. Retrieved July 30, 2020.
  35. ^ a b "Documentation". rclone. Archived from the original on September 3, 2020. Retrieved September 17, 2020.
  36. ^ "GUI". rclone. Archived from the original on July 7, 2020. Retrieved September 17, 2020.
  37. ^ a b "Crypt". rclone.org. September 2, 2020. Archived from the original on October 8, 2020. Retrieved October 5, 2020.
  38. ^ "Crypt backend, and path lengths". rclone forum. June 14, 2020. Archived from the original on June 2, 2022. Retrieved October 5, 2020.
  39. ^ "Navigating the Unexpected Realities of Big Data Transfers in a Cloud-based World". National Science Foundation. Archived from the original on October 9, 2020. Retrieved August 1, 2020.
  40. ^ "NSF Award Search: Award#1541380 - CC*DNI Networking Infrastructure: An Software Defined Networking-Enabled Research Infrastructure". National Science Foundation. May 9, 2018. Archived from the original on September 28, 2018. Retrieved August 1, 2020.
  41. ^ "rclone - Center for High Performance Computing - The University of Utah". The University of Utah. Archived from the original on August 10, 2020. Retrieved August 1, 2020.
  42. ^ "HPC Software Rclone". University of Maryland. Archived from the original on October 24, 2019. Retrieved July 30, 2020.
  43. ^ "Rclone - High Performance Computing". Iowa State University. Archived from the original on July 3, 2019. Retrieved July 30, 2020.
  44. ^ "rclone". Trinity College Dublin. Archived from the original on June 2, 2022. Retrieved September 17, 2020.
  45. ^ Deng, Wensheng (September 30, 2018). "Transferring files between the HPC Prince Cluster and Google Drive - High Performance Computing at NYU - NYU Wikis". New York University. Archived from the original on June 2, 2022. Retrieved September 17, 2020.
  46. ^ "Office of Research Computing - BYU". Brigham Young University. August 19, 2020. Archived from the original on September 19, 2020. Retrieved September 17, 2020.
  47. ^ Henderson, Rob (March 4, 2019). "Using Box under Linux - Luddy School of Informatics, Computing, and Engineering KB - Indiana University Enterprise Confluence". Indiana University Bloomington. Archived from the original on September 21, 2020. Retrieved September 17, 2020.
  48. ^ "Using Allas with Rclone on CSC supercomputers - Docs CSC". CSC – IT Center for Science. August 11, 2020. Archived from the original on May 10, 2022. Retrieved September 17, 2020.
  49. ^ "How to synchronize data with HPC platforms - News - Universiteit Utrecht". Utrecht University. February 18, 2019. Archived from the original on June 2, 2022. Retrieved September 17, 2020.
  50. ^ "HCC-DOCS". University of Nebraska–Lincoln. Archived from the original on October 1, 2020. Retrieved September 17, 2020.
  51. ^ "rclone - Center for High Performance Computing - The University of Utah". The University of Utah. Archived from the original on August 10, 2020. Retrieved July 30, 2020.
  52. ^ "High Powered Computing Cluster – Mathematics IT". North Carolina State University. Archived from the original on May 18, 2021. Retrieved September 17, 2020.
  53. ^ "Using rclone to backup data". Stony Brook University. August 11, 2020. Archived from the original on June 2, 2022. Retrieved September 17, 2020.
  54. ^ "cypress/FileTransfer – hpc". Tulane University. Archived from the original on September 27, 2020. Retrieved September 17, 2020.
  55. ^ "The Forbes Group". Washington State University. Archived from the original on January 20, 2022. Retrieved September 17, 2020.
  56. ^ "Dropbox, HPC, and Rclone". Georgia Tech. Archived from the original on May 10, 2022. Retrieved September 17, 2020.
  57. ^ "Rclone on Helix and Biowulf". National Institute of Health. Archived from the original on January 8, 2017. Retrieved July 30, 2020.
  58. ^ "Rclone". University of Pennsylvania. Archived from the original on December 18, 2019. Retrieved July 30, 2020.
  59. ^ "Rclone - Yale Center for Research Computing". Yale University. Archived from the original on May 16, 2020. Retrieved July 30, 2020.
  60. ^ "rclone – transfer files to/from cloud storage – FASRC DOCS". Harvard University. Archived from the original on September 15, 2020. Retrieved September 17, 2020.
  61. ^ "rclone - The Minnesota Supercomputing Institute". University of Minnesota. Archived from the original on September 25, 2020. Retrieved August 1, 2020.
  62. ^ "Rclone on HPCC - Institute for Cyber-Enabled Research - Michigan State University". Michigan State University. Archived from the original on March 10, 2020. Retrieved August 1, 2020.
  63. ^ "Rclone - Google Drive - hpc". Case Western Reserve University. Archived from the original on October 27, 2020. Retrieved September 17, 2020.
  64. ^ "Cloud Storage Management". Northern Arizona University. Archived from the original on June 2, 2022. Retrieved September 17, 2020.
  65. ^ "HPC Software Rclone". Perelman School of Medicine at the University of Pennsylvania. Archived from the original on May 8, 2022. Retrieved July 30, 2020.
  66. ^ "Rclone - Sherlock". Stanford University. Archived from the original on November 26, 2020. Retrieved September 17, 2020.
  67. ^ "USC Research Computing, New Faculty Orientation Presentation" (PDF). University of Southern California. August 1, 2019. Archived (PDF) from the original on June 2, 2022. Retrieved July 30, 2020.
  68. ^ "Introduction to HPC Resources and Linux" (PDF). University of California, Santa Barbara. Archived (PDF) from the original on June 2, 2022. Retrieved July 30, 2020.
  69. ^ "Copying files to Google (Google Drive)". University of California, Santa Barbara. Archived from the original on October 27, 2021. Retrieved July 30, 2020.
  70. ^ Mangalam, Harry (March 23, 2018). "Pushing data with rclone". University of California, Irvine. Archived from the original on October 8, 2020. Retrieved September 17, 2020.
  71. ^ "Transferring Data Between Savio and Your bDrive (Google Drive) Account". University of California, Berkeley. Archived from the original on April 13, 2019. Retrieved July 30, 2020.
  72. ^ "Take advantage of unlimited bDrive (and Box) storage using rclone". University of California, Berkeley. Archived from the original on September 29, 2020. Retrieved September 17, 2020.
  73. ^ "Object Store: store large quantities of data". surf.nl. Archived from the original on May 6, 2021. Retrieved May 6, 2021.
  74. ^ Millman, Rene (May 23, 2020). "Diebold Nixdorf ATM attack by ProLock ransomware used QakBot trojan to access networks". S C Magazine. Archived from the original on June 9, 2020. Retrieved July 30, 2020.
  75. ^ Ilascu, Ionut (May 14, 2020). "ProLock Ransomware teams up with QakBot trojan for network access". BleepingComputer. Archived from the original on June 13, 2020. Retrieved July 30, 2020.
  76. ^ a b Gatlan, Sergiu (September 5, 2020). "FBI issues second alert about ProLock ransomware stealing data". Data Breaches. Archived from the original on September 29, 2020. Retrieved September 17, 2020.
  77. ^ Ilascu, Ionut (September 10, 2020). "ProLock ransomware increases payment demand and victim count". BleepingComputer. Archived from the original on September 10, 2020. Retrieved September 17, 2020.
  78. ^ Skulkin, Oleg (May 14, 2020). "ATT&CKing ProLock Ransomware". group-ib.com. Archived from the original on August 3, 2020. Retrieved September 17, 2020.
  79. ^ "ProLock Ransomware" (PDF). sisainfosec.com. Retrieved July 30, 2020.[permanent dead link]
  80. ^ Abrams, Lawrence (March 2, 2020). "New PwndLocker Ransomware Targeting U.S. Cities, Enterprises". BleepingComputer. Archived from the original on September 16, 2020. Retrieved September 17, 2020.
  81. ^ "FBI Private Industry Notification 20210106-001" (PDF). FBI. January 6, 2021. Archived (PDF) from the original on January 8, 2021. Retrieved January 21, 2021.
  82. ^ Montalbano, Elizabeth (January 8, 2021). "FBI Warns of Egregor Attacks on Businesses Worldwide". Threatpost. Archived from the original on January 22, 2021. Retrieved January 21, 2021.
  83. ^ "Security Advisory". psirt.global.sonicwall.com. February 3, 2021. Archived from the original on May 8, 2021. Retrieved May 6, 2021.
  84. ^ McLellan, Tyler; Moore, Justin; Leong, Raymond (April 29, 2021). "UNC2447 SOMBRAT and FIVEHANDS Ransomware: A Sophisticated Financial Threat". FireEye. Archived from the original on May 5, 2021. Retrieved May 6, 2021.
  85. ^ "FiveHands Ransomware | CISA". cert. May 6, 2021. Archived from the original on May 10, 2021. Retrieved May 10, 2021.
  86. ^ "Microsoft Security Intelligence". June 22, 2021. Archived from the original on June 28, 2021. Retrieved June 28, 2021 – via Twitter.
  87. ^ Schoenfeld, Justin; Didier, Aaron (May 4, 2021). "Rclone Wars: Transferring leverage in a ransomware attack". Red Canary. Archived from the original on May 6, 2021. Retrieved May 6, 2021.
  88. ^ a b "rsync(1) - Linux man page". linux.die.net. Archived from the original on January 1, 2017. Retrieved September 17, 2020.
  89. ^ "Difference between Rclone and Rsync when syncing to the Local Filesystem?". rclone forum. July 9, 2017. Archived from the original on April 20, 2022. Retrieved September 17, 2020.
  90. ^ "Rclone instead of rsync". rclone forum. September 11, 2019. Archived from the original on June 2, 2022. Retrieved September 17, 2020.
  91. ^ "SFTP". rclone. Archived from the original on August 18, 2020. Retrieved September 17, 2020.
  92. ^ Riel, Manuel (June 5, 2020). "bash - Speed up rsync with Simultaneous/Concurrent File Transfers?". Stack Overflow. Archived from the original on August 6, 2019. Retrieved September 17, 2020.
  93. ^ "Documentation". rclone. August 9, 2020. Archived from the original on September 3, 2020. Retrieved September 17, 2020.
  94. ^ a b Winokur, Justin (September 12, 2020). "Nick giving a talk about Rclone and Backblaze". rclone forum. Archived from the original on June 2, 2022. Retrieved September 17, 2020.
  95. ^ Levens, Skip; Craig-Wood, Nick (September 17, 2020). "Tapping the Power of Cloud Copy & Sync with Rclone". brighttalk.com. Archived from the original on October 31, 2020. Retrieved September 17, 2020.
  96. ^ Krajnik, Daniel (February 1, 2021). "How to exclude from directory ?! why is exclude not working? why is it even complicated at all?!". rclone forum. Archived from the original on June 2, 2022. Retrieved February 2, 2021.
  97. ^ "rsync.net Cloud Storage for Offsite Backups". rsync.net. Archived from the original on December 10, 2019. Retrieved September 17, 2020.
  98. ^ "Cloud Storage for Offsite Backups - rclone support". rsync.net. Archived from the original on August 20, 2020. Retrieved September 17, 2020.
  99. ^ "Rclone: rsync for cloud storage". Hacker News. August 31, 2016. Archived from the original on December 4, 2021. Retrieved September 17, 2020.

External links edit

  • Official website