7
votes
3answers
901 views

SQL Injections and ADOdb library! General PHP website security with examples

I have done pretty much reading and still don't understand 100% how some of the SQL injections happen! I'd like to see, from those who know, concrete examples of SQL injection based on my example, so ...
1
vote
4answers
106 views

What is the best way to keep your MySQL credentials private in PHP?

When it comes to programming your web application in php, what is the most efficient way to prevent your MySQL information from being disclosed or discovered by another person (third party)? The ...
2
votes
1answer
106 views

Is this enough for a secure site? (4 small functions) [duplicate]

Possible Duplicate: PHP: the ultimate clean/secure function I revised my site's security filters today. I used to filter input and do nothing with the output. Here it is: All user ...
5
votes
3answers
125 views

How much security is really needed on a “private” website? [closed]

I'm asking this as I maintain a small website for a fairly isolated group of people (no more than 80). It currently has a simple log in function (e-mail, password) and the data that is "protected" is ...
4
votes
1answer
181 views

I need advice developing a sensitive data transfer/storage/encryption system [closed]

Intro I'm currently working on a project which involves the daily extraction of data (pharmacy records) from a VisualFox Pro database, and uploading some of it to a WordPress site, where clients of ...
3
votes
2answers
94 views

Web Security: where to begin [closed]

I am working on a website with a hosted company, in PHP with MySQL. I am familiar with SQL injection and XXS, and I know how to code so that these don't happen. However, I still plan to test the ...
0
votes
2answers
85 views

Guidance on Database Access best practices

I have recently inherited control of a web application (primarily PHP, but also a good chunk of JavaScript) at my workplace. One of my top priorities is to make sure that the application is secure. ...