The sanitization tag has no wiki summary.
3
votes
1answer
42 views
Mysql and php fixes to replicate PDO security
I understand that using PDO makes SQL injections virtually impossible.
However, I don't have time at the moment to change all the database related code in our website. (Especially since I'm new at ...
-4
votes
0answers
39 views
htmlentities() strip_tags() vs FILTER_SANITIZE_STRING [closed]
I have a variable $string which takes input from the user. I want to apply some function on this $string to protect against XSS.
Is really a difference between:
$string = ...
0
votes
0answers
31 views
Sanitize Ajax Post Html Content - Ajax Control Toolkit
I have a page where we use the ajax:HtmlEditorExtender for the user to put data in. On submit but, instead of doing the 'save' in the code behind, the data is posted via a:
$.ajax({
type: "POST",
...
0
votes
1answer
53 views
How should I sanitize _GET variables that are only used on page?
I am fairly new to PHP and am using a couple of _GET variables to determine page layout/web service data and some other logic on the page. I am not storing the data or writing to a DB of any kind. ...
1
vote
1answer
58 views
Safe system call with multiple commands with perl
I have a Perl script that reads some information from a web form. In order to do proper sanitation, I want to use the system syntax described here.
They suggest that you should form system commands ...
1
vote
2answers
80 views
Can we say we are safe from XSS attacks if we remove all script and java words from input
I am using asp.net htmleditorextender and unfortunately there is no working XSS sanitizer right now. So for as quick solution i am replacing all of the script and java words from user input as below
...
0
votes
0answers
23 views
Sanitize form data through Zend_Controller_Route or overriding Zend_Controller_Request_* classes
I am very raw with the Zend framework so I probably have some obvious questions at the moment.
Part of our web app's requirement is to block any kind of form input that contains a bunch of malicious ...
0
votes
1answer
28 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
0answers
9 views
Sanitizing Canvas Data
Since day 1, it has been ingrained into me that any user input should be "sanitized".
In my latest js/php application, users make a drawing on a canvas and can then save it to my server.
The data is ...
0
votes
2answers
67 views
Text sanitization Issue
I added this code to my site to have text sanitization:
var re = /(<([^>]+)>)/gi;
for (i=0; i < arguments.length; i++){
arguments[i].value=arguments[i].value.replace(re, ...
2
votes
1answer
130 views
HTMLEditorExtender removes “class”, “id” attributes
The HTMLEditorExtender seems to be stripping "class" and "id" attributes of my HTML elements, even with EnableSanitization="false".
Is this the default behavior? Is there a work-around?
I'm using ...
1
vote
1answer
103 views
jQuery don't parse escaped HTML in .html() method
Take for example this HTML:
<td onclick="$(this).html('Wanted HTML: <br>; Unwanted HTML: <script>alert('xss')</script>')">
Click to ...
0
votes
1answer
18 views
pdo insert sanitizing html on server, not locally
I am inserting data from an html editor into my database. I have html purifier setup but have removed it for the example because the problem exists regardless.
GLOBAL $DB;
$queryHandle = ...
0
votes
1answer
26 views
Should I still escape my data when inserting to custom table?
I found a similar question, but it didn't really give me the answer I was looking for. This tutorial explains the most important sanitation functions WordPress uses.
I'm using PDO to store form data ...
1
vote
2answers
58 views
PHP form spoofing and validation
I've been reading about form spoofing and just couldn't understand why is it so important to prevent it when we can assure that the passed value(s) are properly validated? Perhaps I'm missing ...
8
votes
6answers
523 views
How can sanitation that escapes single quotes be defeated by SQL injection in SQL Server?
To start this off, I am well aware that parameterized queries are the best option, but I am asking what makes the strategy I present below vulnerable. People insist the below solution doesn't work, so ...
0
votes
1answer
15 views
Wordstrip function skipping words for no apparent reason.
Realized tonight that one of the stripping functions I'm using seems to be randomly skipping words.
<?php
function wordstrip($document){
//I truncated the list here for brevity
$wordlist = ...
0
votes
0answers
22 views
unable to validate some script tags in node-validator
HI I have a connect server and inside that i am using node-validator module to perform some sanitizations it worked for most of the tags mentioned in the link below
...
0
votes
0answers
43 views
PhP / Html Form Sanitation [closed]
So I am trying to do some php form sanitation and just had a couple question about it...
[Info] I want to have a page that will take in info from input fields and submitting these to a MySQL DB as ...
0
votes
1answer
101 views
What is a good Hack Free - User Input sanitization function for PHP [duplicate]
I am a beginner and am really excited about the website that I am building. After reading articles and posts on website security, I've learned that there is no HACK FREE website. But I want my site to ...
0
votes
0answers
33 views
How to sanitize command prompt display output from a potentially malicious remote host?
There are lots of tools to sanitize HTML output to a browser including dedicated projects such as HTML Purifier. But what about command output to a display terminal? For the sake of argument and an ...
0
votes
1answer
122 views
String.encode() alternative in Ruby 1.8.7 for cleaning input to UTF-8
I just discovered that the String.encode method is only available from Ruby -v 1.9.3 and upwards. I'm working in a Rails environment were I cannot change this. I used this method to correct invalid ...
0
votes
0answers
9 views
Validating the Name of a Bookmark Folder
What are valid characters in the name of a bookmark folder of the various web browsers ?(hopefully there's only one standard)
Bonus question: how can I validate the folder name using wordpress, php, ...
2
votes
2answers
156 views
Sanitizing text input before submitting to MySQL database
I'm currently working on making sure that text that is submitted into the database for a webapplication I am working on is sanitized properly before being submitted to the database, and then retrieved ...
0
votes
3answers
157 views
How to safely allow users submit code to run periodically?
Basically I need to allow users to submit code to be run periodically server side.
The users should submit simple scripts and I'll run their code server side to determine who came up with a better ...
2
votes
1answer
169 views
How can I escape a square bracket within a confluence macro so that it doesn't auto-linkify?
I'm using Atlassian Confluence (woe is me).
I have an {sql} macro inside a groovy macro in a wiki markup block. Now, the SQL selects some strings which look like Foo[Bar]. The results wiki page ...
0
votes
1answer
80 views
Safety/sanitization when storing images in DB with PHP
I'm looking to store images for an application in an MSSQL database. (I understand that there is some debate about whether this or file system storage is better; that's another thread though.) I'm ...
3
votes
1answer
49 views
Sanitise R query from web users
We're building a web form which will allow (trusted) users to input their own R queries. They will be doing stats analysis against a database.
Questions:
How dangerous is this, in its basic form? ...
0
votes
0answers
72 views
node.js equivalent for ActiveRecord's sanitize_sql method
I'm missing the api for ActiveRecord's sanitize_sql method.
Ideally, I'm looking for an api like:
sanitizeSql("select * from users where id = ?", [11], function(err, results) {
...
});
I'm using ...
0
votes
1answer
84 views
Pymongo ORM injection? Sanitizing input
I think do you know sql injections, and the same for nosql, called orm injection.
I am using pymongo and mongodb, I have user controlled input for a simple find() and for a find with a $regexp ...
0
votes
1answer
88 views
Security for MySql with mb_convert_encoding , mb_detect_encoding and UTF-8 encoding
I plan to use code below for adding records into MySql in a secure way.
My questions:
I always input my own articles by using admin page's form.
Since my mysql database and table are encoded in ...
8
votes
2answers
124 views
What exactly makes PDO secure? [duplicate]
Possible Duplicate:
How prepared statements can protect from SQL injection attacks?
For those of us that are new to PDO, we get that it is more secure and that it is better to use, but what ...
0
votes
4answers
85 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
104 views
What is the best practice to sanitize data with PHP that is serialized by JS via an AJAX Post?
So I have this form and it is being submitted via AJAX and the form data is serialized. So in the backend when I receive this data via PHP, I am simply using parse_str on the data and serializing it ...
-4
votes
1answer
65 views
Do I need to sanitize the code if am using eval()
I am storing forms as well as the form processing scripts, javascript validation scripts and form CSS in the database, am using eval() for PHP code, so my question is do I need to to ...
3
votes
2answers
91 views
Sanitizing data to use within quotes & within URL
If I want to put a value between single quotes in Javascript how can I sanitize/encode it so that any quotes in the value doesn't cause issues?
I also want to then use this value in a query string ...
0
votes
1answer
104 views
Prevent Rails from escaping saved html to database
I'm trying to save the following inside a textarea to one of my models:
<iframe width="560" height="315" src="http://www.youtube.com/watch?v=Ar7PxP76o28" frameborder="0" ...
5
votes
1answer
208 views
Sanitizing SVG using PHP
I am creating charts on the fly as SVGs using d3.js. These charts are dynamically generated based on the selections of authenticated users. Once these charts are generated, the user has the option ...
4
votes
2answers
842 views
angularjs newline filter with no other html
I'm trying to convert newline characters (\n) to html br's.
As per this discussion in the Google Group, here's what I've got:
myApp.filter('newlines', function () {
return function(text) {
...
0
votes
2answers
77 views
Sanitisation of input for a stored MySQL database procedure
I am using a database someone else produced (and I am not really authorised to change it). However, as I was looking into the stored procedures within the database I noticed the following procedure:
...
0
votes
0answers
32 views
WordPress Database Security [closed]
Recently I was working on a function to validate some data that gets saved from a custom Theme Options page. Another programmer working on the project said we shouldn't even bother validating the ...
0
votes
3answers
93 views
+, ', " disappears in php GET search form
I have a search form. I use the following line to get the value. When it returns, it replaces plus sign to space, letters after single/double quotes are deleted. I want to enable users to search for ...
0
votes
1answer
143 views
Sanitization with Javascript and jQuery: Escaping quotes and double quotes automatically?
Does there exist some ready command for escaping quotes without creating quote-mess? Suppose I source [1] type of code-block and I don't want to edit it at all -- some command to handle the ...
1
vote
2answers
72 views
Adding additional dots / full stops / periods causes duplicate URLs
A website has linked to my site incorrectly, adding a full stop at the end of the link:
http://www.example.com/hello-world.
I would have expected this to go to a 404 page, instead, it loads the ...
0
votes
2answers
45 views
Is checking for double dots enough to prevent paths from escaping jail?
I'm writing a service that sends over the network the contents of requested files. However, I'll only answer requests for files that descend from a fixed parent directory.
The first potential ...
0
votes
2answers
28 views
Sanitising form content in an internationalised scenario
In the good old days when I was a web developer (using PHP), I used to run all submitted form data through a regex before commencing any processing. For most cases, I would allow alphanumerics along ...
0
votes
3answers
97 views
who interpretes Perl filename checks?
The code 'if(-e "filename")' tests for existence of a file with name filename in the directory the script containing that code is executed in.
Who does the name check? Perl? The os? bash on POSIX-os?
...
-1
votes
2answers
275 views
php functions for sanitizing web form data [duplicate]
Possible Duplicate:
Best way to prevent SQL injection in PHP?
My html web form in the php site takes data from the client side and puts it into the mysql database. I was wondering the steps ...
0
votes
2answers
281 views
“undefined method `bytesize' for nil:NilClass” appearing after form input with sanitization
I'm using a form_tag in my Rails 3 app for a form not bound to any model. I understand (although please correct me if I'm wrong) that this helper doesn't have the same sanitisation benefits as the ...
3
votes
1answer
222 views
Sanitizing user inputs that are part of dynamic PL/SQL command
I have a table filled by users and its VARCHAR2 records contain a part of executable PL/SQL code "IN(user_input)". I wonder how I can sanitize these user inputs or maybe revrite it to be more ...


