Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I have an Asp.net MVC website that is hosted in Azure Websites. It uses dlls to access databases etc.
Can hackers potentially download those dlls?
No, dll files in the bin folder can't be downloaded. The web server excludes certain file types and folders for download.
A hacker could of course potentially get the files, but he would have to hack into the server and access them as files directly, it can't just be done by downloading them.
Basically: no.
Of course, if you open up the web site permissions, and move DLLs to places they should not be, etc - all bets are off.
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 days ago.
Improve this question
I need to create an internal page where there are links to approx 10 files. These will be HR compliance forms and training manuals. Just a list of links, no frills. I started going down the sharepoint path but it seems too complex for what I need. Is there a way to create a 1 page link that will open in a web browser and just list the files in a specific folder? THe files are already stored on a network drive all users have access to. Thanks!
I tried sharepoint but it involves setting up on a server and seems too complex for my needs. T
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I'm a beginner in web development, I want to create a website that will have a very large number of file uploads, a single could be up to 100 MB.
I want the upload to be through my website but the upload destination to be on MediaFire (I'm looking for unlimited free storage, using several MediaFire accounts). I still haven't given the MediaFire API a try, but I want to know if with some lines of code I can create a FileUpload on my website but the destination be on MediaFire.
Media Fire Api is a Library Php right ? On google sites, you can add Php File with App engine.
I don't know it's possible but , I think this link can help you.
http://www.sitepoint.com/google-app-engine-php-getting-started/
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
I've been wrestling with a problem related to allowing users to upload files to my web server through a web page. How can I prevent uploaded files from being "orphaned" as a result of uploading and forgetting.
For example, when I create a question on StackOverflow, I have the option of adding an image to my question. This uploads the file and provides a URL to the resource on an SO server. What if I upload a file, but never submit my question (either I changed my mind, or my computer crashed, or I just closed the browser, etc...). Now there's a file on the SO server that isn't being used by anything. Over time, these could build up.
How can I handle this? Would some background process / automated task that performs checks for unused or expired files be sufficient? Maybe I'm over complicating this?
I can't speak for SO, but the way I've always done it is to run a scheduled task (e.g. cronjob) that goes through the database, looks for orphaned files that don't match entries in the uploads table, and whose creation date is older than 24 hours.
Secondly, having files upload to /tmp or %temp%\ first and then copy over to a proper uploads directory does wonders for this kind of thing - a half finished upload can be left orphaned, and the OS will automagically clear it up when there are no longer any handles to it.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
Currently I am working on multiple projects as a third party (outsourced) where I have no control over the hosting. My application is modular enough to be changed on the fly, all that's required is slight edit in Html / CSS and it'll become a brand new site.
I do not want my proprietary codes to leak on the web without my consent.
Since I'm contracted to only work on a few particular domains, I wish to "lock" them down in the sense there won't be multiple instances of the same application running in the wild.
Domain locking comes to mind, but this will be rather restrictive as my client will no longer be able to change domain in the future.
Any other inexpensive ideas?
You could try having a registration server somewhere that requires various libraries in the system to register infrequently.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
Secondary questions are
How do we best utilize SCM in the build process?
How are code files labed and branched?
Should we the .csproj and .sln files for build? How flexible are these when deploying to several environments? I know these are msbuild files. But
as we add new files, this can become a bottlenect of updating and maintaining these .csproj files in SCM.
How is rollback done in case of failed builds that QA missed testing etc,etc.,
Are there any good articles on the build process?
This is more a question on the process and less on the choice of automated build tools. Please share your build process. I would like to get an end-to-end view
from developers checking-in to Going Live.
Continuous Integration: Improving Software Quality and Reducing Risk
http://www.amazon.com/gp/product/0321336380
book's website is here:
http://www.integratebutton.com