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.
