The Enterprise Security API (ESAPI) is a library developed by the Open Web Application Security Project (OWASP). It is available for numerous languages with the aim of providing web security related features missing in those languages (and its internal APIs) itself.
0
votes
0answers
14 views
ClassCastException with org.owasp.esapi.logger when deploying with JBoss
I'm trying to install JasperServer on a Jboss 7.1 server, and after a lot of trouble to successfully deploy the .war I downloaded on their site, when I try to log in I got this exception:
ERROR ...
0
votes
0answers
31 views
Rendering Special Characters having contextual escaping using ESAPI library
This Question is related to cross-site scripting (XSS).
Recommendation was to use contextual escaping on all untrusted data before using it to construct any portion of an HTTP response.
My ...
0
votes
3answers
63 views
How to fix the HTTP Response splitting vulnerability with ESAPI
after a recent findbugs (FB) run it complains about a: Security - HTTP Response splitting vulnerability The following code triggers it:
String referrer = req.getParameter("referrer");
if (referrer ...
0
votes
1answer
52 views
ESAPI.encoder().canonicalize(query) is not working properly
I have a input tag like this
<input class="textBox" type="text" value="<%=ESAPI.encoder().canonicalize(query) %>" autocomplete="off" />
I tried using the ESAPI canonicalize function for ...
0
votes
1answer
37 views
ESAPI encoding issue
We are trying to use ESAPI in our web app. We have following function in servlet.
protected void doGet(HttpServletRequest request,
HttpServletResponse response) throws ...
1
vote
1answer
86 views
ThreadLocal sharing data?
By all means I know the following is not possible, but it is occurring in one of our production environments:
SETUP
ESAPI 2.01
Main servlet filter setting and removing a current request thread ...
0
votes
0answers
229 views
ESAPI properties file in Tomcat
I'm using ESAPI encryption in Tomcat war application. I want to load the ESAPI.properties file from a directory outside of the war, in order to have a different key and salt to each environment.
I ...
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 ...
1
vote
2answers
233 views
Pattern to allow Percentage symbol while using ESAPI
I am using RegEx ^[\\p{L}\\p{N}:\\-.\\s_&.,$()\\*%]*$ for validating one of the fields, using ESAPI.
If my input is 1234% or 1234%% or 1234%%% or %1 it's being considered as TRUE.
But, if I may ...
1
vote
3answers
229 views
java.lang.reflect.InvocationTargetException Encoder class (org.owasp.esapi.reference.DefaultEncoder) CTOR threw exception
I'm a newbie to ESAPIm and I've been looking for answers for days. I got the following error:
Attempting to load ESAPI.properties via file I/O.
Attempting to load ESAPI.properties as resource file ...
0
votes
1answer
234 views
OWASP TOP 10 - 4. Insecure Direct Object References - other way then ESAPI in JSF 1.2 + JAVA + SEAM
Is there anything already integrated in JSF 1.2 or SEAM 2.2.2 to prevent A4-Insecure Direct Object References
I know the ESAPI functions to do it, but i don't want to include another framework into ...
2
votes
0answers
75 views
Can't see log messages of program when using ESAPI
I am a new user of ESAPI
I created the ESAPI properties correctly (I think), the encryption and decryption works.
However, I no longer see the log messages of the original code (it's a map/reduce ...
1
vote
1answer
335 views
ESAPI Java: Why do I get these errors during run time?
import org.owasp.esapi.*;
public class esapiTest
{
public static void main(String args[])
{
test();
}
public static void test()
{
String clean = ESAPI.encoder().canonicalize("someString");
Randomizer ...
2
votes
0answers
544 views
Input Validation using Hibernate Validator(JSR 303) vs other Frameworks (ESAPI, Apache Commons etc)
I've looked at various frameworks for input validations, including Hibernate Validator impl for JSR 303 bean validations, as well as ESAPI validator interface and its DefaultValidator implementation.
...
1
vote
3answers
221 views
esapi: for src attribute, shall we use encodeForHTMLAttribute? encodeForURL? or both?
Which one's correct?
<img src="#encodeForHTMLAttribute(FORM.path)#">
or
<img src="#encodeForURL(FORM.path)#">
or
<img src="#encodeForHTMLAttribute(encodeForURL(FORM.path))#">
...
0
votes
1answer
120 views
Override ESAPI OWASP methods java
I am trying to override an existing method in ESAPI OWASP library, by using ESAPI.override(). Somehow it does not work, do you know why?
Here my code:
public class AntiSamyDOMScannerExpansion ...
1
vote
1answer
103 views
Can I use ESAPI framework with Servlet 3.0?
I wanted to upgrade from Servlet 2.4 to Servlet 3.0. Currently we are using ESAPI in our application and would like to upgrade.
Latest ESAPI release depends on servlet-api-2.4.jar. Does ESAPI support ...
0
votes
0answers
143 views
antisamy-esapi.xml Not found
I am trying to eval OWASP ESAPI, but I can not initialize it.
In a resources folder, the classpath, I have the other files which are needed: ESAPI.properties, validation.properties and ...
0
votes
2answers
189 views
cloudbees & ESAPI - how do I point to the ESAPI directory?
I'm using ESAPI for my project, and added the ESAPI configuration directory to src/main/resources so it is copied to my WAR file (I downloaded the WAR from cloudbees, I can see it was put in ...
3
votes
0answers
243 views
antisamy-esapi.xml not found when trying to use OWASP ESAPI
I have been trying to eval the OWASP ESAPI library, but have been having issues just getting it to initialize properly. I set up a resources folder for ESAPI.properties and validation.properties and ...
0
votes
0answers
200 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 ...
0
votes
1answer
163 views
Regular expression for resume content
I need to accept resume content as a text and process the content. Before processing I thought of using ESAPI.validator().isValidInput to validate the resume content to confirm it doesn't contain ...
1
vote
2answers
716 views
Validating input text in web forms with esapi
how could I use ESAPI to check for unsafe input texts in web forms ? My application is built using struts 1.X, so I assume the validations should be added to Actions classes. Any samples / tutorials ...
0
votes
2answers
231 views
encodeForJavaScript() with JSON.parse, doublequote woes
In CF (9.0.2 with esapi-2.0_rc10.jar):
<cfset test = ['ha"ha"']>
<script>
x = JSON.parse('#encodeForJavaScript(serializeJSON(test))#');
y = JSON.parse('#replace(serializeJSON(test), ...
0
votes
1answer
188 views
XML Data Injection in the response XML from web service
I need to fix the code below for XML Data Injection.
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
DocumentBuilder db = factory.newDocumentBuilder();
InputSource inStream = ...
0
votes
0answers
163 views
ESAPI Regex for Spanish and English Characters to Validate File Data
I am working on the fixes of the code audit report of my project on the security issues. I am using ESAPI for the validation and escaping and for other purposes on the XSS VULNERABILITY and leakage of ...
0
votes
3answers
940 views
Error using esapi
I'm trying to use OWASP ESAPI in my project. but the problem is owasp documentation is too complicated too me. I'm trying using validation from esapi but i can't get the results even if there's no ...
0
votes
2answers
172 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.
0
votes
1answer
242 views
Test Negative scenario of ESAPI.validator().isValidFileContent()
I need to test negative scenario of API owasps ESAPI.validator().isValidFileContent()
i have tried passing bytes of .exe and .ini files, where as the test was through i.e, the return type was true ...
0
votes
2answers
266 views
Should encodeForHtml() & encodeForURL() be used from CF10 onward, in flavor of htmlEditFormat() & urlFormat()?
In an earlier question encodeForHtml() vs htmlEditFormat(), how are they different, it seems like the new encodeForHtml() & encodeForURL() functions are superior than htmlEditFormat() & ...
4
votes
1answer
698 views
encodeForHtml() vs htmlEditFormat()
encodeForHtml() (new in CF10) vs htmlEditFormat(), how are they different?
0
votes
2answers
428 views
ESAPI for PHP nonexistant?
I've been trying to find the PHP version of ESAPI for quite a while now but all I can find is a ton of documentation and interfaces. I couldn't find any functioning code at the repository either. Does ...
1
vote
1answer
435 views
Setting resource directory for ESAPI
Working with OWASP's ESAPI, I found myself stuck at this particular line of code.
private static String customDirectory = System.getProperty("org.owasp.esapi.resources");
The code returns null as ...
2
votes
2answers
361 views
OWASP ESAPI - JavaEncryptor can't be found / not in classpath - but ESAPI is working in other functions
I already had problems with the esapi, but at the end it worked...
I included the OWASP ESAPI in my pom.xml like this
<!-- ESAPI Version 2.0.1 -->
<dependency>
...
7
votes
2answers
2k views
OWASP ESAPI simpleTest in a Maven Java EE project
i have a litte JavaEE project, and i have to secure it with the OWASP ESAPI
i integrated the ESAPI like this in Maven:
<!-- ESAPI Version 2.0.1 -->
<dependency>
...
0
votes
2answers
218 views
How to make a Singleton-Scoped Object Thread-safe (Guice + Owasp ESAPI)
I am currently using the Owasp ESAPI to manage authentication in my java web application, and I am injecting the Singleton MyAuthenticator with guice.injectMembers(this). I would like to step away ...
3
votes
0answers
146 views
Enterprise Security API for C++ [closed]
We are currently working on an open source project for OWASP, creating a C++ API of enterprise security controls.
The Enterprise Security API (ESAPI) has already been defined for Java EE. We are ...
5
votes
3answers
981 views
Java Security vs. ESAPI
I'm a Java developer heading down the road that leads to App Security, and I've stumbled across the OWASP organization and its companion Java API, ESAPI.
In another question I asked on this site ...
1
vote
2answers
211 views
Error using esapi with CF8 and JavaLoader
java.lang.reflect.InvocationTargetException SecurityConfiguration class (org.owasp.esapi.reference.DefaultSecurityConfiguration) CTOR threw exception.
I get the above error when I try to do
...
1
vote
3answers
6k views
Trying to Use ESAPI But getting Error
I am trying to use ESAPI.jar for providing security to my web application.Basically I have just started using ESAPI.jar.
But problem is I am not able to run even a simple program using ESAPI.
The ...
0
votes
1answer
422 views
Any java code samples for session management in OSWAP ESAPI?
The documentation provided in ESAPI for Java is incomplete. Does anyone have operational code samples to share for session management?
P.S.: Other code samples explaining where and how to start with ...
2
votes
2answers
569 views
Is ESAPI.NET a dead project?
I've been recently tasked with leading an effort to improve our input (and output) validation with OWASP recommendations and PCI compliance in mind. In the process, I'm trying to assess the value of ...