Tagged Questions
-4
votes
0answers
39 views
htmlentities() strip_tags() vs FILTER_SANITIZE_STRING [closed]
I have a variable $string which takes input from the user. I want to apply some function on this $string to protect against XSS.
Is really a difference between:
$string = ...
1
vote
2answers
80 views
Can we say we are safe from XSS attacks if we remove all script and java words from input
I am using asp.net htmleditorextender and unfortunately there is no working XSS sanitizer right now. So for as quick solution i am replacing all of the script and java words from user input as below
...
1
vote
1answer
103 views
jQuery don't parse escaped HTML in .html() method
Take for example this HTML:
<td onclick="$(this).html('Wanted HTML: <br>; Unwanted HTML: <script>alert('xss')</script>')">
Click to ...
0
votes
0answers
22 views
unable to validate some script tags in node-validator
HI I have a connect server and inside that i am using node-validator module to perform some sanitizations it worked for most of the tags mentioned in the link below
...
2
votes
2answers
449 views
Javascript XSS Prevention
There is a Node.js project that sanitizes data and there is an OWASP library for JavaScript that handles sanitization to prevent XSS.
I have been benchmarking these libraries, and they are pretty ...
2
votes
2answers
268 views
How to allow specific characters with OWASP HTML Sanitizer?
I am using the OWASP Html Sanitizer to prevent XSS attacks on my web app. For many fields that should be plain text the Sanitizer is doing more than I expect.
For example:
HtmlPolicyBuilder ...
1
vote
1answer
79 views
What are the secure and insecure css styles (what would we filter out and what would we allow)?
I want to allow custom css submitted by users on my website.
I know that some combinations of the styles may not be safe, for example a position:absolute.
And yet, the above would not hurt if we ...
3
votes
2answers
1k views
How i can prevent AntiXSS Sanitizer from removing html5 <br> tag from AjaxControlToolkit HtmlEditorExtender generated html
I have added a Htmleditorextender ajax control to my asp.net web application with putting XSS sanitizer in it for XSS security but now when I retrieve the text from Htmleditorextender the sanitizer ...
3
votes
3answers
292 views
PHP htmlentities() on input vs on output [duplicate]
Possible Duplicate:
PHP htmlentities() on input before DB insert, instead of on output
For a PHP application that's simply trying to protect itself against the likes of XSS, at what stage ...
1
vote
4answers
329 views
XSS safety - remove all scripts, allow everything else
We are displaying 3rd party HTML on our web page that should correctly render most things, including links and images. We basically want to sanitize against all scripts, i.e.
...
0
votes
2answers
351 views
PHP - Form protection examples
Is there a list of example attacks that can be used to test a PHP form?
In particular it is for a forum, which is using a parser to parse bbcode and doesn't accept HTML directly.
At the moment it ...
3
votes
2answers
68 views
Does strip_tags() handle embedded tags
I'm away from a computer with PHP installed and was wondering what the result of strip_tags() would be on the following text:
"<scr<h1>ipt>alert('oh oh')</scr</h1>ipt>"
Would ...
17
votes
13answers
2k views
What is the correct way to detect whether string inputs contain HTML or not?
When reciving user input on forms I want to detect whether fields like "username" or "address" does not contain markup that has a special meaning in XML (RSS feeds) or (X)HTML (when displayed).
So ...
2
votes
2answers
241 views
Should raw HTML be sanitized at time of output or input?
CakePHP's page on Data Santiziation states one should store possibly raw HTML from user input in one's database and sanitize at time of output:
For sanitization against XSS its generally better to ...
1
vote
2answers
368 views
<script> tags - Will leaving/creating a space (< script>) reduce the threat of XSS?
I'm creating a chat widget for my web site. The users will be able to input straight text - no html.
In an effort to eliminate HTML tags AND to allow users to use "<" and ">", I am taking their ...
4
votes
3answers
219 views
Is there risk to having unsanitized user input display in a textarea?
I save two versions of user input in the following sequence:
Untrusted user enters raw markdown.
Raw markdown is stored in one table.
A copy of the raw markdown is converted into HTML.
HTML is ...
1
vote
2answers
743 views
Sanitize (not remove) HTML input for breaking the document, but not other tags
Lets assume we have a user form that generates HTML input, and the following could be an example of what gets POSTed to PHP.
<p>Hello</p>
...
12
votes
1answer
4k views
Secure XSS cleaning function (updated regularly)
I've been hunting around the net now for a few days trying to figure this out but getting conflicting answers.
Is there a library, class or function for PHP that securely sanitizes/encodes a string ...
1
vote
1answer
129 views
Is it safe to turn urls into links?
I want to turn urls in the user comments, into links.
I don't have time to test bloated anti-xss libraries like HTML Purify, so I wouldn't be allowing any html tags.
I just want to make everything ...
8
votes
2answers
2k views
Best practice for allowing Markdown in Python, while preventing XSS attacks?
I need to let users enter Markdown content to my web app, which has a Python back end. I don’t want to needlessly restrict their entries (e.g. by not allowing any HTML, which goes against the spirit ...
2
votes
2answers
311 views
Explain this XSS string, it uses perl
I am trying to test one of my php sanitization classes against a few xss scripts available on
http://ha.ckers.org/xss.html
So one of the scripts in there has perl in it, is this some kind of a perl ...
0
votes
2answers
323 views
sanitize and namespace
I have some "namespaced" custom tags(developed with radius gem) that i would like to use in my rails application. I'd like to use sanitize gem to prevent xss-attacks, but there are no descriptions how ...
1
vote
3answers
94 views
Do i need to take care when setting src attribute of an image, where src path is specified by user?
I am creating a page wherein user will specify the url of an image. This url will be stored in DB, and then it will be retrieve back to display the image. So far it is good if the user is not trying ...
1
vote
2answers
926 views
Why so much HTML input sanitization necessary?
I have implemented a search engine in C for my html website. My entire web is programmed in C.
I understand that html input sanitization is necessary because an attacker can input these 2 html ...
7
votes
3answers
6k views
How to sanitize HTML code in Java to prevent XSS attacks?
I'm looking for class/util etc. to sanitize HTML code i.e. remove dangerous tags, attributes and values to avoid XSS and similar attacks.
I get html code from rich text editor (e.g. TinyMCE) but it ...
6
votes
2answers
742 views
Is there a good Javascript based HTML parsing library available?
My goal is to take HTML entered by an end user, remove certain unsafe tags like <script>, and add it to the document. Does anybody know of a good Javascript library to sanitize html?
I searched ...
4
votes
4answers
4k views
PHP input sanitizer?
What are some good PHP html (input) sanitizers?
Preferably, if something is built in - I'd like to us that.
UPDATE:
Per the request, via comments, input should not allow HTML (and obviously prevent ...
2
votes
1answer
510 views
Sanitizing input for display in view when using simple_format
I'm trying to figure out the right way to display comments such that newlines and links are displayed. I know that usually, you should display user-inputs only when escaping html with h(). That of ...
3
votes
3answers
1k views
PHP Markdown XSS Sanitizer
I'm looking for a simple PHP library that helps filter XSS vulnerabilities in PHP Markdown output. I.E. PHP Markdown will parse things such as:
[XSS Vulnerability](javascript:alert('xss'))
I've ...
6
votes
5answers
1k views
Markdown and XSS
Ok, so I have been reading about markdown here on SO and elsewhere and the steps between user-input and the db are usually given as
convert markdown to html
sanitize html (w/whitelist)
insert into ...
1
vote
1answer
625 views
Texts/codes to test for XSS attacks in my software/website
Firstly, I do not have any malicious intent out of this question. I would like to know what text to copy paste and test in my text areas and text boxes to see if they are stripped correctly.
...
4
votes
3answers
1k views
Sanitize Markdown in Rails?
Users can edit "articles" in my application. Each article is mastered in the DB and sent to the client as Markdown -- I convert it to HTML client side with Javascript.
I'm doing this so that when the ...
3
votes
2answers
406 views
Cleaning all inline events from HTML tags
For HTML input, I want to neutralize all HTML elements that have inline js (onclick="..", onmouseout=".." etc).
I am thinking, isn't it enough to encode the following chars? =,(,)
So ...
5
votes
6answers
1k views
Filtering JavaScript out of HTML
I have a rich text editor that passes HTML to the server. That HTML is then displayed to other users. I want to make sure there is no JavaScript in that HTML. Is there any way to do this?
Also, I'm ...
3
votes
6answers
169 views
Removing Javascript from HREFs
We want to allow "normal" href links to other webpages, but we don't want to allow anyone to sneak in client-side scripting.
Is searching for "javascript:" within the HREF and ...
4
votes
5answers
745 views
Should I sanitize HTML markup for a hosted CMS?
I am looking at starting a hosted CMS-like service for customers.
As it would, it would require the customer to input text which would be served up to anyone that comes to visit their site. I am ...
29
votes
14answers
5k views
When is it Best to Sanitize User Input?
User equals untrustworthy. Never trust untrustworthy user's input. I get that. However, I am wondering when the best time to sanitize input is. For example, do you blindly store user input and then ...
