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'd like to know what to do if I find a high traffic site that is vulnerable to JS/SQL injection? I contacted the owner but it doesn't seem they care.
I can easily submit the <script> in their discussion forums and trigger the execution. Is there a fair best practices on how to direct the website owner to protect themselves?
In worst scenario, should I hack their site and force them this way to correct it?
Related
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 4 days ago.
Improve this question
I made a website using PHP as the serverside language. How can I show my client a working sample of the website ? I cannot meet the client in person but the client want to use and see the functionality of the website.
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 5 years ago.
Improve this question
I'm working on a user management system, and was curious how you all deal with removing customers ? do you completely delete them from the database or do you archive them (hide them) ?
In my technical opinion, the best approach is to "hide" the customers. That way you can keep track of historical customers and their behavior.
That said, there are legal reasons why you might have to legally delete them or obfuscate them so their identity unknown.
So, it depends, and it depends on the legal and regulatory framework, as well as the business requirements of what you are working on.
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 have been building an application, in my spare time, for a while now and have been thinking about how to protect my product from piracy (it will be something that the customers will have on their server).
I have been checking out the various encryption products around and they seem to be do the trick.
But, I how much will it slow down my site?
It is currently not possible to let encrypted general programs run on customer machines (see On the (Im)possibility of Obfuscating Programs by Barak, Goldreich, Impagliazzo and Rudich).
What you probably mean is code obfuscation which is not encryption in any way. Most likely there is no performance hit when you use them in the same way as JavaScript runs in the same way when minified.
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
Can u tell me, can i use database from this server www.serversfree.com for my own website?
I googled but couldn't find anything ..
Thanks all
Yes, if you are allowing in your database to access from outside. If you are behind firewall, you need to set up portforward. But i do not recommend this.
Instead to directly access your database from outside your server, let's write an API, use API key and security tokens to perform actions on your DB.
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
Similar to Facebook, I want to do a sharing feature where a user can choose to keep something private or share with 1 or more people. I know how to do a drop down but that limits my ability to be able to do it only for one person. How do i do it so i can allow people to select more than 1 person in a way that its user friendly and not confusing.
I was thinking of using AJAX or if HTML5 had something but i am new to that area so i don't know.
What is the best way to do it?
You could use a <select multiple>, but that's not very user-friendly. I'd use something like this: http://jqueryui.com/demos/autocomplete/#multiple.