Tagged Questions
The sanitization tag has no wiki summary.
33
votes
19answers
10k views
Can I protect against SQL Injection by escaping single-quote and surrounding user input with single-quotes?
I realize that parameterized SQL queries is the optimal way to sanitize user input when building queries that contain user input, but I'm wondering what is wrong with taking user input and escaping ...
26
votes
12answers
3k views
Detecting a (naughty or nice) URL or link in a text string
How can I detect (with regular expressions or heuristics) a web site link in a string of text such as a comment?
The purpose is to prevent spam. HTML is stripped so I need to detect invitations to ...
24
votes
14answers
4k views
When is it Best to Sanitize User Input?
User equals untrustworthy. Never trust untrustworthy user's input. I get that. However, I am wondering when the best time to sanitize input is. For example, do you blindly store user input and then ...
20
votes
11answers
17k views
Sanitizing strings to make them URL and filename safe?
I am trying to come up with a function that does a good job of sanitizing certain strings so that they are safe to use in the URL (like a post slug) and also safe to use as file names. For example, ...
15
votes
15answers
777 views
What is the correct way to detect whether string inputs contain HTML or not?
When reciving user input on forms I want to detect whether fields like "username" or "address" does not contain markup that has a special meaning in XML (RSS feeds) or (X)HTML (when displayed).
So ...
15
votes
1answer
294 views
How do I sanitize invalid UTF-8 in Perl?
My Perl program takes some text from a disk file as input, wraps it in some XML, then outputs it to STDOUT. The input is nominally UTF-8, but sometimes has junk inserted. I need to sanitize the output ...
15
votes
7answers
1k views
What are the best PHP input sanitizing functions?
I am very new to PHP/programming, with that in mind I am trying to come up with a function that I can pass all my strings through to sanatize. So that the string that comes out of it will be safe for ...
14
votes
3answers
426 views
What can I use to sanitize received HTML while retaining basic formatting?
This is a common problem, I'm hoping it's been thoroughly solved for me.
In a system I'm doing for a client, we want to accept HTML from untrusted sources (HTML-formatted email and also HTML files), ...
10
votes
6answers
5k views
How can I sanitize a string for use as a filename?
I've got a routine that converts a file into a different format and saves it. The original datafiles were numbered, but my routine gives the output a filename based on an internal name found in the ...
9
votes
4answers
313 views
PHP sanitize user data for use in header() function
Are there any escape routines that need to be done to user data for it to be used inside PHP's header() function?
Eg for MySQL I run mysql_real_escape_string() over user data before sending it to the ...
8
votes
2answers
101 views
Sanitize sentence in php
The title may sound odd, but im kind of trying to set up this preg_replace that takes care of messy writers for a textarea. It has to:
if there is an exclamation sign, there should not be another ...
8
votes
2answers
1k views
How do I strip bad chars from a string in JS?
My JS saves some string data to JSON using "stringify()", but observing the outputted JSON string I see a lot of strange chars (out of keyspace), such as NULLs and other bad chars. Now I don't have a ...
8
votes
9answers
1k views
find duplicate addresses in database, stop users entering them early?
How do I find duplicate addresses in a database, or better stop people already when filling in the form ? I guess the earlier the better?
Is there any good way of abstracting street, postal code etc ...
7
votes
4answers
131 views
Is there any need to sanitize a $_POST value before using it in a PHP header (for redirecting)
Can I use a posted value in a PHP redirect header safetly without checking it:
header( "Location: $base".$_POST['return'] ); // $base is set to the base of the site
(If the user would somehow ...
7
votes
4answers
538 views
Sanitizing HTML input
I'm thinking of adding a rich text editor to allow a non-programmer to change the aspect of text. However, one issue is that it's possible to distort the layout of a rendered page if the markup is ...
7
votes
2answers
647 views
Forming sanitary shell commands or system calls in Ruby
I'm building a daemon that will help me manage my server(s). Webmin works fine, as does just opening a shell to the server, but I'd prefer to be able to control server operations from a UI I design, ...
7
votes
3answers
515 views
Preventing LDAP injection
I am working on my first desktop app that queries LDAP. I'm working in C under unix and using opends, and I'm new to LDAP. After woking a while on that I noticed that the user could be able to alter ...
7
votes
4answers
282 views
PHP: best security practices for displayed information?
In PHP, I know that using parameterized queries is the best way to prevent SQL injection.
But what about sanitizing user input that will be used for other purposes, such as:
Displaying back to a ...
6
votes
1answer
401 views
Secure XSS cleaning function (updated regularly)
I've been hunting around the net now for a few days trying to figure this out but getting conflicting answers.
Is there a library, class or function for PHP that securely sanitizes/encodes a string ...
6
votes
2answers
201 views
Is there a good Javascript based HTML parsing library available?
My goal is to take HTML entered by an end user, remove certain unsafe tags like <script>, and add it to the document. Does anybody know of a good Javascript library to sanitize html?
I searched ...
6
votes
3answers
2k views
When to do sanitization in CakePHP
I read from the cookbook (sec. 4.2)
CakePHP already protects you against SQL Injection if you use CakePHP's ORM methods (such as find() and save()) and proper array notation (ie. array('field' => ...
6
votes
4answers
1k views
Sanitize file path in PHP
Greetings,
I'm hoping to make my tiny program secure so that potential malicious users cannot view sensitive files on the server.
$path = ...
5
votes
1answer
56 views
detecting outliers in a sparse distribution?
i would like to find what the best way to detect outliers is. here is the problem and some things which probably will not work. let's say we want to fish out some quasi-uniform data from a dirty ...
5
votes
1answer
652 views
ASP.NET - A practical guide to the sanitization of user input
I've spent most of my career writing applications for consumption within small to medium sized organizations. In those roles, I'd relied on regular expressions to validate the user's input (e.g. ...
5
votes
3answers
416 views
Sanitize user defined CSS in PHP
I want to allow users to use their own stylesheets for thei profiles on my forum, but I'm afraid of possible security vulnerabilities. Does anyone have any tips for sanitizing CSS?
Basic process: ...
5
votes
10answers
2k views
PHP - HTML Purifier - hello w<o>rld/world tutorial striptags
I am just looking into using HTML Purifier to ensure that a user-inputed string (that represents the name of a person) is sanitized.
I do not want to allow any html tags, script, markup etc - I just ...
5
votes
1answer
368 views
How do I sanitize LaTeX input?
I'd like to take user input (sometimes this will be large paragraphs) and generate a LaTeX document. I'm considering a couple of simple regular expressions that replaces all instances of "\" with ...
5
votes
6answers
430 views
Clean user HTML in .net
My C# site allows users to submit HTML to be displayed on the site. I would like to limit the tags and attributes allowed for the HTML, but am unable to figure out how to do this in .net.
I've tried ...
5
votes
5answers
758 views
Filtering JavaScript out of HTML
I have a rich text editor that passes HTML to the server. That HTML is then displayed to other users. I want to make sure there is no JavaScript in that HTML. Is there any way to do this?
Also, I'm ...
5
votes
5answers
2k views
Good way to sanitize input in classic asp
I have to update old projects at work. I do not have any experience with classic asp, although i'm familiar with php scripting.
Are there any functions I should use?
Can you provide me with a good ...
4
votes
3answers
82 views
Is there risk to having unsanitized user input display in a textarea?
I save two versions of user input in the following sequence:
Untrusted user enters raw markdown.
Raw markdown is stored in one table.
A copy of the raw markdown is converted into HTML.
HTML is ...
4
votes
6answers
143 views
In Oracle: how can I tell if an SQL query will cause changes without executing it?
I've got a string containing an SQL statement. I want to find out whether the query will modify data or database structure, or if it will only read data. Is there some way to do this?
More info: In ...
4
votes
3answers
1k views
Sanitizing PHPSESSID
I'm passing PHPSESSID to a PHP page (via POST) and I was wondering what's the best way of sanitizing the input. Would mysql_real_escape_string suffice? Is there anything special I should take into ...
4
votes
5answers
542 views
Sanitization of User-Supplied Regular Expressions in PHP
I want to create a website where users can test regular expressions (there are many out there already...such as this one: http://www.pagecolumn.com/tool/pregtest.htm). Basically, the user provides a ...
4
votes
2answers
382 views
Secure Python Markdown Library
I'd like to enable users to leave rich text comments, possibly using markdown. I've installed the libraries used on Reddit, but am concerned about the javascript injection attack which occurred last ...
4
votes
2answers
475 views
Sanitizing User Regexp
I want to write a function that allows users to match data based on a regexp, but I am concerned about sanitation of the user strings. I know with SQL queries you can use bind variables to avoid SQL ...
4
votes
4answers
3k views
Sanitizing user's data in GET by PHP
How do you sanitize data in $_GET -variables by PHP?
I sanitize only one variable in GET by strip_tags.
I am not sure whether I should sanitize everything or not, because last time in putting data to ...
4
votes
3answers
2k views
How do I properly sanitize data received from a text area, when outputting it back into the text area?
A user will input text in a textarea. It is then inserted directly into a mySQL database. I use trim, htmlentities, mysql_real_escape_string on it and I have magic quotes enabled. How should I ...
4
votes
5answers
5k views
In a bash script, how do I sanitize user input?
I'm looking for the best way to take a simple input:
echo -n "Enter a string here: "
read -e STRING
and clean it up by removing non-alphanumeric characters, lower(case), and replacing spaces with ...
3
votes
2answers
36 views
Does strip_tags() handle embedded tags
I'm away from a computer with PHP installed and was wondering what the result of strip_tags() would be on the following text:
"<scr<h1>ipt>alert('oh oh')</scr</h1>ipt>"
Would ...
3
votes
3answers
39 views
Using filter_var to sanitize a string
http://www.php.net/manual/en/filter.filters.flags.php
How can I use this function to strip down a string to just a-z, numbers and _ ?
3
votes
2answers
93 views
What Unicode characters are dangerous?
What Unicode characters (more precisely codepoints) are dangerous and should be blacklisted and prohibited for the users to use?
I know that BIDI override characters and the "zero width space" are ...
3
votes
3answers
132 views
How to prevent “regex injection”?
How to prevent something I'd call "regex injection"?
I'm using regular expressions to parse strings that might look like - one of the examples -
Size: 10, qty: 20
Writing a regex to capture ...
3
votes
3answers
107 views
PHP data sanitization in emails
My PHP scripts recieves information (from a user submitted form) and sends it (almost) straight away as an email. What kind of sainitization should I do on the data?
I want to know exactly which PHP ...
3
votes
3answers
116 views
Why doesn't mysql_real_escape_string consider these characters as dangerous?
I'm learning how to sanitize my forms and know that using the PHP function mysql_real_escape_string() helps escape characters that are consider "dangerous" or will break the syntax of your SQL. I was ...
3
votes
4answers
196 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
0answers
895 views
Dealing with line Breaks on contentEditable DIV
Edit: With the code I found (bottom of this question) is all working fine except the function that "makes sure a BR element is always the lastChild"... Any idea on how to fix this?
Edit 2: I'm ...
3
votes
1answer
198 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 ...
3
votes
2answers
153 views
Is this a safe/strong input sanitization function?
This is the sanitization function used in a book I recently learned from - Sams Teach Yourself Ajax, JavaScript, and PHP All in One.
I've been using it on my own PHP site. Is it safe for real-world ...
3
votes
2answers
136 views
Bare-minimum text sanitation
In an application that accepts, stores, processes, and displays Unicode text (for the purpose of discussion, let's say that it's a web application), which characters should always be removed from ...