The input-sanitization tag has no wiki summary.
0
votes
1answer
24 views
Codeigniter - sanitize function parameter
How can I sanitize a function parameter?
I have a url like: example.com/controller/function/parameter
and that parameter will be used to get data from a database.
There is a specific function or I ...
1
vote
1answer
38 views
Sanitizing user input path names
Using Python 2.6 on Windows I have a function that needs to accept a path name as an arg. I'm running into issues when certain specific paths are passed.
C:\users\bob\something.png #this is ...
0
votes
2answers
35 views
How to filter XSS out but still allow basic formatting tags
I am working on a website that allows people to enter html formatted content using an editor.
However, I am concerned about XSS injections. The editor obviously filters information on the client ...
1
vote
2answers
71 views
Proper Form Input Sanitation
I have form fields i'm gathering from my form using
var dataString = $("form").serialize();
I am then sending this over to my controller as dataType "html"
The var_dump for my dataString looks ...
0
votes
3answers
66 views
Extending Zend request object getParams() method in order to sanitize uesr input
I am trying to ensure we sanitize user input in our web app by filtering user input (blacklisting user data such as tags etc). Basically, Zend suggests that this be done specifically by the developer ...
0
votes
1answer
35 views
Sanitize string for comparison in Matlab
This is a follow-up question from this that considered evalc, instead of figgling with file-descriptors manually. You can see below an example about poor sanitization. I want to remove things such as ...
0
votes
1answer
177 views
ZF2 sanitize variables for DB queries
In making database queries in Zend Framework 2, how should I be sanitizing user submitted values? For example, $id in the following SQL
$this->tableGateway->adapter->query(
"UPDATE ...
2
votes
2answers
113 views
How can I improve my PHP sanitization without using PDO [closed]
I have written a short function for sanitizing strings/variables before being being used in SQL queries:
function cleanstring($sanitize, $maxlength=10, $minlength=0){
if(strlen($sanitize) <= ...
0
votes
2answers
143 views
How to check if uploaded file (or text via text box) contains PHP code?
I am unable to find a proper answer to this on stackoverflow. But perhaps it is just me being silly.
I have a user form where the user can upload a text file. We are doing the sensible things like ...
0
votes
1answer
181 views
PHP Sanitizing Input With PDO Statements [duplicate]
Possible Duplicate:
How to prevent SQL injection in PHP?
I use PDO prepared statements to prevent MySQL injection, but should I be doing anything more to sanitize user input? The user will ...
0
votes
1answer
44 views
Is it OK to load form input straight into DOMDocument class?
I built a tool that takes arbitrary HTML, collects all the classes and ids and outputs them back into the page. I am concerned about security. I had been using HTML Purifier to filter the input, but ...
0
votes
4answers
91 views
Should user data be sanitized before using functions like explode(), strpos(), substr() [closed]
Not to be a paranoid, i was wondering if using client inputs directly with string manipulation functions such as explode(), strpos(), substr(),... could be a security issue.
Two years ago, i remember ...
1
vote
1answer
148 views
PHP : how to clean user input leaving UTF-8 (Russian, Turkish, English)?
Clean user submitted inputs of accidental or intentional junk.. I wrote the following to do this, and would be interested to see more efficient or better solutions to the same problem.
Note: I use ...
0
votes
1answer
106 views
PHP; encode and decode functions produce the same output
Sanitising some user input;
function html_mysql_sanitise($data) {
if(get_magic_quotes_gpc()) {
$data = stripslashes($data);
}
$data = htmlentities($data, ENT_QUOTES);
$data = ...
0
votes
1answer
24 views
How safe is stripping leading '/' and disallowing '../' from user input filepaths?
Is stripping leading '/' and disallowing '../' in any part of a user-supplied file-name still considered 'safe'? Or is there some (utf-8 encoding comes to mind) way around that? I'm not asking if the ...
1
vote
2answers
341 views
Sanitize Form Data
I'm just learning the basics of PHP and scripting after building sites with HTML/CSS. I'm trying to make a simple form that submits to a database, just to gather email address and names. Below is the ...
0
votes
0answers
148 views
PHP Script Says MIME Type is not Recognized, yet it IS identified as image/jpeg? [closed]
I created a PHP upload script for images, audio and video. When I upload the file, it says it's not recognized yet both the extension and the MIME type are listed as such inside the PHP script ...
2
votes
3answers
271 views
Is it safe to call json_decode on user input?
I'm storing a JSON encoded array of integer indexes => integer values in a cookie.
Obviously cookies can be easily manipulated like any other user input, so here's my cookie getter validation:
if ...
0
votes
1answer
116 views
htmlentities on hidden form elements
This might seem like a daft question but the sanitizing of user input continually confuses me, and i would like once and for all to get a definitive answer.
So heres the scenario
Customer fills in ...
1
vote
1answer
112 views
Sanitizing strings for procedually generated java in RoR
I'm writing a Ruby on Rails app which with user input will generate some Java code that the server will then compile & execute. (Don't ask why ;)
The problem is the users are able to enter in ...
0
votes
3answers
792 views
special characters break mysql insert
I have a mysql statement like this:
mysql_query("INSERT INTO movies (comments, description, synopsis)
VALUES ('$_POST["comments"]', '$_POST["desc"]',$_POST["synopsis"])");
very simple and ...
2
votes
1answer
386 views
Implicit Sanitization of Inputs In Rails: Why do these examples from the API work the way they do?
Thanks for your help as I bootstrap my way into Ruby and Rails.
In the Rails API for ActiveRecord::Base, there's a section on Conditions that's meant to simply cover syntax for interactions with ...
0
votes
2answers
192 views
Sanitizing databases
When coding with databases on the web with say php and mysql you have to sanitize the data before you insert it into the database to make sure someone doesn't escape quotes etc. Is this necessary in ...
0
votes
1answer
490 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
409 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 ...
1
vote
3answers
428 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 ...
2
votes
3answers
67 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 ...
1
vote
2answers
303 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
3answers
126 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
441 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 ...
4
votes
4answers
385 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 ...
2
votes
5answers
2k views
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 ...
4
votes
1answer
560 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 ...
0
votes
4answers
604 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
307 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
193 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 ...
4
votes
4answers
4k 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
1k 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; ...
25
votes
4answers
8k 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.
...
0
votes
3answers
144 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
39
votes
7answers
34k views
How to escape strings in SQL Server using PHP? [duplicate]
I'm looking for the alternative of mysql_real_escape_string() for SQL Server. Is addslashes() my best option or there is another alternative function that can be used?
Edit: Alternative for ...


