Skip to content

Commit 7cabdb9

Browse files
Ben SleekBen Sleek
authored andcommitted
Merge branch 'master' of https://github.com/ESAPI/esapi-java-legacy into kara-master
2 parents 92c2e83 + f6a6e9b commit 7cabdb9

File tree

2 files changed

+39
-1
lines changed

2 files changed

+39
-1
lines changed

README.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
Enterprise Security API for Java (Legacy)
2+
=================
3+
<table border=0>
4+
<tr>
5+
<td>
6+
OWASP ESAPI (The OWASP Enterprise Security API) is a free, open source, web application security control library that makes it easier for programmers to write lower-risk applications. The ESAPI for Java library is designed to make it easier for programmers to retrofit security into existing applications. ESAPI for Java also serves as a solid foundation for new development.
7+
</td>
8+
</tr>
9+
</table>
10+
11+
<b>What does Legacy mean?</b><br/>
12+
<p>This is the legacy branch of ESAPI which means it is an actively maintained branch of the project, however feature development for this branch will not be done. Features that have already been scheduled for the 2.x branch will move forward, but the main focus will be working on the ESAPI 3.x branch.
13+
14+
<b>Where can I find ESAPI 3.x</b><br/>
15+
https://github.com/ESAPI/esapi-java
16+
17+
<b>How can I contribute or fix bugs?</b><br/>
18+
Fork and submit a pull request! Simple as pi!
19+
20+
<b>What happened to Google code?</b><br/>
21+
In mid-2014 ESAPI Migrated all code to GitHub, in November we started using JIRA/Confluence.
22+
23+
<b>What about the issues still located on Google Code</b><br/>
24+
We will be migrating the issues from Google Code to JIRA as time allows, in the meantime - if you would like to work on a Google Code issue, please create a new issue in JIRA and reference the Google Code issue in the issue Description.
25+
26+
Wiki: https://www.owasp.org/index.php/Category:OWASP_Enterprise_Security_API
27+
28+
Nightly Build: https://esapi.ci.cloudbees.com
29+
30+
JIRA: https://owasp-esapi.atlassian.net/browse/ESAPILEG
31+
32+
Documentation: https://owasp-esapi.atlassian.net/wiki/display/ESAPILEG/ESAPI+Legacy (Coming Soon)
33+
34+
Realtime Support available on our IRC Channel:<br/>
35+
Server: irc.freenode.net<br/>
36+
Channel: #esapi<br/>
37+
Webchat http://webchat.freenode.net/
38+

src/main/java/org/owasp/esapi/filters/ClickjackFilter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ public void init(FilterConfig filterConfig) {
9595
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException
9696
{
9797
HttpServletResponse res = (HttpServletResponse)response;
98-
chain.doFilter(request, response);
9998
res.addHeader("X-FRAME-OPTIONS", mode );
99+
chain.doFilter(request, response);
100100
}
101101

102102
/**

0 commit comments

Comments
 (0)