Tagged Questions

1
vote
6answers
1k views

Escaping ‘ in Access SQL

I'm trying to do a domain lookup in vba with something like this: DLookup("island", "villages", "village = '" & txtVillage & "'") This works fine until txtVillage is something like Dillon's …
6
votes
13answers
5k views

Pass a PHP string to a Javascript variable (including escaping newlines)

What is the easiest way to encode a PHP string for output to a Javascript variable? I have a PHP string which includes quotes and newlines. I need the contents of this string to be put into a …
0
votes
7answers
344 views

Escaping verbatim string literals

I have the following string which won't compile: String formLookupPull = @"SELECT value1, '"+tableName+"', '"+columnName+"' FROM lkpLookups WHERE ""table"" = '" + tableName + "' and ""field"" = '" + …
3
votes
8answers
172 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 …
1
vote
2answers
27 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?
0
votes
2answers
27 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 …
1
vote
2answers
392 views

system() copy fails, while cmd copy works

In cmd.exe, I can execute the command "copy c:\hello.txt c:\hello2.txt" and it worked fine. But in my C program, I ran this piece of code and got the following error: #include <iostream> using …
2
votes
5answers
68 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
52 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 …
0
votes
2answers
42 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 …
0
votes
1answer
36 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 …
1
vote
1answer
75 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? …
2
votes
5answers
80 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. …
0
votes
0answers
16 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 …
1
vote
3answers
546 views

How to escape JSON string?

Are there any classes/functions available to be used for easy JSON escaping? Id rather not have to write my own.

1 2 3 4 5 12 next
15 30 50 per page