Skip to content

Commit e91273f

Browse files
authored
Merge pull request #3028 from zapbot/update-data
Update data
2 parents d2c9016 + 53f223b commit e91273f

File tree

29 files changed

+609
-480
lines changed

29 files changed

+609
-480
lines changed

site/content/docs/desktop/addons/ajax-spider/_index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ weight: 1
66
cascade:
77
addon:
88
id: spiderAjax
9-
version: 23.22.0
9+
version: 23.23.0
1010
---
1111

1212
# AJAX Spider

site/content/docs/desktop/addons/authentication-helper/_index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ weight: 1
66
cascade:
77
addon:
88
id: authhelper
9-
version: 0.24.0
9+
version: 0.25.0
1010
---
1111

1212
# Authentication Helper

site/content/docs/desktop/addons/authentication-helper/auth-report-json.md

+24
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,19 @@ The following summary items are used:
4848
| auth.summary.verif | false | Verification URL not identified |
4949
| auth.summary.verif | true | Verification URL identified |
5050

51+
#### Failure Details
52+
53+
The following failure detail items are used:
54+
55+
| Key | Description |
56+
|:----------------------------------|:---------------------------------------------------------------------------------------|
57+
| auth.failure.overall | All authentication elements passed yet authentication was deemed a failure in the end. |
58+
| auth.failure.pass_count | No successful browser logins. |
59+
| auth.failure.session_mgmt | Failed to identify session management. |
60+
| auth.failure.login_failures | One or more failed logins. |
61+
| auth.failure.no_successful_logins | No successful browser logins. |
62+
| auth.failure.verif_ident | Failed to identify verification URL. |
63+
5164
### Automation Framework Environment
5265

5366
This is the [Automation Framework environment](/docs/desktop/addons/automation-framework/environment/) that can be used to recreate the context being tested.
@@ -189,6 +202,11 @@ When this section is enabled the step can, optionally, include all the input ele
189202
"@generated": "Mon, 10 Feb 2025 17:27:23",
190203
"site": "http:\/\/localhost:9091"
191204
,"summaryItems": [
205+
{
206+
"description": "Authentication appeared to work",
207+
"passed": true,
208+
"key": "auth.summary.auth"
209+
},
192210
{
193211
"description": "Username field identified",
194212
"passed": true,
@@ -210,6 +228,12 @@ When this section is enabled the step can, optionally, include all the input ele
210228
"key": "auth.summary.verif"
211229
}
212230
]
231+
,"failureReasons": [
232+
{
233+
"key": "auth.failure.no_successful_logins",
234+
"description": "No successful logins."
235+
}
236+
]
213237
,"afEnv": "env:\n contexts:\n - name: simple-json-bearer-cookie\n urls:\n - http:\/\/localhost:9091\/auth\/simple-json-bearer-cookie\n includePaths:\n - http:\/\/localhost:9091\/auth\/simple-json-bearer-cookie.*\n authentication:\n method: browser\n parameters:\n loginPageUrl: http:\/\/localhost:9091\/auth\/simple-json-bearer-cookie\/\n loginPageWait: 5\n browserId: firefox-headless\n steps: []\n verification:\n method: poll\n loggedInRegex: \\Q 200 OK\\E\n loggedOutRegex: \\Q 403 Forbidden\\E\n pollFrequency: 0\n pollUnits: seconds\n pollUrl: http:\/\/localhost:9091\/auth\/simple-json-bearer-cookie\/user\n pollPostData: \"\"\n sessionManagement:\n method: headers\n parameters:\n Authorization: \"Bearer {%json:accesstoken%}\"\n Cookie: \"token={%json:accesstoken%}\"\n technology: {}\n structure: {}\n users:\n - name: test\n credentials:\n password: password123\n username: [email protected]\n parameters: {}\n"
214238
,"statistics": [
215239
{

site/content/docs/desktop/addons/automation-framework/_index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ weight: 1
66
cascade:
77
addon:
88
id: automation
9-
version: 0.48.0
9+
version: 0.49.0
1010
---
1111

1212
# Automation Framework

site/content/docs/desktop/addons/automation-framework/environment.md

+5
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,11 @@ env: # The environment, mandatory
6565
credentials: # List of user credentials - may include any required for scripts
6666
username: # String, the username to use when authenticating, vars supported
6767
password: # String, the password to use when authenticating, vars supported
68+
totp: # The TOTP data, supported by Browser Based Authentication.
69+
secret: # String, the secret.
70+
period: # Int, the period. Default: 30
71+
digits: # Int, the number of digits. Default: 6
72+
algorithm: # String, the algorithm. Default: SHA1
6873
vars: # List of 0 or more custom variables to be used throughout the config file
6974
myVarOne: CustomConfigVarOne # Can be used as ${myVarOne} anywhere throughout the config
7075
myVarTwo: ${myVarOne}.VarTwo # Can refer other vars

site/content/docs/desktop/addons/client-side-integration/_index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ weight: 1
66
cascade:
77
addon:
88
id: client
9-
version: 0.14.0
9+
version: 0.15.0
1010
---
1111

1212
# Client Side Integration

site/content/docs/desktop/addons/common-library/_index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ weight: 1
66
cascade:
77
addon:
88
id: commonlib
9-
version: 1.30.0
9+
version: 1.31.0
1010
---
1111

1212
# Common Library
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
# This page was generated from the add-on.
3+
title: Tabbed Output Panel
4+
type: userguide
5+
weight: 1
6+
---
7+
8+
# Tabbed Output Panel
9+
10+
The Common Library add-on provides a tabbed output panel that replaces the default output panel in ZAP. This allows other add-ons to optionally log messages under named tabs in the output panel. If a name is not provided, messages are shown under the "General" tab and exceptions are shown under the "Errors" tab by default.
11+
12+
13+
While the Output tab itself can be detached, the tabs within the Output tab can also be detached if desired.
14+
To detach a tab, right click on it and select "Move Tab to New Window" in the context menu that pops up.
15+
16+
17+
Right-clicking within the body of a tab will display a context menu with relevant options such as Copy and Find.
18+
All standard shortcuts (such as Ctrl/Cmd + A/C/F), should work as expected too.
19+
20+
21+
Whenever new output is appended to any tab, a green dot will appear over the tab icon as well as the output panel
22+
icon to indicate that there is new content.
23+
The green dot will disappear from the tab when the content is viewed, and from the output panel when new content
24+
from all tabs (including detached tabs) has been seen.

site/content/docs/desktop/addons/import-export/_index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ weight: 1
66
cascade:
77
addon:
88
id: exim
9-
version: 0.13.0
9+
version: 0.14.0
1010
---
1111

1212
# Import/Export

site/content/docs/desktop/addons/passive-scan-rules/_index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ weight: 1
66
cascade:
77
addon:
88
id: pscanrules
9-
version: 63.0.0
9+
version: 64.0.0
1010
---
1111

1212
# Passive Scan Rules

site/content/docs/desktop/addons/passive-scanner/_index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ weight: 1
66
cascade:
77
addon:
88
id: pscan
9-
version: 0.2.0
9+
version: 0.2.1
1010
---
1111

1212
# Passive Scanner Add-on

site/content/docs/desktop/addons/script-console/_index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ weight: 1
66
cascade:
77
addon:
88
id: scripts
9-
version: 45.8.0
9+
version: 45.9.0
1010
---
1111

1212
# Script Console

site/content/docs/desktop/addons/selenium/_index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ weight: 1
66
cascade:
77
addon:
88
id: selenium
9-
version: 15.35.0
9+
version: 15.36.0
1010
---
1111

1212
# Selenium

site/content/docs/desktop/addons/spider/_index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ weight: 1
66
cascade:
77
addon:
88
id: spider
9-
version: 0.13.0
9+
version: 0.14.0
1010
---
1111

1212
# Spider

site/content/docs/desktop/addons/spider/options.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ By default this is set to zero which means there are no limits applied to the nu
4040

4141
### Maximum parse size
4242

43-
Defines the maximum size, in bytes, that a response might have to be parsed. This allows the Spider to skip big responses/files.
43+
Defines the maximum size, in bytes, that a response might have to be parsed. This allows the Spider to skip big responses/files. Zero means unlimited size.
4444

4545
### Domains Always in Scope
4646

site/content/docs/desktop/addons/zest/_index.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ weight: 1
66
cascade:
77
addon:
88
id: zest
9-
version: 48.4.0
9+
version: 48.5.0
1010
---
1111

1212
# Zest
@@ -99,6 +99,10 @@ There are also some right click options available when you select text in the Re
9999
Zest includes a set of 'built in' variables as well as allowing you to declare your own.
100100
A right click menu is provided (where relevant) in the edit dialogs to allow you to paste in any of the available variable names.
101101

102+
## Authentication Scripts
103+
104+
Authentication scripts can use a custom ZAP variable, called `TOTP`, to send a value to an input field with a TOTP code generated from the user's credentials TOTP data.
105+
102106
## External links
103107

104108
| | | |

site/content/docs/sbom/authhelper.md

+34-46
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ weight: 1
66
cascade:
77
addon:
88
id: authhelper
9-
version: 0.24.0
9+
version: 0.25.0
1010
sbom:
1111
format: CycloneDX
12-
downloadUrl: https://github.com/zaproxy/zap-extensions/releases/download/authhelper-v0.24.0/bom.json
12+
downloadUrl: https://github.com/zaproxy/zap-extensions/releases/download/authhelper-v0.25.0/bom.json
1313
components:
1414
- name: aopalliance
1515
version: '1.0'
@@ -78,7 +78,7 @@ sbom:
7878
version: 1.16.0
7979
licenses: Apache-2.0
8080
- name: byte-buddy
81-
version: 1.15.11
81+
version: 1.17.2
8282
licenses: Apache-2.0
8383
- name: byte-buddy-agent
8484
version: 1.14.9
@@ -89,9 +89,6 @@ sbom:
8989
- name: checker-qual
9090
version: 3.37.0
9191
licenses: MIT
92-
- name: checker-qual
93-
version: 3.43.0
94-
licenses: MIT
9592
- name: client
9693
version: 0.15.0
9794
licenses: ''
@@ -213,7 +210,7 @@ sbom:
213210
version: 1.0.1
214211
licenses: Apache-2.0
215212
- name: failureaccess
216-
version: 1.0.2
213+
version: 1.0.3
217214
licenses: Apache-2.0
218215
- name: findbugs-annotations
219216
version: 3.0.1
@@ -246,7 +243,7 @@ sbom:
246243
version: 32.1.3-jre
247244
licenses: Apache-2.0
248245
- name: guava
249-
version: 33.4.0-jre
246+
version: 33.4.5-jre
250247
licenses: Apache-2.0
251248
- name: guice
252249
version: 5.0.1
@@ -528,40 +525,34 @@ sbom:
528525
version: 3.3.4
529526
licenses: Apache-2.0
530527
- name: opentelemetry-api
531-
version: 1.46.0
532-
licenses: Apache-2.0
533-
- name: opentelemetry-api-incubator
534-
version: 1.46.0-alpha
528+
version: 1.48.0
535529
licenses: Apache-2.0
536530
- name: opentelemetry-context
537-
version: 1.46.0
531+
version: 1.48.0
538532
licenses: Apache-2.0
539533
- name: opentelemetry-exporter-logging
540-
version: 1.46.0
534+
version: 1.48.0
541535
licenses: Apache-2.0
542536
- name: opentelemetry-sdk
543-
version: 1.46.0
537+
version: 1.48.0
544538
licenses: Apache-2.0
545539
- name: opentelemetry-sdk-common
546-
version: 1.46.0
540+
version: 1.48.0
547541
licenses: Apache-2.0
548542
- name: opentelemetry-sdk-extension-autoconfigure
549-
version: 1.46.0
543+
version: 1.48.0
550544
licenses: Apache-2.0
551545
- name: opentelemetry-sdk-extension-autoconfigure-spi
552-
version: 1.46.0
546+
version: 1.48.0
553547
licenses: Apache-2.0
554548
- name: opentelemetry-sdk-logs
555-
version: 1.46.0
549+
version: 1.48.0
556550
licenses: Apache-2.0
557551
- name: opentelemetry-sdk-metrics
558-
version: 1.46.0
552+
version: 1.48.0
559553
licenses: Apache-2.0
560554
- name: opentelemetry-sdk-trace
561-
version: 1.46.0
562-
licenses: Apache-2.0
563-
- name: opentelemetry-semconv
564-
version: 1.28.0-alpha
555+
version: 1.48.0
565556
licenses: Apache-2.0
566557
- name: opentest4j
567558
version: 1.3.0
@@ -609,61 +600,58 @@ sbom:
609600
version: 15.36.0
610601
licenses: ''
611602
- name: selenium-api
612-
version: 4.29.0
603+
version: 4.30.0
613604
licenses: Apache-2.0
614605
- name: selenium-chrome-driver
615-
version: 4.29.0
606+
version: 4.30.0
616607
licenses: Apache-2.0
617608
- name: selenium-chromium-driver
618-
version: 4.29.0
619-
licenses: Apache-2.0
620-
- name: selenium-devtools-v131
621-
version: 4.29.0
609+
version: 4.30.0
622610
licenses: Apache-2.0
623611
- name: selenium-devtools-v132
624-
version: 4.29.0
612+
version: 4.30.0
625613
licenses: Apache-2.0
626614
- name: selenium-devtools-v133
627-
version: 4.29.0
615+
version: 4.30.0
628616
licenses: Apache-2.0
629-
- name: selenium-devtools-v85
630-
version: 4.29.0
617+
- name: selenium-devtools-v134
618+
version: 4.30.0
631619
licenses: Apache-2.0
632620
- name: selenium-edge-driver
633-
version: 4.29.0
621+
version: 4.30.0
634622
licenses: Apache-2.0
635623
- name: selenium-firefox-driver
636-
version: 4.29.0
624+
version: 4.30.0
637625
licenses: Apache-2.0
638626
- name: selenium-http
639-
version: 4.29.0
627+
version: 4.30.0
640628
licenses: Apache-2.0
641629
- name: selenium-ie-driver
642-
version: 4.29.0
630+
version: 4.30.0
643631
licenses: Apache-2.0
644632
- name: selenium-java
645-
version: 4.29.0
633+
version: 4.30.0
646634
licenses: Apache-2.0
647635
- name: selenium-json
648-
version: 4.29.0
636+
version: 4.30.0
649637
licenses: Apache-2.0
650638
- name: selenium-jupiter
651639
version: 5.1.1
652640
licenses: Apache-2.0
653641
- name: selenium-manager
654-
version: 4.29.0
642+
version: 4.30.0
655643
licenses: Apache-2.0
656644
- name: selenium-os
657-
version: 4.29.0
645+
version: 4.30.0
658646
licenses: Apache-2.0
659647
- name: selenium-remote-driver
660-
version: 4.29.0
648+
version: 4.30.0
661649
licenses: Apache-2.0
662650
- name: selenium-safari-driver
663-
version: 4.29.0
651+
version: 4.30.0
664652
licenses: Apache-2.0
665653
- name: selenium-support
666-
version: 4.29.0
654+
version: 4.30.0
667655
licenses: Apache-2.0
668656
- name: service
669657
version: 1.16.0
@@ -729,7 +717,7 @@ sbom:
729717
version: 2.16.0
730718
licenses: Apache-2.0
731719
- name: zest
732-
version: 0.24.0
720+
version: 0.25.0
733721
licenses: MPL-2.0
734722
- name: zest
735723
version: 48.5.0

0 commit comments

Comments
 (0)