Skip to main content

Questions tagged [escaping]

0 votes
3 answers
689 views

I know that: Computer keyboards have an Escape Key The symbol for the Escape Key is U+238B Broken Circle with Northwest Arrow (⎋) and I also know that: HTML5 & CSS3 both have escape characters ...
Rounin's user avatar
  • 295
4 votes
2 answers
3k views

We have a REST API that returns user generated content from a database. Before inserting the data into the database the data is sanitized. But when returning the data we do not escape / decode the ...
sveri's user avatar
  • 585
4 votes
1 answer
1k views

I'm working on parsers that not only process delimited content, but also escape sequences within certain portions of that content. I'm contemplating the efficiency of several approaches to ...
rgchris's user avatar
  • 365
2 votes
0 answers
568 views

Two of the top 3 security vulnerabilities in the OWASP Top 10 come from trusting user input (Injection and XSS). To deal with this, Ruby lets you "taint" Strings received from the user as unsafe. In ...
GlenPeterson's user avatar
0 votes
4 answers
940 views

It often happens that after designing my regexp (on regex101.com) I want to paste it in my program. Consider this regexp that matches numbers and string (but keep in mind this is general question!): ^...
Tomáš Zato's user avatar
-1 votes
2 answers
551 views

I'm guessing the answer is no because there's quite a few examples, including right here. If I let users submit their own HTML text and then render it side by side, what could the user do that would ...
leylandski's user avatar
2 votes
1 answer
3k views

I need to escape special characters which are sent to Apache Lucene. Since the code will run on a production server, I want the code to be the fastest possible. I've seen multiple ways to do it: ...
Μenelaοs's user avatar
1 vote
1 answer
2k views

Consider the following regex (no unicode): Example:\x04\x05\x41 Suppose you search this regex case-insensitively. Would you expect it to search the final \x41 in case-sensitive manner? People whom I ...
Muxecoid's user avatar
  • 111
0 votes
2 answers
1k views

I'm not quite sure if this is a question for programmers.se rather than stackoverflow, but here goes. So Facebook [or any other large company] when given something like an apostrophe or html, can ...
Someone's user avatar
  • 191
2 votes
1 answer
1k views

So, I'm expending this email submission form script for a client and saw something rather strange to my experience. As you can see below, the original programmer has sanitised the user input. Is this ...
Banago's user avatar
  • 276
2 votes
3 answers
230 views

Can escaping functions (e.g. mysql_real_esacpe_string ) be moved down to the database layer where we would loop through all parameters passed for all queries and escape all strings. Would that be a ...
Imran Omar Bukhsh's user avatar