1
vote
5answers
69 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 t …
2
votes
5answers
103 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 …
1
vote
7answers
91 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 …
0
votes
6answers
137 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 apostro …
3
votes
4answers
135 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 he …
0
votes
1answer
49 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 esc …
1
vote
2answers
54 views
Django syntax highlighting causing character escaping issues
I've been working on my own django based blog (like everyone, I know) to sharpen up my python, and I thought added some syntax highlight would be pretty great. I looked at some of …
0
votes
1answer
55 views
Javascript & jQuery escaping quotes
I'm trying to do inline editing for my website using jQuery so I can edit the HTML and text of a page without having to change the source. When I submit the form data though jQuery …
0
votes
1answer
57 views
Powershell Script not accepting $ (Dollar) sign
I am trying to open a SQL data connection using powershell script and my password contains a $ sign:
$cn = new-object system.data.SqlClient.SqlConnection("Data Source=DBNAME;Initi …
1
vote
1answer
64 views
PHP - Getting rid of curly apostrophes
I'm trying to get rid of curly apostrophes (ones pasted from some sort of rich text doc, I imagine) and I seem to be hitting a road block. The code below isn't working for me.
$w …
0
votes
2answers
81 views
how to have quotation marks in html input values
hi
i have following problem - from the server side i get a string like 'hoschi"brother'
i want to put this string into a <input value"MYSTRING" />. this results in somethin …
0
votes
3answers
95 views
Escaping with this PHP function is unsafe?
Hi,
If I escape data with
addcslashes($input,chr(0x00) . chr(0x0d) . chr(0x0a) . chr(0x1a) . chr(0x5c) . chr(0x27) . chr(0x22));
would that be enough to stop SQLi? I have all r …
0
votes
1answer
89 views
how to implement conditional htmlspecialchars?
If it's <script src="/script/jquery.autocomplete.js" type="text/javascript"> ,should call htmlspecialchars.
If it's <pre><code><script src="/script/jquery.aut …
0
votes
4answers
133 views
Parameterized queries with psycopg2 / Python DB-API and PostgreSQL
What's the best way to make psycopg2 pass parameterized queries to PostgreSQL? I don't want to write my own escpaing mechanisms or adapters and the psycopg2 source code and example …
1
vote
3answers
96 views
How to pass xml text as argument in exec ant task?
We need to call an executable from ant that takes xml as part of the argument. Using exec is easy enough, but one of the arguments includes an xml file. We tried loading the xml fi …
