1
vote
5answers
68 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 …
0
votes
1answer
46 views
How do I prevent XSS when allowing simple formatting and hyperlink in a Sharepoint webpart?
I'm building a webpart for a Sharepoint site that allows the user to enter information into a textbox that will eventually be showed to other users. The problem is that I need to a …
3
votes
7answers
130 views
Loading executable code through <img> or <a> tags?
I'm working on an app that would allow people to enter arbitrary URL's that would be included in <a href="ARBITRARY URL"> and <img src="ARBITRARY URL" /> tags.
What ty …
0
votes
1answer
29 views
XSS on jsbin.com
Anyone know if jsbin.com implements any protection for XSS or other javascript attacks?
I see jsbin links used fairly regularly on sites like this one and I can't find any indicat …
2
votes
3answers
74 views
input is URL, how to protect it from xss
I have a form text field that accepts a url. When the form is submitted, I insert this field into the database with proper anti-sql-injection. My question though is about xss.
Th …
0
votes
2answers
37 views
ASP.NET: Looking for solution to solve XSS
Hi folks:
We got a long-running website where XSS lurks. The problem comes from that some developers directly - without using HtmlEncode/Decode() - retrieve Request["sth"] to do t …
0
votes
1answer
18 views
XSS and Applet/Param HTML Keywords
I have a Web application and have run a XSS scan on it and it reports that one of my pages that has a Java applet in it could potentially be open to XSS.
The test managed to assig …
1
vote
2answers
31 views
Testing of Web Security
In your experience, what have you found, worked on, or encountered in terms of site vulnerabilities? And what actions did you take to mitigate these issues?
This may include XSS ( …
5
votes
7answers
253 views
JavaScript being injected in my PHP Pages
I have a website, and I just discoverd that somehow someone injected JavaScript on my page. How can I figure out what it does and how they did it?
<script> var x = unescape( …
1
vote
2answers
22 views
How can I prevent an XSS vulnerability when using Flex and ASP.NET to save a file?
I've implemented a PDF generation function in my flex app using alivePDF, and I'm wondering if the process I've used to get the file to the user creates an XSS vulnerability.
This …
0
votes
2answers
25 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/whi …
0
votes
2answers
78 views
JavaScript DOM XSS Injection validation
Is this regular expression enough to catch all cross site scripting attempts when embedding HTML into the DOM. eg: Such as with document.write()
(javascript:|<\s*script.*?\s*&g …
0
votes
1answer
33 views
GWT interfering with XSS preventative measures.
I'm currently in the process of developing a GWT 1.7.1 application that deals with a significant amount of persistent, user generated data so there is a risk of malicious XSS. One …
1
vote
4answers
102 views
What is the difference between AntiXss.HtmlEncode and HttpUtility.HtmlEncode?
I just ran across a question with an answer suggesting the AntiXss library to avoid cross site scripting. Sounded interesting, reading the msdn blog, it appears to just provide an …
0
votes
4answers
61 views
asp.net sanitizing user input
Does asp.net have a built in mechanism that can sanitize all textbox input instead of redirecting to the error page?
I have a textbox input where a user can enter a name, but if t …
