Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

26
votes
5answers
18k views

How to escape strings in MSSQL using PHP?

I'm looking for the alternative of mysql_real_escape_string() for MSSQL. Is addslashes() my best option or there is another alternative function that can be used? Edit: Alternative for mysql_error() ...
13
votes
4answers
3k views

How can I protect against SQL injection attacks using Perl's DBI?

Is there a function i can use in Perl to sanitize input before putting it into a MySQL db? I don't know regex very well so before I make my own function i was wondering if there was already one made. ...
3
votes
4answers
211 views

How to sanitize ODBC database input?

I currently use MySql, but would prefer an ODBC solution to make it future proof. How do I sanitize user input before passing it to an ODBC database ? And, while I'm at it, I wrap my string in ...
3
votes
1answer
218 views

JavaScript-based X/HTML & CSS sanitization

Before everyone tells me that I shouldn't do client-side sanitization (I do in fact intend to do it on a client, though it could work in SSJS as well), let me clarify what I'm trying to do. I'd like ...
2
votes
3answers
47 views

Ensuring the information after ? is an integer

I've moved from HTML to PHP coding, so when I wanted to make a link for my news page I used HREF to take the id for the row as a link and make the title of the piece the viewable/clickable link: echo ...
2
votes
4answers
2k views

PHP input sanitizer?

What are some good PHP html (input) sanitizers? Preferably, if something is built in - I'd like to us that. UPDATE: Per the request, via comments, input should not allow HTML (and obviously prevent ...
2
votes
7answers
770 views

Is preg_match safe enaught in input satinization?

Im building a new web-app, LAMP environment... im wondering if preg_match can be trusted for user's input validation (+ prepared stmt, of course) for all the text-based fields (aka not html fields; ...
1
vote
3answers
103 views

php - Clean user input using preg_replace_callback and ord()?

I have a forum style text box and I would like to sanitize the user input to stop potential xss and code insertion. I have seen htmlentities used, but then others have said that &,#,%,: characters ...
1
vote
2answers
119 views

Validating and Sanitizing user input in PHP

Is it considered best practice to use filter_var() and sanitize_var() offered by PHP to filter and sanitize variables, or are there better options? Thank you.
0
votes
1answer
99 views

Sanitizing a textarea value: trim white spaces in all lines

I've set the paste event to sanitize the textarea value. It already does everything I need, except one thing: trim white spaces at the beginning and end of all lines. Any ideas? ...
0
votes
2answers
86 views

Sanitizing input for SQL queries in Adodb for PHP

I'm optimizing a platform that uses ADODBforPHP. I used a sanitization function that avoids sql injections for previous versions of PHP (mysql_escape_string) which are obviously not longer supported ...
0
votes
3answers
75 views

Which Exception is most appropriate here?

I am validating some input from a Restlet URL in a utility method (that way if the behavior I take changes, I only change it one place, yay). The legalName essentially validates the value as being ...
0
votes
1answer
141 views

SQL Escaping/Sanitizing Magento Item Attribute Value Data That Is Set Programmaticly?

When I programmaticly set a Magento item attribute to data that the user provided, do I need to SQL escape/sanitize that data or does Magento take care of doing so? Thanks, Ben -- Here's a code ...
0
votes
5answers
386 views

PHP - Sanitizing Form Input for administrators

In my site's administration area, I have been using mysqli_real_escape_string when retrieving form input that goes into the database. It works fine but I realize that it does not prevent script ...
0
votes
4answers
410 views

Escape character in NSString

I have encounter a problem. I have a NSString and I would like to send this string to server to insert to database. But I have problem when NSString is (for example): This isn't a student. And ...
0
votes
1answer
176 views

How do I restrict input to a limited character set across an entire .Net winforms application. (vb.net/c#)

The company I work for has ridiculously old database systems and many legacy apps that throw hard errors when they encounter non-ascii characters. Since they realized those apps need to go they ...
0
votes
2answers
136 views

PHP solution to sanitize user formatted input and make XHTML Strict compliant

What are best solutions for making user formatted input safe + script/flash free XHTML Strict compliant Tidy converts HTML to XHTML Strict. Any similar/alternative options that does this plus ...
0
votes
3answers
118 views

filtering user input in php

Am wondering if the combination of trim(), strip_tags() and addslashes() is enough to filter values of variables from $_GET and $_POST