-4
votes
0answers
32 views

Need regex pattern for white list character [closed]

I have created regex pattern which is not success with my different test input, below is my regex pattern ([\\w,()[\\\\]{}\\\":./_\\s])* These are my test input, and regex pattern fail to match ...
-1
votes
0answers
34 views

Why my two test case failed for given Regex Pattern

When i run testcase program, my two str29 and str32 testcase failed, so i need regex pattern which can success all test cases. My Test Class given Below : package ...
0
votes
1answer
44 views

How to use JSTL tags without using jsp UseBean

I have a problem where i am supposed to stop XSS vulnerabilities . A typical example here is in vulnerable.jsp : <h2><%= myObj.getElf() %></h2> The myObj is an object of the ...
5
votes
3answers
133 views

How to configure Spring Controller and/or JAXB to help prevent SQL / XSS injection

I have a Controller in Spring with a method like the following @RequestMapping(value = "/v1/something", method = RequestMethod.POST, headers = "content-type=application/xml") @Valid public void ...
0
votes
1answer
34 views

how to use policy of owasp-java-html-sanitizer on a jsp page

i have been given a task to prevent our website from cross site scripting.the concept is new to me and i googled a lot and got owasp-java-html-sanitizer. i created my own policy with public static ...
1
vote
0answers
35 views

How does encoded script executes when used in link?

I am using the following code: indexRule5.jsp <%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 ...
1
vote
2answers
51 views

is there XSS risk when a page outputs 500 error?

I worked on a website in China last year. THe website has been running fine, but I just received an email fromNetwork Security Bureau in China. They sent me an attachment along with a few URLs. one ...
1
vote
4answers
288 views

How to perform output encoding using filter to prevent XSS?

I am using the following code in servlet: protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { PrintWriter ...
0
votes
1answer
219 views

how to set httponly and session cookie for java web appliaction

Hi I am working on XSS(cross site scripting) issue. my application develop on oracle weblogic portal. we use Servlet 2.5 version. I have added below 3 lines of code in the filter for setting ...
2
votes
1answer
230 views

How to fix endemic XSS vulnerabilities in a Java webapp

I am working on a Java web application that is many years old. Most of the <bean:write>s in the JSPs have filter="false" even when it isn't needed, probably because of developers blindly ...
2
votes
3answers
106 views

Markup language for Java that is XSS safe

I'm writing a java webapp and I'd like to let my users enter text containing markup that is XSS / Cross-Site-Scripting safe. I'd like to save the user generated markup to a database and display it as ...
1
vote
1answer
48 views

NoSuchMethoException on calling DefaultValidator.getValidFileName()

I am trying to use getValidFileName (String, String, list, boolean) method of DefaultValidator class from ESAPI provided jar (esapi-2.0_rc11) to validate file name. But on run time getting No such ...
0
votes
2answers
35 views

coding conventions to tag user provided content (raising awareness of XSS vulnerabilities)

Do you know any good coding conventions that quickly warn a programmer that some variable (or config entry etc.) contains user provided content? I am trying to raise awareness of several attack ...
2
votes
1answer
80 views

Anchors with SafeHtml

How would you use SafeHtml in combination with links? Scenario: Our users can enter unformatted text which may contain links, e.g. I like&love http://www.stackoverflow.com. We want to safely ...
7
votes
1answer
118 views

Some clarifications regarding XSS [closed]

I happen to read about XSS and how to avoid it. From what I have read, I came to know that we need input filtering, proper handling of application code and output encoding to make the web application ...
1
vote
1answer
171 views

Is there a need for GWT SafeHtml when using UiBinder?

Let's say you have the following MyPanel.ui.xml: <!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent"> <ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder" ...
0
votes
2answers
296 views

GWT Safe HTML Framework: When to use, and why?

In reading JavaDocs and various GWT articles, I've occassionally run into the following Safe* classes: SafeHtml SafeHtmlBuilder It looks like SafeHtml is somehow used when creating a new Widget or ...
0
votes
3answers
126 views

Should I use URL rewriting to protect against XSS

Let's say someone enters the following URL in their browser: http://www.mywebsite.com/<script>alert(1)</script> The page is displayed as normal with the alert popup as well. I think ...
2
votes
2answers
269 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
109 views

Get Domain Name That a JSONP Request is Coming From For Security

I would like to allow users of my application to be able to place some code on their website and interact minimally with my server via jsonp requests. However, I only want remote requests to be able ...
0
votes
1answer
113 views

Java allow exceptions to XSS filters

I red this post and others about using JSTL in this matter. My issue is a bit different. One of our features allows users to write hash-tags in their comments. Whenever the comments are listed, a ...
2
votes
4answers
218 views

Safe html in java

I have some input containing HTML like <br> <b> <i> etc. I need a way to escape only the "bad" HTML that exposes my site to XSS etc. After hours of Googeling I found the GWT which ...
0
votes
0answers
199 views

Decode a double-encoded string - java esapi

How do I decode a double-encoded value like %3c%77%68%73%63%68%65%63%6b%3e which is being generated by: ${titleUpdated} ${hiphenText} ${homeTitle} to just be encoded ONCE and then converted to ...
1
vote
1answer
212 views

Escaping specific strings in spring-mvc

I'm using spring MVC (spring 3.1.0). I would like to html encode every string output from my system due to XSS. But there are outputs (like links) that I don't want to encode in that manner - in order ...
0
votes
2answers
202 views

Selective HTML escaping with Java

Is there anything in JavaSE, Spring or Apache Commons StringUtils that would allow me to strip out HTML from a String but also supply a whitelist of HTML entities that I would like to allow? Thanks
0
votes
1answer
109 views

Is is possible to make an XSS in this situation ?

I have a jsp file with the following code snippet: <form action=<%= request.getContextPath() %>/query_flight? ... When using codesecue to do static code check, I got an XSS attack warning: ...
0
votes
1answer
108 views

How to merge java.io.Reader's or wrap Reader's content?

I am wrapping Freemarker template loader in Spring MVC as described here to have default escaping in html pages. So, I need to wrap content from java.io.Reader with my strings, not reading it, not ...
1
vote
0answers
100 views

XSS: Can't follow 302

I am trying to build an app using Java. The app will access a handler for a database, which dynamically runs a query and returns the result. OAuth is being used. The app is running from one port on ...
1
vote
1answer
138 views

How hard is to code against injection/xss? (java, php, .net) [closed]

Question is not how to do input validation or other preventing methods, but how hard do you think is to use them in java/php/.net to keep your application safe. I do not have a metric to decide if ...
3
votes
1answer
293 views

How to secure file uploading in java

I am developing an web application using java where user will upload a zip file. This file will contain css files, images, javascript files, flash files etc. The zip file will be uploaded in the ...
1
vote
1answer
103 views

Code injection in webapplication using .net, java and php

I need to do a presentation on code injection on webapplication and how to prevent it. I am not too familiar with .net, and I mostly know about code injection on SQL or php. Reading and searching ...
0
votes
2answers
171 views

Why to use ESAPI.validator().getValidFileContent() ? What is an invalid or corrupt file?

Please tell me. I am using ESAPI for validation, escaping n all that and i have this confusion. Please share your experience.
3
votes
3answers
283 views

xss vulnerability with servletoutputstream.write

String id = request.getParameter("id") != null ? request.getParameter("id") : "0"; aaaa doc = bbb.getdetailsById(id); byte b[] = doc.getUploaded(); ...
0
votes
2answers
123 views

xss attack issue— with servletoutputstream.write(b, 0, b.length);

byte b[] = do.getFileUploaded(); servletoutputstream = response.getOutputStream(); servletoutputstream.write(b, 0, b.length); i have an issue of XSS attack in the ...
0
votes
3answers
406 views

XSS VULNERABILITY FOR XML — response.getWriter().write(xml.toString());

I need to fix a issue for xss vulnerability. the code segment is below. StringBuffer xml = new StringBuffer(); xml.append("<?xml version=\"1.0\"?>"); ...
2
votes
2answers
421 views

XSS Vulnerabilities Issue in a Servlet Class for response.getOutputStream().write(buffer)

I am fixing issues against the code audit report for my module. The issue is XSS VULNERABILITIES. It has reported issue at the syntax response.getOutputStream().write(buffer); How to fix it ? I have ...
0
votes
1answer
478 views

What would cause a java process to greatly exceed the Xmx or Xss limit?

I have 7 different java daemons that I run (all 7) on 3 different servers. The java command line has -Xmx2048m and -Xss1024k. On these 3 servers, all 21 processes show just under 2.5 GB for VIRT ...
1
vote
1answer
341 views

Autobean and XSS issue

I have a Spring application on the backend and a GWT application on the frontend. When the user is logged in ''index.jsp'' will output the user information as a javascript variable. I am using ...
1
vote
0answers
265 views

Null Byte Injection check in Java app or What is a Null Byte

How does one protect against Null Byte injection? see: http://security.stackexchange.com/q/378 If a request parameter is going to used as a filename, should we look at each byte of the request ...
0
votes
2answers
329 views

how to protect against Null Byte Injection in a java webapp

How can null byte injection be done on a java webapp, Or rather - how does on protect against it? Should I look at each byte of the request parameter and inspect its 'byte' value to be 0 ? I can't ...
2
votes
2answers
407 views

Web application using Ajax with Java based server- Security related

I have a web application which uses Ajax for several tasks. It has Java as it's middleware (Struts 1.x) The issue is that my application was analyzed for potential security risks using static code ...
2
votes
2answers
966 views

JSF 2.0; escape=“false” alternative to prevent XSS?

In my jsf webapplication i'm using a messages.properties to output some text. This text could have html line breaks so format the outputtext. That all works fine, if i set the escape="false" ...
1
vote
2answers
78 views

Is there an API / LIB to remove JavaScript in the JavaBackend?

We integrated a wysiwyg editor in our website. Now we got the problem that some stuff gets saved in the Database what we might dont want, like JavaScript and so on. Is there and API / LIB who could ...
0
votes
1answer
121 views

jQuery.post() with URL set as a Java weblet

I have a java app on my server and I can access it with my browser by going to server.com:8080/app. I've been trying to get my application to access this weblet but because of XSS jQuery.post() gives ...
2
votes
1answer
269 views

Using jsoup to escape disallowed tags

I am evaluating jsoup for the functionality which would sanitize (but not remove!) the non-whitelisted tags. Let's say only <b> tag is allowed, so the following input foo <b>bar</b> ...
1
vote
3answers
990 views

Is URLEncoder.encode(string, “UTF-8”) a poor validation?

In a portion of my J2EE/java code, I do a URLEncoding on the output of getRequestURI() to sanitize it to prevent XSS attacks, but Fortify SCA considers that poor validation. Why?
2
votes
1answer
327 views

how to sanitize the return values of getCookies(), getRequestURL() in HttpServletRequest?

In my Java EE project, I set a filter in web.xml file which will use the Class MyHttpServeltRequestWrapper (extends HttpServletRequestWrapper). I am overriding the methods getParameter/ ...
2
votes
1answer
909 views

jsoup Whitelist relaxed mode too strict for wysiwyg editor

I'm attempting to use jsoup to sanitize the the html posted from a wysiwyg in my client (tinymce as it happens) The relaxed mode appears not to be relaxed enough as by default it strips span ...
0
votes
1answer
655 views

Apache Commons StringEscapeUtils vs JSoup for XSS prevention?

I want to clean user input for help preventing XSS attacks and we don't necessarily care to have a HTML whitelist, as our users shouldn't need to post any HTML / CSS. Eyeing the alternatives out ...
1
vote
2answers
2k views

HTML-Entity escaping to prevent XSS

I have some user-input. Within my code I ensure that the following sings are escaped: & -> &amp; < -> &lt; > -> &gt; At OWASP I read, that there are mor chars to be ...

1 2