3
votes
4answers
87 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
6answers
95 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 …
0
votes
1answer
32 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
51 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
41 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
80 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
1answer
48 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
52 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
3answers
84 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
2answers
59 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
1answer
22 views
What’s going on with tr(anslate) here?
in applescript if i do:
do shell script "echo \"G:\\CRE\\MV Studios\\Exhibition Projects\"|tr \"\\\\\" \"/\""
I'd expect all my backslashes to come back forward slashes. To make …
4
votes
3answers
147 views
Exact string match in vim? (Like ‘regex-off’ mode in less.)
In vim, I often want to search on a string with finicky characters which need escaping. Is there a way I can turn off the meaning of all special characters, kind of like regex-off …
0
votes
1answer
21 views
Should a colon character be escaped in TEXT values in iCalendar (rfc2445)?
My understanding from reading the specification (http://www.ietf.org/rfc/rfc2445.txt) is that the ":" character should not be escaped in text values like DESCRIPTION.
From the RFC …
1
vote
1answer
11 views
Escaping a block of text in MikTeX?
I am trying to insert a block of code into MikTeX which contains many reserved characters. Is there any way I can escape the whole block of code so that the conversion engine does …
0
votes
1answer
37 views
jinja2: html escape variables
how do I html-escape dangerous unsanitized input in jinja2?
Can I do it inside the template or must it be done in python code?
I have a variable that may contain da<ngero>u …
