TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Dropbox Is Probably Not Stealing Your Files

140 pointsby talon88about 10 years ago

27 comments

tptacekabout 10 years ago
This is a fine post, but all I can think about this situation is &quot;or, you could just reverse the Dropbox client and find out for sure&quot;.<p>Speculation about Dropbox stealing files seems premised on the idea that you can&#x27;t know what the client is doing. But that&#x27;s not even close to true. People reverse much, much harder targets than Dropbox for fun. If any version of Dropbox published to its user base ever did anything like this, we&#x27;ll all know soon enough.
评论 #9139878 未加载
评论 #9139683 未加载
评论 #9138840 未加载
评论 #9138597 未加载
评论 #9140015 未加载
评论 #9138747 未加载
chinathrowabout 10 years ago
&quot;This is, by necessity, a system-wide process.&quot;<p>This is, by design, a fucking huge defect of the underlying system calls.<p>Give the OS a list of folders to watch. Dropbox should not even get a callback for a file it&#x27;s not is supposed to watch.
评论 #9139491 未加载
评论 #9138997 未加载
评论 #9142111 未加载
lutuspabout 10 years ago
Quote:<p>&quot;A simple protocol can give us an idea of whether data is being sent to Dropbox:<p>1. Create a large-ish file (1MB) outside of the Dropbox folder<p>2. Monitor the network usage of the Dropbox application to see if it sends enough data that it could be that file<p>3. Repeat with many different files, etc.<p>Doing exactly that, Dropbox only sent a few hundred KB after “accessing” the target file. Seems unlikely that Dropbox is uploading files outside your Dropbox folder.&quot;<p>This test approach has a problem. A more realistic test would be to place a well-compressed file, one that by definition cannot be made smaller, on Dropbox and see what the system traffic size is for that file. For an optimally compressed file, if the system is reading the entire file, the read size will more or less equal the file size.
评论 #9139361 未加载
评论 #9140550 未加载
radiospielabout 10 years ago
Well, dropbox could just listen for fs events inside the DropBox folder; and it should, from a performance perspective as well as from a privacy point of view. And then &quot;sends a few 100 kByte&quot;? I hope this is a typo; if not, I would like to know what these are. (also: the OP&#x27;s largish file (1MB) could easily fit into &quot;a few 100kByte&quot; after compression)
评论 #9139167 未加载
评论 #9138552 未加载
copsarebastardsabout 10 years ago
The cycle of security is this:<p>1. Security experts see a security hole and note that it could only be used by a widely trusted company or government.<p>2. People note that it&#x27;s also possible that it&#x27;s <i>not</i> happening, and claim that the widely trusted company or government would never use the security hole.<p>3. It is discovered that the widely trusted company or government has been using the security hole.
评论 #9139819 未加载
chisleuabout 10 years ago
Read their TOS and compare it to Google Drive&#x27;s TOS.<p>The insane rights the Google TOS grants to Google are why it costs ~ 1&#x2F;2 as much.<p>It is also an indicator that Dropbox is less shady. They don&#x27;t grant themselves rights to do anything with your data outside of the normal things you need them to do to offer the dropbox service for your use.<p>Unlike Google, which could for instance, use your personal photos of your kid eating ice cream to try to sell you ice cream via road side LED billboards.
评论 #9140452 未加载
评论 #9139896 未加载
评论 #9139703 未加载
评论 #9139829 未加载
whizzkidabout 10 years ago
&quot; 1 - Create a large-ish file (1MB) outside of the Dropbox folder<p>2 - Monitor the network usage of the Dropbox application to see if it sends enough data that it could be that file<p>&quot;<p>I can not really say if Dropbox steals them or not. But if i were a Dropbox engineer and want to know about those newly created files, i wouldn&#x27;t want to send the whole file to server at all.<p>- Send file name with its extension<p>- Send file size<p>Compare these to dropbox&#x27;s blacklist file (imagination only) in another server. If there are any matches, mark user as &quot;whateveryouwant&quot;<p>As long as there is a network activity when a new file created, it is and will always be suspicious to its users.
评论 #9138789 未加载
rayinerabout 10 years ago
As an aside, I&#x27;ve been using Sparkleshare (built on GIT and SSH) lately. It&#x27;s pretty good, and sucks up less battery on my MBP than the Dropbox client (maybe because it&#x27;s not watching every file in the system!) And not only is it open source, but you can see a log of all the git commands and fix things manually if necessary.<p>My only lament is that it doesn&#x27;t work that well over the intermittent connections. It&#x27;d be neat to have something robust like mosh (<a href="https://mosh.mit.edu" rel="nofollow">https:&#x2F;&#x2F;mosh.mit.edu</a>) for file sync.
评论 #9139063 未加载
评论 #9140776 未加载
Animatsabout 10 years ago
The original article is titled &quot;Dropbox Is Probably Not Stealing All Your Files&quot;. From bandwidth consumption, you can tell it&#x27;s not stealing all of them. Whether it does so selectively, on command from the mothership, is another matter.
bebbiwebbiabout 10 years ago
&quot;The Dropbox application uses a filesystem monitor to detect when changes are made by monitoring filesystem write events. This is, by necessity, a system-wide process. So DLP alerting that Dropbox is “acccessing” a new file shouldn’t be surprising.&quot;<p>I think this SHOULD be surprising to any competent software engineers. That isn&#x27;t how the file system watcher works.
MrDosuabout 10 years ago
About every form of backup software will use change journals to identify what to backup and how it changed.<p>Change journals are streams that are per volume (so to monitor some directory in C:\ i have to monitor the C:\ change stream).<p>It&#x27;s just how NTFS works. It&#x27;s shocking that this was allowed to reach this kind of publicity because it&#x27;s just a guy attaching a diagnostic tool to a system where he doesn&#x27;t know whats happening and then proceeds to freak.<p>Software like this will have plenty of file access for metadata, not only on the backed up files.
评论 #9140207 未加载
Someone1234about 10 years ago
This article makes me irrationally annoyed by how lazy the author was. I was able to produce a test in under 5 minutes that disproves the article&#x27;s core assumption:<p>&gt; The Dropbox application uses a filesystem monitor to detect when changes are made by monitoring filesystem write events. This is, by necessity, a system-wide process. So DLP alerting that Dropbox is “acccessing” a new file shouldn’t be surprising.<p>THAT IS NOT HOW THAT WORKS!<p>Sorry, I am calm now. As someone who has spent quite a lot of time using Windows&#x27; File System Watcher functionality, I know that that is nonsense. Windows monitoring&#x2F;watching is conducted at the kernel, when an IO operation occurs that hits a registered monitor it fires off an event (windows message) to that process to let it know, the process itself never accesses that file directly.<p>But just test it for yourself.<p>1) Download Process Monitor [0]<p>2) Start Process Monitor, turn off Registry, Network, Profiling, and Process events.<p>3) Set the include (included processes to monitor) to [whatever executable you build]<p>4) Build this (see examples section) [1] in C#&#x2F;VB.net and run it<p>5) Set the process name in #4 in the include in #3<p>6) Write to a file in C:\ (that&#x27;s the default in the example program&#x2F;source)<p>7) You should see some Console.WriteLine() output indicating the file watcher is working. If not run as administrator.<p>8) There you go. As you can see, no direct file accesses to the file. The monitor events are fired as you can see, but the file remains untouched directly by your program.<p>The author could have done this. Why didn&#x27;t they? It isn&#x27;t like I had to even write one line of code or have some kind of specialist knowledge of low level kernel functionality...<p>PS - I don&#x27;t know&#x2F;care if DropBox is stealing your stuff. I just wish the article&#x27;s author had at least fact-checked before they claimed that &quot;that is how this works!!!&quot; when in reality that is untrue. That is how it works for Anti-Virus because AV scans within files to see contents, it isn&#x27;t how it works for most processes which just use the file watcher functionality. If DropBox chooses to look inside files, then why? There is no need for that.<p>PPS - If DropBox do have a system wide file watcher, that is just lazy. It will reduce system performance, and they could have just as easily set it up to point just to folders DropBox is configured to watch.<p>[0] <a href="https://technet.microsoft.com/en-us/sysinternals/bb896645" rel="nofollow">https:&#x2F;&#x2F;technet.microsoft.com&#x2F;en-us&#x2F;sysinternals&#x2F;bb896645</a><p>[1] <a href="https://msdn.microsoft.com/en-us/library/system.io.filesystemeventhandler%28v=vs.110%29.aspx" rel="nofollow">https:&#x2F;&#x2F;msdn.microsoft.com&#x2F;en-us&#x2F;library&#x2F;system.io.filesyste...</a>
xerabout 10 years ago
It&#x27;s very unlikely that dropbox would upload every changed file from your computer, that would not go unnoticed.<p>A desirable capability would be on-demand upload or download of any file on the clients system. For that you would need the entire filetree+checksums so, imo, that&#x27;s what it&#x27;s syncing.
jostmeyabout 10 years ago
Dropbox has too much to lose and not enough to gain by stealing your files. The accusation borders on paranoia. That said, Dropbox is a closed system, and I always trust open systems more.
jinushaunabout 10 years ago
The tin foil hat is strong with this thread. People should read up on Windows Explorer shell extensions before making comments. It&#x27;s like saying regexing email addresses to check for valid input is the same as stealing emails addresses.
venomsnakeabout 10 years ago
If dropbox get to send metadata about files outside of the folder could be damning enough.<p>Hey you have in your downloads folder 3 new files per day whose file names hints they were send by FB user X. I could make an educated guess about their content.
deciplexabout 10 years ago
Reminder that Dropbox was mentioned, by name, in NSA documents released <i>two years ago</i> as the next target they intended to subvert. Also reminder that not long after <i>that</i> they named Condoleeza Rice, celebrated apologist for warrantless wiretapping during the Bush administration, to their board of directors.<p>Yes, it&#x27;s <i>possible</i> they named her to their board in good faith, and it&#x27;s <i>possible</i> they also resisted the NSA somehow, where Google and Microsoft and Yahoo and countless others failed. But, do you consider it likely enough to bet your privacy on it? It seems to me you would be foolish to do so.<p>The only other excuse for it I can think of is that it&#x27;s <i>so obviously corrupt</i> that it proves they aren&#x27;t corrupt after all - that no one could be that stupid. I reject such meta-reasoning. They are simply corrupt.
darkhornabout 10 years ago
If you are an ordinary guy then even if Dropbox steals a file it won&#x27;t matter much. If you are a government, Airbus, Snowden, Aselsan, or Comodo you should not install Dropbox even if you trust Dropbox.
sarciszewskiabout 10 years ago
Pure speculation follows.<p>I wonder if they could be calculating hashes of files and sending them off? That would be useful for automated exfiltration and targeting.<p>For example:<p><pre><code> 1. Calculate the SHA-256 hashes for files in places of interest. 2. Report the hashes upstream. 3. Hey, this file matches one that the FBI&#x2F;NSA is looking for via NSL. 4. Download more stuff. Also identify the person and their location. 5. Send agents&#x2F;drones after them. </code></pre> This is unlikely, but still in the realm of possibility. It&#x27;s also untestable without more information. (Packet captures from the DLP device would be far more helpful in determining if anything of the sort is happening.)
评论 #9138534 未加载
评论 #9138897 未加载
评论 #9138502 未加载
评论 #9142124 未加载
pwnnaabout 10 years ago
Speaking of which, does anyone run apps like this with a different user than their own?<p>I&#x27;m thinking of something like<p><pre><code> &#x2F;home&#x2F;dropbox drwxrwx--- dropbox &lt;youruser&gt;</code></pre>
vacriabout 10 years ago
Separate from the privacy concerns, what about network traffic? &quot;a few hundred kilobytes&quot; for every file you create adds up.
lalosabout 10 years ago
Any thoughts on SafeMonk, which they claim end to end encryption and piggyback on dropbox?
jamwtabout 10 years ago
Uhh... no, no we are not. s&#x2F;probably &#x2F;&#x2F;
meiraabout 10 years ago
Dropbox Is Probably Ready To Do So As They Want
anonbankerabout 10 years ago
I stooped trusting dropbox when condoleeza rice got added to the board.
lucozadeabout 10 years ago
Surely tradition requires that the title of this piece be &quot;Is Dropbox stealing your files?&quot;. I mean, it&#x27;s a complete waste of a Betteridge event.
评论 #9138550 未加载
评论 #9138640 未加载
rlx0xabout 10 years ago
You upload your files to dropbox servers, how in the world can you come to the delusion that you would notice when they accessed&#x2F;searched&#x2F;data mined your files?!
评论 #9138530 未加载