Skip to content

Commit aa0105a

Browse files
authored
Merge pull request #509 from psiinon/release/2.13
Update 2.13 release notes
2 parents ca2db05 + 43327a7 commit aa0105a

File tree

1 file changed

+79
-0
lines changed
  • addOns/help/src/main/javahelp/contents/releases

1 file changed

+79
-0
lines changed

addOns/help/src/main/javahelp/contents/releases/2.13.0.html

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,86 @@ <H1>Release 2.13.0</H1>
1212
This is a bug fix and enhancement release.
1313
<br>
1414
These release notes do not include all of the changes included in add-ons updated since 2.12.0.
15+
<br><br>
16+
Some of the more significant enhancements include:
17+
18+
<H3>HTTP/2 Support</H3>
19+
20+
HTTP/2 is now supported, with no configuration changes required.
21+
<br><br>
22+
If you proxy HTTP/2 traffic through ZAP then ZAP will make the same HTTP/2 requests to the target.
23+
Any tools that work on proxied requests will also automatically use HTTP/2.
24+
25+
<H3>Improved Authentication Handling</H3>
26+
27+
ZAP authentication handling has been significantly overhauled, and ZAP can now auto-authenticate to many web apps by just supplying the URL of the login page along with the credentials.
28+
29+
<H3>Mac Silicon Support</H3>
30+
31+
Mac Silicon is now supported via a new <a href="https://www.zaproxy.org/download/#main">installer</a>
32+
and in the <a href="https://www.zaproxy.org/download/#docker">Docker images</a>.
33+
34+
<H3>GitHub Container Registry</H3>
35+
36+
As explained in <a href="https://www.zaproxy.org/blog/2023-06-13-ghcr-docker-images/">this blog post</a>
37+
the ZAP Docker images are now also available in the GitHub Container Registry.
38+
<br><br>
39+
This may well be a better alternative for many users as, unlike Docker Hub, there is currently no rate limiting on pulls.
40+
41+
<H3>Default Threads</H3>
42+
43+
All of the "attack" tools which use threading, including both spiders and active scanner, have been changed to use 2x the number of processors as the default number of threads. Using more threads has been shown to significantly reduce the time the scanners take to run.
44+
45+
<H3>Network Rate Limiting</H3>
46+
47+
The Network add-on now supports a rate limiting feature which allows you to limit the request rate of HTTP/HTTPS (not web sockets) traffic to hosts or domains to prevent overloading the target or being blocked.
48+
For more details see the <a href="https://www.zaproxy.org/docs/desktop/addons/network/options/ratelimit/">Rate Limit</a> help page.
49+
<br><br>
50+
Note that the Active Scan <a href="https://www.zaproxy.org/docs/desktop/ui/dialogs/options/ascan/#delay-when-scanning-in-milliseconds">Delay When Scanning</a>
51+
feature has been deprecated and will be removed in a future release.
52+
53+
<H3>Network Global Exclusions</H3>
54+
55+
The Global Exclusions functionality has been moved to the Network add-on. This will allow us to update it more easily to keep
56+
up with browser changes.
57+
58+
<h3>Scan Rule Promotions</h3>
59+
60+
The following <b>Active</b> scan rules have been promoted to <b>Release</b> status:
61+
62+
<ul>
63+
<li><a href="https://www.zaproxy.org/docs/alerts/40043/">Log4Shell</a>
64+
<li><a href="https://www.zaproxy.org/docs/alerts/40042/">Spring Actuator Information Leak</a>
65+
<li><a href="https://www.zaproxy.org/docs/alerts/40045/">Spring4Shell</a>
66+
<li><a href="https://www.zaproxy.org/docs/alerts/90035/">Server Side Template Injection</a>
67+
<li><a href="https://www.zaproxy.org/docs/alerts/90036/">Server Side Template Injection (Blind)</a>
68+
<li><a href="https://www.zaproxy.org/docs/alerts/90021/">XPath Injection</a>
69+
</ul>
70+
71+
The following <b>Active</b> scan rules have been promoted to <b>Beta</b> status (and will therefore now be included in the Packaged scans):
72+
73+
<ul>
74+
<li><a href="https://www.zaproxy.org/docs/alerts/40046/">Server Side Request Forgery</a>
75+
<li><a href="https://www.zaproxy.org/docs/alerts/40047/">Text4shell (CVE-2022-42889)</a>
76+
</ul>
77+
78+
The following <b>Passive</b> scan rules have been promoted to <b>Beta</b> status (and will therefore now be included in the Packaged scans):
79+
80+
<ul>
81+
<li><a href="https://www.zaproxy.org/docs/alerts/90004/">Insufficient Site Isolation Against Spectre Vulnerability</a>
82+
<li><a href="https://www.zaproxy.org/docs/alerts/10099/">Source Code Disclosure</a>
83+
</ul>
1584

1685
<h3>Dependency Updates</h3>
1786

1887
As usual the release includes dependency updates.
1988
<p>
89+
The <a href="https://www.zaproxy.org/docs/desktop/addons/selenium/">Selenium</a> add-on has been updated to use the Selenium v4 library.
90+
One benefit this brings is that the output from browsers will no longer be shown in the ZAP output - this has been
91+
confusing to many people and has not provided any real benefit.
92+
<br><br>
93+
If you have any custom code that directly accesses Selenium classes then you may need to update it.
94+
<p>
2095
The following libraries were updated:
2196

2297
<ul>
@@ -59,6 +134,9 @@ <H2>Enhancements</H2>
59134
<li><a href="https://github.com/zaproxy/zaproxy/issues/7887">Issue 7887</a> : Show alert ref in the Alert panel</li>
60135
<li><a href="https://github.com/zaproxy/zaproxy/issues/7888">Issue 7888</a> : Deprecate Global Exclude URLs</li>
61136
<li><a href="https://github.com/zaproxy/zaproxy/issues/7918">Issue 7918</a> : Use Adoptium for Java download in the executable</li>
137+
<li><a href="https://github.com/zaproxy/zaproxy/issues/7933">Issue 7933</a> : Search auth messages</li>
138+
<li><a href="https://github.com/zaproxy/zaproxy/issues/7937">Issue 7937</a> : Deprecate Active Scan option Delay When Scanning</li>
139+
<li><a href="https://github.com/zaproxy/zaproxy/issues/7938">Issue 7938</a> : Allow to read enum values with `AbstractParam`</li>
62140
</ul>
63141

64142
<H2>Bug fixes</H2>
@@ -87,6 +165,7 @@ <H2>Bug fixes</H2>
87165
<li><a href="https://github.com/zaproxy/zaproxy/issues/7844">Issue 7844</a> : Retain add-on's mandatory state</li>
88166
<li><a href="https://github.com/zaproxy/zaproxy/issues/7873">Issue 7873</a> : Sort Sites nodes with different case consistently</li>
89167
<li><a href="https://github.com/zaproxy/zaproxy/issues/7883">Issue 7883</a> : Stop Active Scan's Analyser</li>
168+
<li><a href="https://github.com/zaproxy/zaproxy/issues/7936">Issue 7936</a> : Update content-length in auth template scripts</li>
90169
</ul>
91170

92171

0 commit comments

Comments
 (0)