

InterviewSolution
1. |
Solve : Web code weakness allows data dump on PCs? |
Answer» Gigabytes of junk data could be dumped onto PCs via a loophole in web code, a developer has found. one gigabyte of data every 16 seconds I wish I had an Internet connection that fast: using binary gigabytes, that's 537 megabits per second in round numbers. Even if my connection was that good it would have to be a bloody good server connection to dump that much that fast. I have a 60 Mbit/sec connection and there are not many internet resources that can max it out (my own ISP's Usenet server can) Quote from: Salmon Trout on March 02, 2013, 07:26:35 AM I wish I had an Internet connection that fast: using binary gigabytes, that's 537 megabits per second in round numbers. Even if my connection was that good it would have to be a bloody good server connection to dump that much that fast. I have a 60 Mbit/sec connection and there are not many internet resources that can max it out (my own ISP's Usenet server can) I think it's more about potential than actual speeds the average user would get. But if they can exploit 1 G/bit every 16 seconds then it could happen to everything under that but at a slower pace. I personally get 110mb/s download so could hurt me very BAD. I think it would be quite a worry for the owners of a web site affected in this way, it would be maxing out their bandwidth too, and could impact on their accessibility and maybe annoy the hosting company too. I am on Virginmedia and if something like that happened to me at certain TIMES of the day I'd get "traffic managed". Quote from: Salmon Trout on March 02, 2013, 07:58:10 AM I am on Virginmedia Me too. I got about 5 MB/sec saved, which I think is slightly faster than my normal internet speed. It's probably just spamming the same image enough times to fill one quota's worth of space before moving onto another one, which helps explain the 1GB in 16s -- I actually think it would take longer to write 2-5 MB of data to the hard drive than download a single 1KB (or even cached in the browser) image. That time difference adds up over many 'rounds' of this DISK filling, but with an SSD the writing takes much less time. Pretty cool trick actually, but because of the risks involved it'll have to go. I guess we get to see how long it takes this trick, seemingly reported at about the same time to all the major browsers, to get fixed in each of them A very clever choice of music for his space filling site btw Note: the data is not actually being downloaded at all. It is being written from the Client-Side Javascript. Once they are retrieved they will simply be copied from the cache. It will not really effect your connection speed- the only effect it could have is consuming temporary scratch space. Certainly should be prevented though. Quote from: BC_Programmer on March 02, 2013, 01:32:57 PM Note: the data is not actually being downloaded at all. That makes more sense. Thanks, BC_P |
|