vote up -1 vote down star

I created a web page with a zipped file that is available for users to download, but they need to accept a license agreement before they can download it. The code below is an example of my quick and dirty implementation for this download. I'm not a seasoned programmer, but I'm guessing a server-side solution would be much better; however, due to time constraints, this is what I've got for now.

Basically, a user visits index.html and clicks on the "Programming Files" link, which passes the filename prog_files.a28.zip to the openAgreement() function, which appends the filename to the following URL and opens it in a pop-up window: http://www.progfiles.com/agreement.html?prog_files.a28.zip

When the Agreement page loads, the string ?prog_files.a28.zip is stripped from the URL and stored in the fileSuffix variable. After a user reads the license agreement, if they still want to download the file, they click on "I Accept" which calls the openFile() function that appends the string ?prog_files.a28.zip to the downloadPage URL as follows: http://www.progfiles.com/downloadPage.html?prog_files.a28.zip

When the download page opens up, the string ?prog_files.a28.zip is once again stripped from the URL, but this time, the question mark is removed with the .slice() method. When the user clicks on "Download File", the filename prog_files.a28.zip is passed to the changeLink() function which replaces the link in the <a> tag with an absolute link to the ZIP file as follows: http://storage.progfiles.com/download/2008_prog_files.a28.zip

That's it in a nutshell. I'm interested in any suggestions, but specifically, I'd like to know if passing variables in this manner poses any huge security risk and what, if anything, can be changed in the code to minimize the risk. Thanks.

index.html

<script type="text/javascript">

    var pathSuffix = ""; //Stores the filename "prog_files.a28.zip"

    function openAgreement(pathSuffix) {
    	window.open("http://www.progfiles.com/agreement.html?" + pathSuffix,"Agreement","width=200,height=100");
    }
</script>   

<a href="#" onclick="openAgreement('prog_files.a28.zip');return false;">Programming Files</a>

agreement.html

<script type="text/javascript">
    var pathSuffix = location.search;

    function openFile(){
    	document.location.href = "downloadPage.html" + pathSuffix;
    }

</script>

<a href="#" onclick="openFile();return false;"><strong>I Accept</strong></a>

downloadPage.html

<script type="text/javascript">
    var pathSuffix = location.search;
    var pathSuffix = pathSuffix.slice(1);

    function changeLink(pathSuffix) {
    	document.getElementById('download').href = "http://storage.progfiles.com/download/2008_" + pathSuffix;
    	document.getElementById('download').target = "_self";
    }

    function closeWindow() {
    	window.self.close();
    }	

</script>

<a id="download" href="http://storage.progfiles.com/" onclick="changeLink(pathSuffix)">Download File</a>

NOTE: Thanks for the responses. I need to clarify that the license agreement is only a formality and is not my main concern. It's server vulnerability that I'm wondering about.

flag

42% accept rate

8 Answers

vote up 5 vote down check

Basically, everything on the client is insecure.

If you always operate with this mentality, it's a big step to developing more secure software.

In this case it depends on what you mean by "insecure".

If you mean people can download the file without accepting the agreement, then yes, they can. They can look at the source and find the path of the file.

If you mean, can this code inject something into the server, then probably not - it looks like the variables aren't being processed on the server.

link|flag
Yes, I mean can someone inject something into the server. The agreement is there basically for formality. – GR1000 Sep 18 '08 at 3:39
In that case, you need to show us the server code. The post below here: stackoverflow.com/questions/89736/… Shows how the variable might be used for server injection. – Toby Hede Sep 18 '08 at 5:46
vote up 0 vote down

How popular and/or desirable and/or irreplaceable is your data?

If your stuff is hot-shit-electric then it's probably already available for download elsewhere on blogs, usenet, bit torrent, etc. Conversely, if your stuff is specific to a narrow interest group largely comprised of 40-hour-per-week non-technical folks, then you are as secure as you need to be.

(Subtext: Valuable digital data finds a way to be free. I don't endorse this, but I believe this.)

link|flag
Thank you, I don't think it's necessarily hot, but it certainly can be downloaded from elsewhere. – GR1000 Sep 18 '08 at 4:56
vote up 3 vote down

For the issue you're worried about (Server-side injection), we're looking at the wrong code. The real question is not a matter of what the client does, but how the server handles the "?prog_files.a28.zip". Do you do something naive like this?

File file = new File(request.getQueryString());
//Open file for streaming

If you do, then YES you have a security hole! On the other hand, if you do this:

if(!request.getQueryString().equals("prog_files.a28.zip")) return;

File file = new File("prog_files.a28.zip");
//Open file for streaming

...then you're fine. Though this does nothing to change the fact that your solution is a Rube Goldberg machine. ;-)

Basically, there are two security concerns. One is a security hazard on the server (your server-side code leaks information) and the other is a security hazard on the client (your server is rock-solid, but the attacker manages to trick the client into giving up information he has legitimate access to). As one might expect, the server hazards require that you inspect the server-side code, and the client hazards require that you inspect the client-side code. The two don't really cross over, expect that aspects of one may suggest underlying security holes in the other.

Hope this helps! :-)

link|flag
Yes, that helps, but could you explain your code snippets further? I'm interested in what you're saying, but I'm having difficulty understanding it. I'm still a student of programming, so most things are over my head. :) – GR1000 Sep 18 '08 at 4:22
I could tailor the snippets better if I knew what language you were writing your server code in. Effectively what they do is create a File object around a path on the server's file system. I presume you would then open file for reading using that object. Think about this situation (cont...) – 64BitBob Sep 18 '08 at 4:34
(cont...) What if I passed "progfiles.com/downloadPage.html?../../…; to your application? Would I manage to get a copy of the system's "passwd" file? If I would, then your code has a security hole. – 64BitBob Sep 18 '08 at 4:36
If, of course, your server is simply flat HTML and ZIP files, then you're fine. Still a Rube Goldberg invention, though, :-) – 64BitBob Sep 18 '08 at 4:37
Ah, this is why I asked my question because I haven't written any server code and I don't know what would happen if a url like that was passed to the server. Looks like my code isn't going to work as I had hoped. :( – GR1000 Sep 18 '08 at 4:41
show 1 more comment
vote up 1 vote down

Even though it is all clientside there is still the danger of reflective XSS. I don't see any immediate vulnerabilities in your code, though. If you were creating dynamic content this way (based on url params) using document.write or innerHTML, there would probably be a problem, but by using DOM functions you mitigate the risk.

link|flag
Thank you for the information on reflective XSS. Do you think it would make a difference encoding the special characters in the variables passed in the URLs? – GR1000 Sep 18 '08 at 4:55
By using DOM functions (i.e. document.getElementById('download').href = val) it should be safe, but encoding wouldn't hurt in case you use the variables elsewhere without realizing. – Zach Sep 18 '08 at 5:32
vote up 2 vote down

Yes, by doing all of the security in the client side Javascript, someone who wanted to could circumvent it. A couple of "View Sources" and some Javascript knowledge would let a person download the file without agreeing to your terms.

To avoid this, the easiest way is to do it server-side. That way you're not exposing the filenames which can be used to figure out the URL that will allow the user to download the file.

You could try using some type of pseudo encryption of the filename (such as encoding/decoding it in Base64) which would not prevent someone from figuring it out, but would deter most people.

link|flag
Thank you, yes, I will consider your helpful advice. – GR1000 Sep 18 '08 at 4:49
vote up 1 vote down

Well sure, if someone really wants to download your archive without explicitly clicking the Accept Link they can figure out how by just inspecting the JavaScript code. I think you already know that. The only real way to improve this is to include another round trip to the server: if you don't keep any information secret they can find a way to get directly at the file. You could scramble it to make their life a little harder, but an extra trip is the only real answer.

link|flag
Yes, that's great advice. Thanks very much. – GR1000 Sep 18 '08 at 4:51
vote up 3 vote down

That seems like a rather obtuse method of having a user accept an agreement! Why have your accept button link directly to your file? If the hoops were due to the fact that you're worried that someone will download the file without agreeing, be assured that him/her will find a way regardless! As for security vulnerabilities, as it's all client side, I don't see any issues.

link|flag
I don't think bypassing the agreement is a critical issue in this particular case, but yes, I realize the obtuseness. :) – GR1000 Sep 18 '08 at 4:48
vote up -3 vote down

there's really no client side vulnerabilities until cookies get involved

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.