0
votes
2answers
39 views
Best way to find illegal characters in a bunch of ISO-889-1 web pages?
I have a bunch of html files in a site that were created in the year 2000 and have been maintained to this day. We've recently began an effort to replace illegal characters with th …
0
votes
3answers
115 views
HTML entity encoding (convert ‘<’ to ‘<’) on iPhone in objective-c
I'm developing an application for the iPhone that has inApp-mail sending capabilities. So far so good, but now I want to avoid html-injections as some parts of the mail are user-ge …
0
votes
1answer
42 views
Spark view engine automatically applies H() tu ${ … }
This is part of my spark partial view (it is called TaskSearch):
${ Html.DropDownList("Search.Status", Model.Statuses, "All") }
it is generated by non-spark view with code:
< …
0
votes
5answers
1k views
How to HTML encode a string in JavaScript from a Firefox extension
So I know I can write my own HTML-encoding function like this:
function getHTMLEncode(t) {
return t.toString().replace(/&/g,"&").replace(/"/g,""").replace …
6
votes
8answers
4k views
How do I perform HTML decoding/encoding using Python/Django?
I have a string that is html encoded:
<img class="size-medium wp-image-113"
style="margin-left: 15px;" title="su1" …
0
votes
1answer
23 views
SSIS: HTML Encoding a URL in a Script Task
I would like to URL encode a URL in a C# SSIS script task. I have tried using System.Web.HttpServerUtility, but intellisense shows it doesn't seem to be aware of "Server". Here's …
8
votes
11answers
5k views
A potentially dangerous Request.Form value was detected from the client
Everytime a user posts something containing < or > in a page in my webapp, I get this exception thrown.
I don't want to go into the discussion about the smartness of throwing a …
1
vote
2answers
32 views
View webpage in Hebrew language
hi,
I have a website with few HTML pages. How can I display them in the Hebrew language?
What are the steps that I should follow to ensure it is viewed in different languages for …
2
votes
5answers
129 views
HTMLEncode script tags only
I'm working on StackQL.net, which is just a simple web site that allows you to run ad hoc tsql queries on the StackOverflow public dataset. It's ugly (I'm not a graphic designer), …
8
votes
5answers
715 views
HTML encode user input when storing or when displaying
Simple question that keeps bugging me.
Should I HTML encode user input right away and store the encoded contents in the database, or should I store the raw values and HTML encode …
0
votes
3answers
110 views
Chinese characters in mailto subject line of email
I'm looking to add some Chinese characters in a mailto: email link.
I've tried
<a href="mailto:email@address.com?subject=调查 / Inquiry">Email</a>
but when I click on …
0
votes
4answers
328 views
Is there a JDK class to do HTML encoding (but not URL encoding)?
I am of course familiar with the java.net.URLEncoder and java.net.URLDecoder classes. However, I only need HTML-style encoding. (I don't want ' ' replaced with '+', etc). I am n …
1
vote
3answers
162 views
Regex for Encoded HTML
I'd like to create a regex that will match an opening <a> tag containing an href attribute only:
<a href="doesntmatter.com">
It should match the above, but not match …
0
votes
2answers
91 views
HTML encoded links and anchors
I have a use case where I am setting the page focus to a particular element (having an anchor before it). When a user is not signed in, there is a redirect to the login page and af …
0
votes
5answers
165 views
How to handle encoded inputs that need to be edited?
Using Microsoft's AntiXssLibrary, how do you handle input that needs to be edited later?
For example:
User enters:
<i>title</i>
Saved to the database as:
< …
