vote up 1 vote down star
1

Which type of input is least vulnerable to Cross-Site Scripting (XSS) and SQL Injection attacks.

PHP, HTML, BBCode, etc. I need to know for a forum I'm helping a friend set up.

flag

Vulverable to what exactly? Hacking? Cross site scripting? SQL injection? – wcm Oct 1 '08 at 18:49
Cross site scrupting and SQL injection. Sorry, I thought I mentioned it in the question (got distracted and when I came back I hit submit without checking what I had written). – Iwasakabukiman Oct 1 '08 at 18:52
It'd be great if you could edit the actual question and put that stuff in there. Can you also clarify what you mean by "input?" My first reaction was you meant what type of form control was least vulnerable, in which case I would have to say the radio button! – Outlaw Programmer Oct 1 '08 at 18:55
I meant text boxes and forms, where users can put in information and have it sent to the server. Radio buttons and those types of items are obviously secure, so I don't have to worry about those. – Iwasakabukiman Oct 1 '08 at 18:59
@Outlaw Programmer: FTFY. – S.Lott Oct 1 '08 at 18:59
show 1 more comment

6 Answers

vote up 3 vote down check

We need to know more about your situation. Vulnerable how? Some things you should always do:

  • Escape strings before storing them in a database to guard against SQL injections
  • HTML encode strings when printing them back to the user from an unknown source, to prevent malicious html/javascript

I would never execute php provided by a user. BBCode/UBBCode are fine, because they are converted to semantically correct html, though you may want to look into XSS vulnerabilities related to malformed image tags. If you allow HTML input, you can whitelist certain elements, but this will be a complicated approach that is prone to errors. So, given all of the preceding, I would say that using a good off-the-shelf BBCode library would be your best bet.

link|flag
Please don't escape strings to protect against SQL injections. Use prepared statements with placeholders. – Andy Lester Oct 16 '08 at 22:35
vote up 4 vote down

(I just posted this in a comment, but it seems a few people are under the impression that select lists, radio buttons, etc don't need to be sanitized.)

Don't count on radio buttons being secure. You should still sanitize the data on the server. People could create an html page on their local machine, and make a text box with the same name as your radio button, and have that data get posted back.

A more advanced user could use a proxy like WebScarab, and just tweak the parameters as they are posted back to the server.

A good rule of thumb is to always use parameterized SQL statements, and always escape user-generated data before putting it into the HTML.

link|flag
In Opera you can also edit the HTML or JS of a page therefore changing anything the user added to prevent you from doing something. Very cool for testing purposes, but makes it easy to mess with things. – Darryl Hein Oct 2 '08 at 1:35
Yeah, Firebug in Firefox allows for this too. – pkaeding Oct 2 '08 at 14:14
vote up 2 vote down

Any kind of boolean.

You can even filter invalid input quite easily.

;-)

link|flag
if(input != Bool.FileNotFound) //It's safe. thedailywtf.com/Articles/What_Is_Truth_0x3f_.aspx/… – Chris Marasti-Georg Oct 1 '08 at 19:13
vote up 2 vote down

None of them are. All data that is expected at the server can be manipulated by those with the knowledge and motivation. The browser and form that you expect people to be using is only one of several valid ways to submit data to your server/script.

Please familiarize yourself with the topic of XSS and related issues

link|flag
vote up 1 vote down

There's lots of BB code parsers that sanitize input for HTML and so on. If there's not one available as a package, then you could look at one of the open source forum software packages for guidance.

BB code makes sense as it's the "standard" for forums.

link|flag
I just want to note that it's important that BBCode itself is not a solution - it's the parser that would prevent XSS and SQL injection. The fact that the rich text functionality is handled by BBCode markup is completely irrelevant. – Peter Bailey Oct 1 '08 at 19:55
vote up 0 vote down

The input that is the least vulnerable to attack is the "non-input".

Are you asking the right question?

link|flag

Your Answer

Get an OpenID
or

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