Skip to content

Commit

Permalink
Merge pull request #12 from cesarhernandezgt/tomcat-7.0.109-TT
Browse files Browse the repository at this point in the history
Prepare for release  7.0.109-TT.3
  • Loading branch information
cesarhernandezgt authored Jun 28, 2022
2 parents 8a65811 + f76f148 commit accce4e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
run: unzip -qq tomcat6-build-libs-.zip -d /home/runner/

- name: replace java.7.home
run: sed -i.bak 's:.*java.7.home.*:java.7.home=/opt/hostedtoolcache/jdk/7.0.332/x64:' build.properties.default
run: sed -i.bak 's:.*java.7.home.*:java.7.home=/opt/hostedtoolcache/jdk/7.0.342/x64:' build.properties.default

- name: ant_build
run: ant
Expand Down
2 changes: 1 addition & 1 deletion build.properties.default
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ version.major=7
version.minor=0
version.build=109
version.patch=0
version.suffix=-TT.2
version.suffix=-TT.3

# ----- Source control flags -----
git.branch=7.0.x
Expand Down
4 changes: 4 additions & 0 deletions webapps/docs/changelog.xml
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,10 @@
<bug>65235</bug>: Correct name of <code>changeLocalName</code> in the
documentation for the <code>RemoteIpValve</code>. (markt)
</fix>
<fix>
Examples. Fix CVE-2022-34305, a low severity XSS vulnerability in the
Form authentication example. (markt)
</fix>
</changelog>
</subsection>
<subsection name="Other">
Expand Down
5 changes: 4 additions & 1 deletion webapps/examples/jsp/security/protected/index.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,10 @@ To add some data to the authenticated session, enter it here:
while (names.hasMoreElements()) {
String name = names.nextElement();
%>
<tr><td><%= name %></td><td><%= session.getAttribute(name) %></td>
<tr>
<td><%= util.HTMLFilter.filter(name) %></td>
<td><%= util.HTMLFilter.filter(String.valueOf(session.getAttribute(name))) %></td>
</tr>
<%
}
%>
Expand Down

0 comments on commit accce4e

Please sign in to comment.