The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
28 views

What can be the regular expression for creating groups based on count of characters?

The string I want to run the expression on will be of these two type: 2012-11 ie yyyy-mm 11-2012 ie mm-yyyy I want to write a regular expression for constructing the string of format: ...
0
votes
1answer
24 views

CakePHP: h() vs. Sanitize::html()

CakePHP has a global function called h. It's a convenience method for htmlspecialchars. CakePHP also has a utility called Sanitize, which has a method called html. Here is part of its description: ...
3
votes
1answer
72 views

why do php frameworks restrict url characters

I have been searching for why this is true (from codeigniter's default config file). I want to know why codeigniter acts like this URL sanitization is so important. Not to turn it off, but for the ...
0
votes
1answer
14 views

filter asp.net healthmonitoring

We have activated health monitoring on our website. Recently we are getting a lot of hack attempts which are caused by bots, but also spawn a lot of server errors. Exception type: ...
1
vote
0answers
32 views

$sanitize Custom Whitelist

The $sanitize service tells me that All safe tokens (from a whitelist) are then serialized back to properly escaped html string. I want to only display an even smaller subset of HTML (viz ...
-2
votes
0answers
48 views

How to make clean & safe user input in PHP?

I am creating a huge website with a Registration and Login form. I'm using PHP to create the server side part of the website. I have already created websites before, however I always had problem with ...
3
votes
1answer
56 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 ...
0
votes
0answers
48 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
85 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
103 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
100 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
44 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
36 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
10 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
72 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
172 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
145 views

jQuery don't parse escaped HTML in .html() method

Take for example this HTML: <td onclick="$(this).html('Wanted HTML: <br>; Unwanted HTML: &lt;script&gt;alert(&#39;xss&#39;)&lt;/script&gt;')"> Click to ...
0
votes
1answer
19 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
33 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
72 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
795 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
17 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
28 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
55 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
143 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
38 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
222 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
200 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
162 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
211 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
89 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
50 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
77 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
94 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
95 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
133 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
92 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
121 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
70 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
103 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
130 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
217 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 ...
5
votes
2answers
1k 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
87 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
33 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
102 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
169 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
84 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
47 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 ...

1 2 3 4 5 8