Pwn2Own Ireland 2025 Bypassing Authentication via Synology D... - #2577
Open
carlospolop wants to merge 1 commit into
Open
Pwn2Own Ireland 2025 Bypassing Authentication via Synology D...#2577carlospolop wants to merge 1 commit into
carlospolop wants to merge 1 commit into
Conversation
Collaborator
Author
🔗 Additional ContextOriginal Blog Post: https://chanzep.github.io/posts/pwn2own-ireland-2025-bypassing-authentication-via-synology-ds925-saml-sso Content Categories: Based on the analysis, this content was categorized under "Pentesting Web > SAML Attacks > Fail-open SAML verification and unconfigured SSO authentication bypasses". Repository Maintenance:
Review Notes:
Bot Version: HackTricks News Bot v1.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🤖 Automated Content Update
This PR was automatically generated by the HackTricks News Bot based on a technical blog post.
📝 Source Information
🎯 Content Summary
Overview and impact
The post analyzes a pre-authentication SAML SSO bypass discovered against the Synology DS925+ for Pwn2Own Ireland 2025. The vulnerable state occurs when SAML SSO has never been configured:
/usr/syno/etc/ssoclient/saml.confdoes not exist, yet the SAML authentication handler remains reachable and does not reject requests because SAML is disabled.The missing configuration causes security-sensitive members of
SSOSAMLClientto remain at...🔧 Technical Details
Reachable disabled authentication feature: A feature being disabled in the user interface does not protect it if its backend authentication endpoint remains reachable. Test SSO, OAuth, SAML, debug, and legacy authentication handlers in unconfigured states and verify whether they enforce an explicit enabled flag before parsing attacker-controlled credentials.
Missing configuration as an authentication-bypass primitive: An early constructor return can leave security-sensitive members at language defaults. If later code treats empty strings or false values as legitimate policy, an unconfigured service may be less secure than a configured one. Audit constructors and initialization failures for fields controlling signatures, issuers, audiences, certificates, algorithms, authorization, or local-user matching.
Fail-open cryptographic mode selection: Code that verifies signatures only when a string equals known values such as 🤖 Agent Actions
Done — I updated:
src/pentesting-web/saml-attacks/README.mdAdded a concise new section on:
ConditionsAlso added the blog URL to the file’s
## References.I kept everything in a single file and did not create new pages.
This PR was automatically created by the HackTricks Feed Bot. Please review the changes carefully before merging.