Tagged Questions
The sanitize tag has no wiki summary.
38
votes
15answers
16k views
Turn a string into a valid filename in Python
I have a string that I want to use as a filename, so I want to remove all characters that wouldn't be allowed in filenames, using Python.
I'd rather be strict than otherwise, so let's say I want to ...
28
votes
5answers
14k views
C# Sanitize File Name
I recently have been moving a bunch of MP3s from various locations into a repository. I had been constructing the new file names using the ID3 tags (thanks, TagLib-Sharp!), and I noticed that I was ...
27
votes
10answers
28k views
jQuery catch paste input
I'm looking for a way to sanitize input that I paste into the browser, is this possible to do with jQuery?
I've managed to come up with this so far:
$(this).live(pasteEventName, function(e) {
// ...
12
votes
6answers
515 views
Is it safe to use user input for Python's regular expressions?
I would like to let my users use regular expressions for some features. I'm curious what the implications are of passing user input to re.compile(). I assume there is no way for a user to give me a ...
8
votes
3answers
1k views
Sanitize input XSS and HTML input in rails
I know I can use the ActionView helper strip_tags method in my views to sanitize output, but what is the best way to sanitize user input before I persist it to my db? Should I find a way to include ...
8
votes
6answers
1k views
When to filter/sanitize data: before database insertion or before display?
As I prepare to tackle the issue of input data filtering and sanitization, I'm curious whether there's a best (or most used) practice? Is it better to filter/sanitize the data (of HTML, JavaScript, ...
7
votes
1answer
2k views
Using Wordpress, can some one tell me the best way of sanitizing input?
I'm developing an application using Wordpress as a CMS.
I have a form with a lot of input fields which needs to be sanitized before stored in the database.
I want to prevent SQL injection, having ...
6
votes
3answers
3k views
How good is the Rails sanitize() method?
Can I use ActionView::Helpers::SanitizeHelper#sanitize on user-entered text that I plan on showing to other users? E.g., will it properly handle all cases described on this site?
Also, the ...
5
votes
2answers
561 views
Sanitize user input in bash for security purposes
How do I sanitise user input in a bash script so that I can then pass it as an argument to another shell program? ie I want to prevent the following
INPUT="filename;rm -rf /"
ls $INPUT
I was ...
5
votes
5answers
1k views
How to sanitze user input in PHP before mailing?
I have a simple PHP mailer script that takes values from a form submitted via POST and mails them to me:
<?php
$to = "me@example.com";
$name = $_POST['name'];
$message = $_POST['message'];
$email ...
5
votes
3answers
264 views
Is it dangerous thing to view access log without sanitizing via web browser?
Is it dangerous thing to view access log without sanitizing via web browser?
I am considering to record access log,
and I am considering to view it via wev browser,
but if attacker modifies his ...
4
votes
7answers
169 views
SQL Injection, Quotes and PHP
I'm quite confused now and would like to know, if you could clear things up for me.
After the lateste Anon/Lulsec attacks, i was questioning my php/mysql security.
So, i thought, how could I ...
4
votes
1answer
196 views
Is mysql_real_escape_string() necessary when using prepared statements?
For this query, is necessary to use mysql_real_escape_string?
Any improvement or the query is fine ?
$consulta = $_REQUEST["term"]."%";
($sql = $db->prepare('select location from location_job ...
4
votes
2answers
451 views
Using sanitize within a Rails controller
I'm trying to call sanitize within a controller. Here's what I tried:
class FooController < ApplicationController
include ActionView::Helpers::SanitizeHelper
# ...
end
However, I'm getting ...
4
votes
4answers
700 views
Best way to sanitize content with PHP?
Which is the best way to "sanitize" content? An example...
Example - Before sanitize:
Morbi mollis ante vitae massa suscipit a tempus est pellentesque. Pellentesque habitant morbi tristique senectus ...
4
votes
3answers
392 views
Anonymize pom.xml on release
I've got artefacts which are built and released using Maven.
The artefact's original pom.xml contains the usual project information (artifactId, name, etc.) and the dependencies. That's fine. But the ...
3
votes
1answer
3k views
Ruby on Rails: How to sanitize a string for SQL when not using find?
I'm trying to sanitize a string that involves user input without having to resort to manually crafting my own possibly buggy regex if possible, however, if that is the only way I would also appreciate ...
3
votes
4answers
587 views
Ruby Sanitize Code … why is & sanitized
I currently use the following code to sanitize a string before storing them:
ERB::Util::h(string)
My problem occurs when the string has been sanitized already like this:
string = "Watching ...
3
votes
2answers
446 views
Best way to sanitize exec command with user inserted variables
I'm coding a web interface to a horrible piece of propitiatory software our company uses. the software has no real UI and requires us giving putty access to our system for our clients to even pull ...
2
votes
3answers
139 views
Sanitize User Input in C# - Cleanest Way?
There's a gotcha when inserting img's dynamically via scripts.
Take the following code to insert a image for a place:
newPlace.find('.PlaceThumb').append('<img src="' + place.ThumbnailUrl + '" ...
2
votes
2answers
155 views
php - filter/sanitize QUERY_STRING with REGEX to prevent RFI attack
i would like to have a REGEX to filter/match the QUERY_STRING whenever contains the parameters like theese php|data|ftp|http|..|/|:// and any other character that can be used for Remote File ...
2
votes
1answer
265 views
Strip style attributes with nokogiri
I'm scrapling an html page with nokogiri and i want to strip out all style attributes.
How can I achieve this? (i'm not using rails so i can't use it's sanitize method and i don't want to use sanitize ...
2
votes
2answers
157 views
Sanitizing input that will later appear in HTML
I've got a <textarea> whose value is sent off to the server and stored in a database. This value is then later rendered on different pages in HTML.
What do I need to do to sanitize this? Just ...
2
votes
1answer
140 views
Is <span style=…> safe for sanitize?
I am using a rich text editor (CKEditor) and I have the opportunity to let users create profiles that are displayed to other users.
Many of the attributes CKEditor can control are being lost when I ...
2
votes
2answers
264 views
How do I sanitize shell command and get the output in Ruby?
I have to run some shell commands where the user gives the input. I found one way which seemed secure: system *%W(ls #{file}) [here].
I need to get the output of that command, so I cant just use ...
2
votes
3answers
274 views
Rails - Outputting content, sanitize or <%=h?
I recently made a small rails3 app to convert an old cms written in another language. After migrating the content I am having problems outputting content from the database.
The @content.desc field ...
2
votes
3answers
240 views
Is it possible to force your PHP input variables to be strong typed
When I started off with PHP, I was really happy with how PHP was loosely typed and how easy it was to learn. But as I grew into it, I realized that being loosely typed actually complicated my scripts ...
2
votes
3answers
843 views
Sanitize contact form without mysql_real_escape_string
I normally use this function to sanitize my form inputs before storing them into my database:
//Function to sanitize values received from the form. Prevents SQL injection
function clean($str) {
...
2
votes
1answer
435 views
Symfony: Pre filtering submitted values before/after validation
I've been scouring the net and i have found nothing!
I am using symfonys form framework to build a simple 'Create' form. Validation is fine. However i'd like to pre-filter my submitted values, so ...
2
votes
3answers
218 views
Sanitizing user input that will later be e-mailed - what should I be worried about?
I'm interning for an NGO in India (Seva Mandir, http://sevamandir.org) and trying to fix their broken "subscribe to newsletter" box. Because the staff isn't very sophisticated and our web host isn't ...
2
votes
1answer
58 views
Replacing special chars from the output
searchVersion: function (dataString) {
var index = dataString.indexOf(this.versionSearchString);
if (index == - 1) return;
return parseFloat(dataString.substring(index + ...
2
votes
4answers
122 views
Is this function pair suitable sanitization?
This was taken from O'Reilly's Learn PHP, MySQL, and Javascript:
function sanitizeString($var)
{
$var = stripslashes($var);
$var = htmlentities($var);
$var = strip_tags($var);
return ...
2
votes
3answers
2k views
Is my anti XSS method OK for allowing user HTML in PHP?
I am working on finding a good way to make user submitted data, in this case allow HTML and have it be as safe and fast as I can.
I know EVERY SINGLE PERSON on this site seems to think ...
2
votes
3answers
918 views
Strip Inline CSS and JavaScript in Rails
I'm working on a Rails application and I would like to know what's the best way to strip blocks of CSS or JavaScript.
<style>
...
</style>
-or-
<script>
...
</script>
I'm ...
2
votes
2answers
189 views
Sanitizing PHP input to ping program
I would like to interface a php page to the linux command line program ping.
I realize that there are sanitation issues. Is there a builtin library or function that can take care of everything, or ...
2
votes
1answer
712 views
Xcode, Cocoa: Filtering/Sanitizing User Input. Best Approach
To clarify, I want to check for valid characters. For first name, last name I want to check for [A-Za-z]. For Email I want to check for chars valid for email.
What algorithm would I use to CHECK user ...
1
vote
2answers
53 views
Do I need to sanitize the Javascript in the following situation?
My question is about sanitization.
Do I need to sanitize the javascript in the following situation?
I'm sending a javascript array as Json to php via ajax. The array will be manipulated in php then ...
1
vote
1answer
34 views
How to use RubyGem Sanitize transformers to sanitize an unordered list into a comma seperated list?
Any one familiar with the RubyGem Sanitize, that provide an example of building a "Transformer" to convert
"<ul><li>a</li><li>b</li><li>c</li></ul>"
...
1
vote
1answer
44 views
passing hashtags as parameters to twitter
I have the following tweet:
var tweet = "I might actually do a 5K: http://t.co/tXQIYlUt #zombies #running"
And I would like to pass this to the twitter api using js
$('.my_div').append('<a ...
1
vote
3answers
92 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
1answer
77 views
Rails sanitize remove default allowed tags
How would I use sanitize, but tell it to disallow some enabled by default tags? The documentation states that I can put this in my application.rb
config.after_initialize do
...
1
vote
2answers
65 views
Php Sanitize and Validate form with some caracter exceptions
I'm using in Php Sanitize and Validate Filters but I have problems to add some rules, I have some basic knowledge of php so I think this question is easy for you.
if ($_POST['ccp_n'] != "") {
...
1
vote
1answer
544 views
Rails3 sanitize escape HTML rather than remove
Is there a way to have the ActionView::Helpers::SanitizeHelper#sanitize method escape the offending HTML rather than just completely removing it?
I would use h but I need the sanitize method because ...
1
vote
4answers
417 views
PHP Sanitize Data
I am new to the world of coding and PHP hence would like to learn what's the best way to sanitize form data to avoid malformed pages, code injections and the like. Is the sample script I found below a ...
1
vote
5answers
258 views
How to properly filter input from users in PHP?
What is the industry standard to filter input from users (both POST and GET) to avoid SQL injections and things of that nature. So far I am using filter_input() and mysql_real_escape_string() ...
1
vote
2answers
231 views
mysql data masking
Hi
I'd like to a take a production database and use it in a private, development environment. But, I'd like to anonymize the data.
I've been searching for an hour, but everything I find is for ...
1
vote
1answer
567 views
jQuery sanitizing comments and linkifying URLs
In terms of jQuery (or Javascript), what happens behind the scenes when a person posts a comment on Facebook, Twitter, or a blog?
For instance, do they sanitize the text first, and then pattern match ...
1
vote
1answer
80 views
Sanitize inline links in wordpress?
Hy.
So would anybody know how to write a function that would sanitize all links in a specific class that are entered through WYSISWYG editor?
I know about the wordpress in-built sanitize_title ...
1
vote
3answers
359 views
I need to embed vimeo or some other html in my rails app
Can someone point me in a direction so that I can use embed code in Rails? Sometimes I need to embed a slideshow pro file and sometimes I need to embed a youtube file and sometimes a vimeo file in the ...
1
vote
5answers
646 views
PHP: How to mass replace $_POST[…] with strip_tags($_POST[…])
I'm currently recovering from a nasty XSS attack, and realized I never sanitized inputs on several of the forms on my site. I used Notepad++'s Find In Files feature to search for $_POST in all my PHP ...