1
vote
2answers
18 views
How to escape single quotes in Flash?
I have a user supplied text and I need to prepend all backslashes and single quotes with a backslash. How to do that?
3
votes
7answers
121 views
Java - escape string to prevent SQL injection
I'm trying to put some anti sql injection in place in java and am finding it very difficult to work with the the "replaceAll" string function. Ultimately I need a function that will convert any …
2
votes
5answers
64 views
Escaping user data, without magic quotes
Hey,
I'm taking a look at how to properly escape data that comes from the outside world before it gets used either for application control, storage, logic.. that kind of thing.
Obviously, with the …
0
votes
2answers
18 views
Adding non-escaped Ampersands to HTML with Nokogiri::XML::Builder
I would like to add things like bullet points "•" and such to html using the XML Builder in Nokogiri, but everything is being escaped. How do I prevent it from being escaped?
I would like the …
0
votes
2answers
47 views
How to treat a returned/stored string like a raw string in Python?
I am trying to .split() a hex string i.e. '\xff\x00' to get a list i.e. ['ff', '00']
This works if I split on a raw string literal i.e. r'\xff\x00' using .split('\\x') but not if I split on a hex …
1
vote
1answer
73 views
PHP object has semicolon (or other strange character) in variable name
Hi,
I've got an object, which contains semicolons in the property names, when I var_dump, I get:
object(Sales) {
[thisisa:propertyname] => 'some value'
}
So, how do I access the property? …
0
votes
1answer
32 views
HtmlSpecialChars equivalent in Javascript?
Apparently, this is harder to find than I thought it would be. And it even is so simple...
Is there a function equivalent to PHP's htmlspecialchars built into Javascript? I know it's fairly easy to …
0
votes
2answers
39 views
XSL to HTML in .Net 1.1: How to include javascript which has ‘&&’ without getting errors?
I am transforming xml to html using xslt in .Net 1.1. One part contains a javascript section where 2 vars are ANDed (&&). The transform throws an unknown entity error. What can I do? I have …
2
votes
5answers
137 views
Why is PDO better for escaping MySQL queries/querystrings than mysql_real_escape_string?
I've been told that I'd be better using PDO for MySQL escaping, rather than mysql_real_escape_string.
Maybe I'm having a brain-dead day (or it may be the fact I'm by no stretch of the imagination a …
2
votes
5answers
74 views
Best practice for HTML escaping user-supplied data with PHP (and ZF)
Note: I'm using Zend Framework, but I think most of this applies to PHP coding in general.
I'm trying to choose a strategy for writing views scripts, possibly with the help of a templating engine. …
1
vote
7answers
95 views
PHP: Do I need to escape this?
It might be a bit unusual, but I need to echo <?php. However, I think that PHP treats it as an actual <?php and starts executing code instead of treating it as a string. How can I escape …
0
votes
6answers
152 views
Escaping an apostrophe in Java
I'm still somewhat new to Java and trying to insert data into a database. I'm getting an error when inserting a string containing 's so my end result would be to escape the apostrophe. How can I …
0
votes
0answers
15 views
What’s the correct way to escape sql passed into SugarCRM’s get_entry_list soap api call ?
By the looks of the SugarCRM soap api you just seem to pass raw SQL into the restriction part of the get_entry_list function call.
Is there a way to escape the values being passed into the …
3
votes
4answers
152 views
Add apostrophe to last name search
I created a proc that will return a list of applicants by lastname. I have a problem searching Applicants with last name that has apostrophe (Example O'Connor). Could you please help finding those …
0
votes
1answer
56 views
Escaping data for use within a CodeIgniter View
I have a controller and a view; the data that I'm working with inside the controller can't be trusted (it's drawn from somewhere external, and isn't $_GET or $_POST).
How do I escape the data when …
