-
-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
deps(deps): update ansible/ansible-lint action to v24.12.2 #73
Conversation
Outdated🔍 Vulnerabilities of
|
digest | sha256:c0d6d4730cfca59d049895e624c510682e76bc79939b644e3ce6eab182b0184d |
vulnerabilities | |
size | 105 MB |
packages | 232 |
📦 Base Image php:8.2-fpm-alpine
also known as |
|
digest | sha256:c40255b7011a41c628d0120383a267bc9d7426eab0cc538ae0d58c935000ae20 |
vulnerabilities |
golang.org/x/crypto
|
Affected range | <0.31.0 |
Fixed version | 0.31.0 |
Description
Applications and libraries which misuse the ServerConfig.PublicKeyCallback callback may be susceptible to an authorization bypass.
The documentation for ServerConfig.PublicKeyCallback says that "A call to this function does not guarantee that the key offered is in fact used to authenticate." Specifically, the SSH protocol allows clients to inquire about whether a public key is acceptable before proving control of the corresponding private key. PublicKeyCallback may be called with multiple keys, and the order in which the keys were provided cannot be used to infer which key the client successfully authenticated with, if any. Some applications, which store the key(s) passed to PublicKeyCallback (or derived information) and make security relevant determinations based on it once the connection is established, may make incorrect assumptions.
For example, an attacker may send public keys A and B, and then authenticate with A. PublicKeyCallback would be called only twice, first with A and then with B. A vulnerable application may then make authorization decisions based on key B for which the attacker does not actually control the private key.
Since this API is widely misused, as a partial mitigation golang.org/x/[email protected] enforces the property that, when successfully authenticating via public key, the last key passed to ServerConfig.PublicKeyCallback will be the key used to authenticate the connection. PublicKeyCallback will now be called multiple times with the same key, if necessary. Note that the client may still not control the last key passed to PublicKeyCallback if the connection is then authenticated with a different method, such as PasswordCallback, KeyboardInteractiveCallback, or NoClientAuth.
Users should be using the Extensions field of the Permissions return value from the various authentication callbacks to record data associated with the authentication attempt instead of referencing external state. Once the connection is established the state corresponding to the successful authentication attempt can be retrieved via the ServerConn.Permissions field. Note that some third-party libraries misuse the Permissions type by sharing it across authentication attempts; users of third-party libraries should refer to the relevant projects for guidance.
Outdated🔍 Vulnerabilities of
|
digest | sha256:b980610ff08021c99c29712deb98cf3a35f042f69bd03791de036425496095ba |
vulnerabilities | |
size | 110 MB |
packages | 231 |
📦 Base Image php:8.3-alpine
golang.org/x/crypto
|
Affected range | <0.31.0 |
Fixed version | 0.31.0 |
Description
Applications and libraries which misuse the ServerConfig.PublicKeyCallback callback may be susceptible to an authorization bypass.
The documentation for ServerConfig.PublicKeyCallback says that "A call to this function does not guarantee that the key offered is in fact used to authenticate." Specifically, the SSH protocol allows clients to inquire about whether a public key is acceptable before proving control of the corresponding private key. PublicKeyCallback may be called with multiple keys, and the order in which the keys were provided cannot be used to infer which key the client successfully authenticated with, if any. Some applications, which store the key(s) passed to PublicKeyCallback (or derived information) and make security relevant determinations based on it once the connection is established, may make incorrect assumptions.
For example, an attacker may send public keys A and B, and then authenticate with A. PublicKeyCallback would be called only twice, first with A and then with B. A vulnerable application may then make authorization decisions based on key B for which the attacker does not actually control the private key.
Since this API is widely misused, as a partial mitigation golang.org/x/[email protected] enforces the property that, when successfully authenticating via public key, the last key passed to ServerConfig.PublicKeyCallback will be the key used to authenticate the connection. PublicKeyCallback will now be called multiple times with the same key, if necessary. Note that the client may still not control the last key passed to PublicKeyCallback if the connection is then authenticated with a different method, such as PasswordCallback, KeyboardInteractiveCallback, or NoClientAuth.
Users should be using the Extensions field of the Permissions return value from the various authentication callbacks to record data associated with the authentication attempt instead of referencing external state. Once the connection is established the state corresponding to the successful authentication attempt can be retrieved via the ServerConn.Permissions field. Note that some third-party libraries misuse the Permissions type by sharing it across authentication attempts; users of third-party libraries should refer to the relevant projects for guidance.
OutdatedRecommended fixes for image
|
Name | 8.3.14-alpine3.21 |
Digest | sha256:41ab576a7fd2702a4921f50bc69be52460414e1d3a2d6e70676180e9ae8d4b78 |
Vulnerabilities | |
Pushed | 5 days ago |
Size | 37 MB |
Packages | 52 |
Flavor | alpine |
OS | 3.21 |
Runtime | 8.3.14 |
The base image is also available under the supported tag(s):8.3-alpine3.21
,8.3-cli-alpine
,8.3-cli-alpine3.21
,8.3.14-alpine
,8.3.14-alpine3.21
,8.3.14-cli-alpine
,8.3.14-cli-alpine3.21
Refresh base image
Rebuild the image using a newer base image version. Updating this may result in breaking changes.✅ This image version is up to date.
Change base image
Tag | Details | Pushed | Vulnerabilities |
---|---|---|---|
8.4-alpine Minor runtime version update Also known as:
|
Benefits:
|
5 days ago | |
Outdated🔍 Vulnerabilities of
|
digest | sha256:191cfc65137a9903b3180d08cc18d2e799ee63db2804784b929d9556185bc695 |
vulnerabilities | |
size | 109 MB |
packages | 232 |
📦 Base Image php:8-fpm-alpine
also known as |
|
digest | sha256:661709ebd2995433800a6f617072d40a0c52a4f3abfae1db4d4a3e280b3ddaea |
vulnerabilities |
golang.org/x/crypto
|
Affected range | <0.31.0 |
Fixed version | 0.31.0 |
Description
Applications and libraries which misuse the ServerConfig.PublicKeyCallback callback may be susceptible to an authorization bypass.
The documentation for ServerConfig.PublicKeyCallback says that "A call to this function does not guarantee that the key offered is in fact used to authenticate." Specifically, the SSH protocol allows clients to inquire about whether a public key is acceptable before proving control of the corresponding private key. PublicKeyCallback may be called with multiple keys, and the order in which the keys were provided cannot be used to infer which key the client successfully authenticated with, if any. Some applications, which store the key(s) passed to PublicKeyCallback (or derived information) and make security relevant determinations based on it once the connection is established, may make incorrect assumptions.
For example, an attacker may send public keys A and B, and then authenticate with A. PublicKeyCallback would be called only twice, first with A and then with B. A vulnerable application may then make authorization decisions based on key B for which the attacker does not actually control the private key.
Since this API is widely misused, as a partial mitigation golang.org/x/[email protected] enforces the property that, when successfully authenticating via public key, the last key passed to ServerConfig.PublicKeyCallback will be the key used to authenticate the connection. PublicKeyCallback will now be called multiple times with the same key, if necessary. Note that the client may still not control the last key passed to PublicKeyCallback if the connection is then authenticated with a different method, such as PasswordCallback, KeyboardInteractiveCallback, or NoClientAuth.
Users should be using the Extensions field of the Permissions return value from the various authentication callbacks to record data associated with the authentication attempt instead of referencing external state. Once the connection is established the state corresponding to the successful authentication attempt can be retrieved via the ServerConn.Permissions field. Note that some third-party libraries misuse the Permissions type by sharing it across authentication attempts; users of third-party libraries should refer to the relevant projects for guidance.
Outdated🔍 Vulnerabilities of
|
digest | sha256:7ca2d49f9001b021f79e9d175423b0f9b6b0c3d2da8285dce5d6d4b37f5b414b |
vulnerabilities | |
size | 134 MB |
packages | 249 |
📦 Base Image php:8-alpine
also known as |
|
digest | sha256:6338c0bc70c8a8b1699fafac1cb0cb15d71825b2b8e7b131989d6f239daa8615 |
vulnerabilities |
golang.org/x/crypto
|
Affected range | <0.31.0 |
Fixed version | 0.31.0 |
Description
Applications and libraries which misuse the ServerConfig.PublicKeyCallback callback may be susceptible to an authorization bypass.
The documentation for ServerConfig.PublicKeyCallback says that "A call to this function does not guarantee that the key offered is in fact used to authenticate." Specifically, the SSH protocol allows clients to inquire about whether a public key is acceptable before proving control of the corresponding private key. PublicKeyCallback may be called with multiple keys, and the order in which the keys were provided cannot be used to infer which key the client successfully authenticated with, if any. Some applications, which store the key(s) passed to PublicKeyCallback (or derived information) and make security relevant determinations based on it once the connection is established, may make incorrect assumptions.
For example, an attacker may send public keys A and B, and then authenticate with A. PublicKeyCallback would be called only twice, first with A and then with B. A vulnerable application may then make authorization decisions based on key B for which the attacker does not actually control the private key.
Since this API is widely misused, as a partial mitigation golang.org/x/[email protected] enforces the property that, when successfully authenticating via public key, the last key passed to ServerConfig.PublicKeyCallback will be the key used to authenticate the connection. PublicKeyCallback will now be called multiple times with the same key, if necessary. Note that the client may still not control the last key passed to PublicKeyCallback if the connection is then authenticated with a different method, such as PasswordCallback, KeyboardInteractiveCallback, or NoClientAuth.
Users should be using the Extensions field of the Permissions return value from the various authentication callbacks to record data associated with the authentication attempt instead of referencing external state. Once the connection is established the state corresponding to the successful authentication attempt can be retrieved via the ServerConn.Permissions field. Note that some third-party libraries misuse the Permissions type by sharing it across authentication attempts; users of third-party libraries should refer to the relevant projects for guidance.
Outdated🔍 Vulnerabilities of
|
digest | sha256:e5d671df39d24fd409fe5c383f157b54f36acaee8d44bd4baf5142a3639273a2 |
vulnerabilities | |
size | 115 MB |
packages | 231 |
📦 Base Image php:8-alpine
also known as |
|
digest | sha256:6338c0bc70c8a8b1699fafac1cb0cb15d71825b2b8e7b131989d6f239daa8615 |
vulnerabilities |
golang.org/x/crypto
|
Affected range | <0.31.0 |
Fixed version | 0.31.0 |
Description
Applications and libraries which misuse the ServerConfig.PublicKeyCallback callback may be susceptible to an authorization bypass.
The documentation for ServerConfig.PublicKeyCallback says that "A call to this function does not guarantee that the key offered is in fact used to authenticate." Specifically, the SSH protocol allows clients to inquire about whether a public key is acceptable before proving control of the corresponding private key. PublicKeyCallback may be called with multiple keys, and the order in which the keys were provided cannot be used to infer which key the client successfully authenticated with, if any. Some applications, which store the key(s) passed to PublicKeyCallback (or derived information) and make security relevant determinations based on it once the connection is established, may make incorrect assumptions.
For example, an attacker may send public keys A and B, and then authenticate with A. PublicKeyCallback would be called only twice, first with A and then with B. A vulnerable application may then make authorization decisions based on key B for which the attacker does not actually control the private key.
Since this API is widely misused, as a partial mitigation golang.org/x/[email protected] enforces the property that, when successfully authenticating via public key, the last key passed to ServerConfig.PublicKeyCallback will be the key used to authenticate the connection. PublicKeyCallback will now be called multiple times with the same key, if necessary. Note that the client may still not control the last key passed to PublicKeyCallback if the connection is then authenticated with a different method, such as PasswordCallback, KeyboardInteractiveCallback, or NoClientAuth.
Users should be using the Extensions field of the Permissions return value from the various authentication callbacks to record data associated with the authentication attempt instead of referencing external state. Once the connection is established the state corresponding to the successful authentication attempt can be retrieved via the ServerConn.Permissions field. Note that some third-party libraries misuse the Permissions type by sharing it across authentication attempts; users of third-party libraries should refer to the relevant projects for guidance.
Outdated🔍 Vulnerabilities of
|
digest | sha256:08b2c9b77556e546161ea00065442037b4e45ffab2adcaee51b06350479f269f |
vulnerabilities | |
size | 109 MB |
packages | 231 |
📦 Base Image php:8.2-alpine
also known as |
|
digest | sha256:e33a9aa217ea6f2f3891b2c01158e38f860f3ede767870953b6685cd2fa12c9e |
vulnerabilities |
golang.org/x/crypto
|
Affected range | <0.31.0 |
Fixed version | 0.31.0 |
Description
Applications and libraries which misuse the ServerConfig.PublicKeyCallback callback may be susceptible to an authorization bypass.
The documentation for ServerConfig.PublicKeyCallback says that "A call to this function does not guarantee that the key offered is in fact used to authenticate." Specifically, the SSH protocol allows clients to inquire about whether a public key is acceptable before proving control of the corresponding private key. PublicKeyCallback may be called with multiple keys, and the order in which the keys were provided cannot be used to infer which key the client successfully authenticated with, if any. Some applications, which store the key(s) passed to PublicKeyCallback (or derived information) and make security relevant determinations based on it once the connection is established, may make incorrect assumptions.
For example, an attacker may send public keys A and B, and then authenticate with A. PublicKeyCallback would be called only twice, first with A and then with B. A vulnerable application may then make authorization decisions based on key B for which the attacker does not actually control the private key.
Since this API is widely misused, as a partial mitigation golang.org/x/[email protected] enforces the property that, when successfully authenticating via public key, the last key passed to ServerConfig.PublicKeyCallback will be the key used to authenticate the connection. PublicKeyCallback will now be called multiple times with the same key, if necessary. Note that the client may still not control the last key passed to PublicKeyCallback if the connection is then authenticated with a different method, such as PasswordCallback, KeyboardInteractiveCallback, or NoClientAuth.
Users should be using the Extensions field of the Permissions return value from the various authentication callbacks to record data associated with the authentication attempt instead of referencing external state. Once the connection is established the state corresponding to the successful authentication attempt can be retrieved via the ServerConn.Permissions field. Note that some third-party libraries misuse the Permissions type by sharing it across authentication attempts; users of third-party libraries should refer to the relevant projects for guidance.
Outdated🔍 Vulnerabilities of
|
digest | sha256:66dce80eca8726632027290677fa5722cf51b73a993ac71a43bc79d22e0e9a6a |
vulnerabilities | |
size | 128 MB |
packages | 249 |
📦 Base Image php:8.3-alpine
also known as |
|
digest | sha256:41ab576a7fd2702a4921f50bc69be52460414e1d3a2d6e70676180e9ae8d4b78 |
vulnerabilities |
golang.org/x/crypto
|
Affected range | <0.31.0 |
Fixed version | 0.31.0 |
Description
Applications and libraries which misuse the ServerConfig.PublicKeyCallback callback may be susceptible to an authorization bypass.
The documentation for ServerConfig.PublicKeyCallback says that "A call to this function does not guarantee that the key offered is in fact used to authenticate." Specifically, the SSH protocol allows clients to inquire about whether a public key is acceptable before proving control of the corresponding private key. PublicKeyCallback may be called with multiple keys, and the order in which the keys were provided cannot be used to infer which key the client successfully authenticated with, if any. Some applications, which store the key(s) passed to PublicKeyCallback (or derived information) and make security relevant determinations based on it once the connection is established, may make incorrect assumptions.
For example, an attacker may send public keys A and B, and then authenticate with A. PublicKeyCallback would be called only twice, first with A and then with B. A vulnerable application may then make authorization decisions based on key B for which the attacker does not actually control the private key.
Since this API is widely misused, as a partial mitigation golang.org/x/[email protected] enforces the property that, when successfully authenticating via public key, the last key passed to ServerConfig.PublicKeyCallback will be the key used to authenticate the connection. PublicKeyCallback will now be called multiple times with the same key, if necessary. Note that the client may still not control the last key passed to PublicKeyCallback if the connection is then authenticated with a different method, such as PasswordCallback, KeyboardInteractiveCallback, or NoClientAuth.
Users should be using the Extensions field of the Permissions return value from the various authentication callbacks to record data associated with the authentication attempt instead of referencing external state. Once the connection is established the state corresponding to the successful authentication attempt can be retrieved via the ServerConn.Permissions field. Note that some third-party libraries misuse the Permissions type by sharing it across authentication attempts; users of third-party libraries should refer to the relevant projects for guidance.
OutdatedRecommended fixes for image
|
Name | 8.2.26-alpine3.21 |
Digest | sha256:e33a9aa217ea6f2f3891b2c01158e38f860f3ede767870953b6685cd2fa12c9e |
Vulnerabilities | |
Pushed | 5 days ago |
Size | 36 MB |
Packages | 52 |
Flavor | alpine |
OS | 3.21 |
Runtime | 8.2.26 |
The base image is also available under the supported tag(s):8.2-alpine3.21
,8.2-cli-alpine
,8.2-cli-alpine3.21
,8.2.26-alpine
,8.2.26-alpine3.21
,8.2.26-cli-alpine
,8.2.26-cli-alpine3.21
Refresh base image
Rebuild the image using a newer base image version. Updating this may result in breaking changes.✅ This image version is up to date.
Change base image
Tag | Details | Pushed | Vulnerabilities |
---|---|---|---|
8.4-alpine Minor runtime version update Also known as:
|
Benefits:
|
5 days ago | |
8.3-alpine Minor runtime version update Also known as:
|
Benefits:
|
5 days ago | |
OutdatedRecommended fixes for image
|
Name | fpm-alpine3.21 |
Digest | sha256:661709ebd2995433800a6f617072d40a0c52a4f3abfae1db4d4a3e280b3ddaea |
Vulnerabilities | |
Pushed | 5 days ago |
Size | 36 MB |
Packages | 53 |
Flavor | alpine |
OS | 3.21 |
The base image is also available under the supported tag(s):8-fpm-alpine3.21
,8.4-fpm-alpine
,8.4-fpm-alpine3.21
,8.4.1-fpm-alpine
,8.4.1-fpm-alpine3.21
,fpm-alpine
,fpm-alpine3.21
Refresh base image
Rebuild the image using a newer base image version. Updating this may result in breaking changes.✅ This image version is up to date.
Change base image
Tag | Details | Pushed | Vulnerabilities |
---|---|---|---|
8.1-fpm-alpine Minor runtime version update Also known as:
|
Benefits:
|
1 day ago | |
8.3-fpm-alpine Minor runtime version update Also known as:
|
Benefits:
|
5 days ago | |
8.2-fpm-alpine Minor runtime version update Also known as:
|
Benefits:
|
5 days ago | |
OutdatedRecommended fixes for image
|
Name | 8.4.1-alpine3.21 |
Digest | sha256:6338c0bc70c8a8b1699fafac1cb0cb15d71825b2b8e7b131989d6f239daa8615 |
Vulnerabilities | |
Pushed | 5 days ago |
Size | 42 MB |
Packages | 52 |
Flavor | alpine |
OS | 3.21 |
Runtime | 8.4.1 |
The base image is also available under the supported tag(s):8-alpine3.21
,8-cli-alpine
,8-cli-alpine3.21
,8.4-alpine
,8.4-alpine3.21
,8.4-cli-alpine
,8.4-cli-alpine3.21
,8.4.1-alpine
,8.4.1-alpine3.21
,8.4.1-cli-alpine
,8.4.1-cli-alpine3.21
,alpine
,alpine3.21
,cli-alpine
,cli-alpine3.21
Refresh base image
Rebuild the image using a newer base image version. Updating this may result in breaking changes.✅ This image version is up to date.
Change base image
✅ There are no tag recommendations at this time.
1 similar comment
OutdatedRecommended fixes for image
|
Name | 8.4.1-alpine3.21 |
Digest | sha256:6338c0bc70c8a8b1699fafac1cb0cb15d71825b2b8e7b131989d6f239daa8615 |
Vulnerabilities | |
Pushed | 5 days ago |
Size | 42 MB |
Packages | 52 |
Flavor | alpine |
OS | 3.21 |
Runtime | 8.4.1 |
The base image is also available under the supported tag(s):8-alpine3.21
,8-cli-alpine
,8-cli-alpine3.21
,8.4-alpine
,8.4-alpine3.21
,8.4-cli-alpine
,8.4-cli-alpine3.21
,8.4.1-alpine
,8.4.1-alpine3.21
,8.4.1-cli-alpine
,8.4.1-cli-alpine3.21
,alpine
,alpine3.21
,cli-alpine
,cli-alpine3.21
Refresh base image
Rebuild the image using a newer base image version. Updating this may result in breaking changes.✅ This image version is up to date.
Change base image
✅ There are no tag recommendations at this time.
OutdatedRecommended fixes for image
|
Name | 8.3.14-alpine3.21 |
Digest | sha256:41ab576a7fd2702a4921f50bc69be52460414e1d3a2d6e70676180e9ae8d4b78 |
Vulnerabilities | |
Pushed | 5 days ago |
Size | 37 MB |
Packages | 52 |
Flavor | alpine |
OS | 3.21 |
Runtime | 8.3.14 |
The base image is also available under the supported tag(s):8.3-alpine3.21
,8.3-cli-alpine
,8.3-cli-alpine3.21
,8.3.14-alpine
,8.3.14-alpine3.21
,8.3.14-cli-alpine
,8.3.14-cli-alpine3.21
Refresh base image
Rebuild the image using a newer base image version. Updating this may result in breaking changes.✅ This image version is up to date.
Change base image
Tag | Details | Pushed | Vulnerabilities |
---|---|---|---|
8.4-alpine Minor runtime version update Also known as:
|
Benefits:
|
5 days ago | |
Outdated🔍 Vulnerabilities of
|
digest | sha256:f0a092b6d98865efc81081256ea92722758900a7d687ee518d43a6eb62871306 |
vulnerabilities | |
size | 127 MB |
packages | 249 |
📦 Base Image php:8.1-alpine
also known as |
|
digest | sha256:b217029b5db5f0784a5e00c57280685a4c2f009a970e6b32bb415eba6ca5ae7c |
vulnerabilities |
golang.org/x/crypto
|
Affected range | <0.31.0 |
Fixed version | 0.31.0 |
Description
Applications and libraries which misuse the ServerConfig.PublicKeyCallback callback may be susceptible to an authorization bypass.
The documentation for ServerConfig.PublicKeyCallback says that "A call to this function does not guarantee that the key offered is in fact used to authenticate." Specifically, the SSH protocol allows clients to inquire about whether a public key is acceptable before proving control of the corresponding private key. PublicKeyCallback may be called with multiple keys, and the order in which the keys were provided cannot be used to infer which key the client successfully authenticated with, if any. Some applications, which store the key(s) passed to PublicKeyCallback (or derived information) and make security relevant determinations based on it once the connection is established, may make incorrect assumptions.
For example, an attacker may send public keys A and B, and then authenticate with A. PublicKeyCallback would be called only twice, first with A and then with B. A vulnerable application may then make authorization decisions based on key B for which the attacker does not actually control the private key.
Since this API is widely misused, as a partial mitigation golang.org/x/[email protected] enforces the property that, when successfully authenticating via public key, the last key passed to ServerConfig.PublicKeyCallback will be the key used to authenticate the connection. PublicKeyCallback will now be called multiple times with the same key, if necessary. Note that the client may still not control the last key passed to PublicKeyCallback if the connection is then authenticated with a different method, such as PasswordCallback, KeyboardInteractiveCallback, or NoClientAuth.
Users should be using the Extensions field of the Permissions return value from the various authentication callbacks to record data associated with the authentication attempt instead of referencing external state. Once the connection is established the state corresponding to the successful authentication attempt can be retrieved via the ServerConn.Permissions field. Note that some third-party libraries misuse the Permissions type by sharing it across authentication attempts; users of third-party libraries should refer to the relevant projects for guidance.
Outdated🔍 Vulnerabilities of
|
digest | sha256:9db2530b094f02e1f536b51e5c1692afd2ff398df2fd19a91789ff3393b0b647 |
vulnerabilities | |
size | 109 MB |
packages | 231 |
📦 Base Image php:8.1-alpine
also known as |
|
digest | sha256:b217029b5db5f0784a5e00c57280685a4c2f009a970e6b32bb415eba6ca5ae7c |
vulnerabilities |
golang.org/x/crypto
|
Affected range | <0.31.0 |
Fixed version | 0.31.0 |
Description
Applications and libraries which misuse the ServerConfig.PublicKeyCallback callback may be susceptible to an authorization bypass.
The documentation for ServerConfig.PublicKeyCallback says that "A call to this function does not guarantee that the key offered is in fact used to authenticate." Specifically, the SSH protocol allows clients to inquire about whether a public key is acceptable before proving control of the corresponding private key. PublicKeyCallback may be called with multiple keys, and the order in which the keys were provided cannot be used to infer which key the client successfully authenticated with, if any. Some applications, which store the key(s) passed to PublicKeyCallback (or derived information) and make security relevant determinations based on it once the connection is established, may make incorrect assumptions.
For example, an attacker may send public keys A and B, and then authenticate with A. PublicKeyCallback would be called only twice, first with A and then with B. A vulnerable application may then make authorization decisions based on key B for which the attacker does not actually control the private key.
Since this API is widely misused, as a partial mitigation golang.org/x/[email protected] enforces the property that, when successfully authenticating via public key, the last key passed to ServerConfig.PublicKeyCallback will be the key used to authenticate the connection. PublicKeyCallback will now be called multiple times with the same key, if necessary. Note that the client may still not control the last key passed to PublicKeyCallback if the connection is then authenticated with a different method, such as PasswordCallback, KeyboardInteractiveCallback, or NoClientAuth.
Users should be using the Extensions field of the Permissions return value from the various authentication callbacks to record data associated with the authentication attempt instead of referencing external state. Once the connection is established the state corresponding to the successful authentication attempt can be retrieved via the ServerConn.Permissions field. Note that some third-party libraries misuse the Permissions type by sharing it across authentication attempts; users of third-party libraries should refer to the relevant projects for guidance.
OutdatedRecommended fixes for image
|
Name | 8.1.31-alpine3.21 |
Digest | sha256:b217029b5db5f0784a5e00c57280685a4c2f009a970e6b32bb415eba6ca5ae7c |
Vulnerabilities | |
Pushed | 1 day ago |
Size | 36 MB |
Packages | 52 |
Flavor | alpine |
OS | 3.21 |
Runtime | 8.1.31 |
The base image is also available under the supported tag(s):8.1-alpine3.21
,8.1-cli-alpine
,8.1-cli-alpine3.21
,8.1.31-alpine
,8.1.31-alpine3.21
,8.1.31-cli-alpine
,8.1.31-cli-alpine3.21
Refresh base image
Rebuild the image using a newer base image version. Updating this may result in breaking changes.✅ This image version is up to date.
Change base image
Tag | Details | Pushed | Vulnerabilities |
---|---|---|---|
8.4-alpine Minor runtime version update Also known as:
|
Benefits:
|
5 days ago | |
8.3-alpine Minor runtime version update Also known as:
|
Benefits:
|
5 days ago | |
8.2-alpine Minor runtime version update Also known as:
|
Benefits:
|
5 days ago | |
1 similar comment
OutdatedRecommended fixes for image
|
Name | 8.1.31-alpine3.21 |
Digest | sha256:b217029b5db5f0784a5e00c57280685a4c2f009a970e6b32bb415eba6ca5ae7c |
Vulnerabilities | |
Pushed | 1 day ago |
Size | 36 MB |
Packages | 52 |
Flavor | alpine |
OS | 3.21 |
Runtime | 8.1.31 |
The base image is also available under the supported tag(s):8.1-alpine3.21
,8.1-cli-alpine
,8.1-cli-alpine3.21
,8.1.31-alpine
,8.1.31-alpine3.21
,8.1.31-cli-alpine
,8.1.31-cli-alpine3.21
Refresh base image
Rebuild the image using a newer base image version. Updating this may result in breaking changes.✅ This image version is up to date.
Change base image
Tag | Details | Pushed | Vulnerabilities |
---|---|---|---|
8.4-alpine Minor runtime version update Also known as:
|
Benefits:
|
5 days ago | |
8.3-alpine Minor runtime version update Also known as:
|
Benefits:
|
5 days ago | |
8.2-alpine Minor runtime version update Also known as:
|
Benefits:
|
5 days ago | |
Outdated🔍 Vulnerabilities of
|
digest | sha256:77d70ff0e2b71b91916b99a5ef417f428681820dbf5317ae5731727db43c1006 |
vulnerabilities | |
size | 105 MB |
packages | 232 |
📦 Base Image php:8.3-fpm-alpine
also known as |
|
digest | sha256:2195efdc39294f113863a8af61fac333817b0382b7421252fc975605260f6668 |
vulnerabilities |
golang.org/x/crypto
|
Affected range | <0.31.0 |
Fixed version | 0.31.0 |
Description
Applications and libraries which misuse the ServerConfig.PublicKeyCallback callback may be susceptible to an authorization bypass.
The documentation for ServerConfig.PublicKeyCallback says that "A call to this function does not guarantee that the key offered is in fact used to authenticate." Specifically, the SSH protocol allows clients to inquire about whether a public key is acceptable before proving control of the corresponding private key. PublicKeyCallback may be called with multiple keys, and the order in which the keys were provided cannot be used to infer which key the client successfully authenticated with, if any. Some applications, which store the key(s) passed to PublicKeyCallback (or derived information) and make security relevant determinations based on it once the connection is established, may make incorrect assumptions.
For example, an attacker may send public keys A and B, and then authenticate with A. PublicKeyCallback would be called only twice, first with A and then with B. A vulnerable application may then make authorization decisions based on key B for which the attacker does not actually control the private key.
Since this API is widely misused, as a partial mitigation golang.org/x/[email protected] enforces the property that, when successfully authenticating via public key, the last key passed to ServerConfig.PublicKeyCallback will be the key used to authenticate the connection. PublicKeyCallback will now be called multiple times with the same key, if necessary. Note that the client may still not control the last key passed to PublicKeyCallback if the connection is then authenticated with a different method, such as PasswordCallback, KeyboardInteractiveCallback, or NoClientAuth.
Users should be using the Extensions field of the Permissions return value from the various authentication callbacks to record data associated with the authentication attempt instead of referencing external state. Once the connection is established the state corresponding to the successful authentication attempt can be retrieved via the ServerConn.Permissions field. Note that some third-party libraries misuse the Permissions type by sharing it across authentication attempts; users of third-party libraries should refer to the relevant projects for guidance.
🔍 Vulnerabilities of
|
digest | sha256:7df257c2c0b592ac258fbe4dc2ebe6c48f43222bfd398f905637b4bb4c659947 |
vulnerabilities | |
size | 128 MB |
packages | 249 |
📦 Base Image php:8.2-alpine
also known as |
|
digest | sha256:e33a9aa217ea6f2f3891b2c01158e38f860f3ede767870953b6685cd2fa12c9e |
vulnerabilities |
golang.org/x/crypto
|
Affected range | <0.31.0 |
Fixed version | 0.31.0 |
Description
Applications and libraries which misuse the ServerConfig.PublicKeyCallback callback may be susceptible to an authorization bypass.
The documentation for ServerConfig.PublicKeyCallback says that "A call to this function does not guarantee that the key offered is in fact used to authenticate." Specifically, the SSH protocol allows clients to inquire about whether a public key is acceptable before proving control of the corresponding private key. PublicKeyCallback may be called with multiple keys, and the order in which the keys were provided cannot be used to infer which key the client successfully authenticated with, if any. Some applications, which store the key(s) passed to PublicKeyCallback (or derived information) and make security relevant determinations based on it once the connection is established, may make incorrect assumptions.
For example, an attacker may send public keys A and B, and then authenticate with A. PublicKeyCallback would be called only twice, first with A and then with B. A vulnerable application may then make authorization decisions based on key B for which the attacker does not actually control the private key.
Since this API is widely misused, as a partial mitigation golang.org/x/[email protected] enforces the property that, when successfully authenticating via public key, the last key passed to ServerConfig.PublicKeyCallback will be the key used to authenticate the connection. PublicKeyCallback will now be called multiple times with the same key, if necessary. Note that the client may still not control the last key passed to PublicKeyCallback if the connection is then authenticated with a different method, such as PasswordCallback, KeyboardInteractiveCallback, or NoClientAuth.
Users should be using the Extensions field of the Permissions return value from the various authentication callbacks to record data associated with the authentication attempt instead of referencing external state. Once the connection is established the state corresponding to the successful authentication attempt can be retrieved via the ServerConn.Permissions field. Note that some third-party libraries misuse the Permissions type by sharing it across authentication attempts; users of third-party libraries should refer to the relevant projects for guidance.
🔍 Vulnerabilities of
|
digest | sha256:b5f6b82296a570dc724272dbfcccc309d0c0d81bfd60150479e8474934e505c8 |
vulnerabilities | |
size | 104 MB |
packages | 232 |
📦 Base Image php:8.1-fpm-alpine
also known as |
|
digest | sha256:fa457eee5e53a8d4aff21bd0d78a3cbcd7f98b8def81218a8f0d98dd8cbd029b |
vulnerabilities |
golang.org/x/crypto
|
Affected range | <0.31.0 |
Fixed version | 0.31.0 |
Description
Applications and libraries which misuse the ServerConfig.PublicKeyCallback callback may be susceptible to an authorization bypass.
The documentation for ServerConfig.PublicKeyCallback says that "A call to this function does not guarantee that the key offered is in fact used to authenticate." Specifically, the SSH protocol allows clients to inquire about whether a public key is acceptable before proving control of the corresponding private key. PublicKeyCallback may be called with multiple keys, and the order in which the keys were provided cannot be used to infer which key the client successfully authenticated with, if any. Some applications, which store the key(s) passed to PublicKeyCallback (or derived information) and make security relevant determinations based on it once the connection is established, may make incorrect assumptions.
For example, an attacker may send public keys A and B, and then authenticate with A. PublicKeyCallback would be called only twice, first with A and then with B. A vulnerable application may then make authorization decisions based on key B for which the attacker does not actually control the private key.
Since this API is widely misused, as a partial mitigation golang.org/x/[email protected] enforces the property that, when successfully authenticating via public key, the last key passed to ServerConfig.PublicKeyCallback will be the key used to authenticate the connection. PublicKeyCallback will now be called multiple times with the same key, if necessary. Note that the client may still not control the last key passed to PublicKeyCallback if the connection is then authenticated with a different method, such as PasswordCallback, KeyboardInteractiveCallback, or NoClientAuth.
Users should be using the Extensions field of the Permissions return value from the various authentication callbacks to record data associated with the authentication attempt instead of referencing external state. Once the connection is established the state corresponding to the successful authentication attempt can be retrieved via the ServerConn.Permissions field. Note that some third-party libraries misuse the Permissions type by sharing it across authentication attempts; users of third-party libraries should refer to the relevant projects for guidance.
OutdatedRecommended fixes for image
|
Name | 8.3.14-fpm-alpine3.21 |
Digest | sha256:2195efdc39294f113863a8af61fac333817b0382b7421252fc975605260f6668 |
Vulnerabilities | |
Pushed | 5 days ago |
Size | 33 MB |
Packages | 53 |
Flavor | alpine |
OS | 3.21 |
Runtime | 8.3.14 |
The base image is also available under the supported tag(s):8.3-fpm-alpine3.21
,8.3.14-fpm-alpine
,8.3.14-fpm-alpine3.21
Refresh base image
Rebuild the image using a newer base image version. Updating this may result in breaking changes.✅ This image version is up to date.
Change base image
Tag | Details | Pushed | Vulnerabilities |
---|---|---|---|
8.4-fpm-alpine Image has same number of vulnerabilities Also known as:
|
Benefits:
|
5 days ago | |
Recommended fixes for image
|
Name | 8.1.31-fpm-alpine3.21 |
Digest | sha256:fa457eee5e53a8d4aff21bd0d78a3cbcd7f98b8def81218a8f0d98dd8cbd029b |
Vulnerabilities | |
Pushed | 1 day ago |
Size | 32 MB |
Packages | 53 |
Flavor | alpine |
OS | 3.21 |
Runtime | 8.1.31 |
The base image is also available under the supported tag(s):8.1-fpm-alpine3.21
,8.1.31-fpm-alpine
,8.1.31-fpm-alpine3.21
Refresh base image
Rebuild the image using a newer base image version. Updating this may result in breaking changes.✅ This image version is up to date.
Change base image
Tag | Details | Pushed | Vulnerabilities |
---|---|---|---|
8.3-fpm-alpine Minor runtime version update Also known as:
|
Benefits:
|
5 days ago | |
8.2-fpm-alpine Minor runtime version update Also known as:
|
Benefits:
|
5 days ago | |
8.4-fpm-alpine Image has same number of vulnerabilities Also known as:
|
Benefits:
|
5 days ago | |
Recommended fixes for image
|
Name | 8.2.26-alpine3.21 |
Digest | sha256:e33a9aa217ea6f2f3891b2c01158e38f860f3ede767870953b6685cd2fa12c9e |
Vulnerabilities | |
Pushed | 5 days ago |
Size | 36 MB |
Packages | 52 |
Flavor | alpine |
OS | 3.21 |
Runtime | 8.2.26 |
The base image is also available under the supported tag(s):8.2-alpine3.21
,8.2-cli-alpine
,8.2-cli-alpine3.21
,8.2.26-alpine
,8.2.26-alpine3.21
,8.2.26-cli-alpine
,8.2.26-cli-alpine3.21
Refresh base image
Rebuild the image using a newer base image version. Updating this may result in breaking changes.✅ This image version is up to date.
Change base image
Tag | Details | Pushed | Vulnerabilities |
---|---|---|---|
8.4-alpine Minor runtime version update Also known as:
|
Benefits:
|
5 days ago | |
8.3-alpine Minor runtime version update Also known as:
|
Benefits:
|
5 days ago | |
This PR contains the following updates:
v24.12.1
->v24.12.2
Release Notes
ansible/ansible-lint (ansible/ansible-lint)
v24.12.2
Compare Source
Enhancements
Bugfixes
Note this this changelog entry contains changes also included in the two yanked releases before it.
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.