A lot can go wrong when validating SAML messages. When auditing SAML endpoints, it's important to look out for vulnerabilities in the signature validation logic. XML Signature Wrapping (XSW) against SAML is an attack where manipulated SAML message is submitted in an attempt to make the endpoint validate the signed parts of the message -- which were correctly validated -- while processing a different attacker-generated part of the message as a way to extract the authentication statements. Because the attacker can arbitrarily forge SAML assertions which are accepted as valid by the vulnerable endpoint, the impact can be severe. [1,2,3]
Testing for XSW vulnerabilities in SAML endpoints can be a tedious process, as the auditor needs to not only know the details of the various XSW techniques, but also must handle a multitude of repetitive copy-and-paste tasks and apply the appropriate encoding onto each message. The latest revision of the XSW-Attacker module in our BurpSuite extension EsPReSSo helps to make this testing process easier, and even comes with a semi-automated mode. Read on to learn more about the new release!
To simplify its use, the XSW-Attacker performs the attack in a two step process of initialization and execution, as reflected by its two tabs Init Attack and Execute Attack. The interface of the XSW-Attacker is depicted below.
The Init Attack tab displays the current SAML message. To execute a signature wrapping attack, a payload needs to be configured in a way that values of the originally signed message are replaced with values of the attacker's choice. To do this, enter the value of a text-node you wish to replace in the Current value text-field. Insert the replacement value in the text-field labeled New value and click the Add button. Multiple values can be provided; however, all of which must be child nodes of the signed element. Valid substitution pairs and the corresponding XPath selectors are displayed in the Modifications Table. To delete an entry from the table, select the entry and press `Del`, or use the right-click menu.
Next, click the Generate vectors button - this will prepare the payloads accordingly and brings the Execute Attack tab to the front of the screen.
At the top of the Execute Attack tab, select one of the pre-generated payloads. The structure of the selected vector is explained in a shorthand syntax in the text area below the selector.
The text-area labeled Attack vector is editable and can be used to manually fine-tune the chosen payload if necessary. The button Pretty print opens up a syntax-highlighted overview of the current vector.
To submit the manipulated SAML response, use Burp's Forward button (or Go, while in the Repeater).
First, open an intercepted request in Burp's Intruder (e.g., by pressing `Ctrl+i`). For the attack type, select Sniper. Open the Intruder's Positions tab, clear all payload positions but the value of the XML message (the `SAMLResponse` parameter, in our example). Note: the XSW-Attacker can only handle XML messages that contain exactly one XML Signature.
Next, switch to the Payloads tab and for the Payload Type, select Extension-generated. From the newly added Select generator drop-down menu, choose XSW Payloads, as depicted in the screenshot below.
While still in the Payloads tab, disable the URL-encoding checkbox in the Payload Encoding section, since Burp Intruder deals with the encoding automatically and should suffice for most cases.
Click the Start Attack button and a new window will pop up. This window is shown below and is similar to the XSW Attacker's Init Attack tab.
Configure the payload as explained in the section above. In addition, a schema analyzer can be selected and checkboxes at the bottom of the window allow the tester to choose a specific encoding. However, for most cases the detected presets should be correct.
Click the Start Attack button and the Intruder will start sending each of the pre-generated vectors to the configured endpoint. Note that this may result in a huge number of outgoing requests. To make it easier to recognize the successful Signature Wrapping attacks, it is recommended to use the Intruder's Grep-Match functionality. As an example, consider adding the replacement values from the Modifications Table as a Grep-Match rule in the Intruder's Options tab. By doing so, a successful attack vector will be marked with a checkmark in the results table, if the response includes any of the configure grep rules.
Our students Nurullah Erinola, Nils Engelberts and David Herring did a great job improving the execution of XSW and implementing a much better UI.
---
[1] On Breaking SAML - Be Whoever You Want to Be
[2] Your Software at My Service
[3] Security Analysis of XAdES Validation in the CEF Digital Signature Services (DSS)
[4] WS-Attacker
Testing for XSW vulnerabilities in SAML endpoints can be a tedious process, as the auditor needs to not only know the details of the various XSW techniques, but also must handle a multitude of repetitive copy-and-paste tasks and apply the appropriate encoding onto each message. The latest revision of the XSW-Attacker module in our BurpSuite extension EsPReSSo helps to make this testing process easier, and even comes with a semi-automated mode. Read on to learn more about the new release!
SAML XSW-Attacker
After a signed SAML message has been intercepted using the Burp Proxy and shown in EsPReSSO, you can open the XSW-Attacker by navigating to the SAML tab and then the Attacker tab. Select Signature Wrapping from the drop down menu, as shown in the screenshot below:To simplify its use, the XSW-Attacker performs the attack in a two step process of initialization and execution, as reflected by its two tabs Init Attack and Execute Attack. The interface of the XSW-Attacker is depicted below.
![]() |
| XSW-Attacker overview |
The Init Attack tab displays the current SAML message. To execute a signature wrapping attack, a payload needs to be configured in a way that values of the originally signed message are replaced with values of the attacker's choice. To do this, enter the value of a text-node you wish to replace in the Current value text-field. Insert the replacement value in the text-field labeled New value and click the Add button. Multiple values can be provided; however, all of which must be child nodes of the signed element. Valid substitution pairs and the corresponding XPath selectors are displayed in the Modifications Table. To delete an entry from the table, select the entry and press `Del`, or use the right-click menu.
Next, click the Generate vectors button - this will prepare the payloads accordingly and brings the Execute Attack tab to the front of the screen.
At the top of the Execute Attack tab, select one of the pre-generated payloads. The structure of the selected vector is explained in a shorthand syntax in the text area below the selector.
The text-area labeled Attack vector is editable and can be used to manually fine-tune the chosen payload if necessary. The button Pretty print opens up a syntax-highlighted overview of the current vector.
To submit the manipulated SAML response, use Burp's Forward button (or Go, while in the Repeater).
Automating XSW-Attacker with Burp Intruder
Burp's Intruder tool allows the sending of automated requests with varying payloads to a test target and analyzes the responses. EsPReSSO now includes a Payload Generator called XSW Payloads to facilitate when testing the XML processing endpoints for XSW vulnerabilities. The following paragraphs explain how to use the automated XSW attacker with a SAML response.First, open an intercepted request in Burp's Intruder (e.g., by pressing `Ctrl+i`). For the attack type, select Sniper. Open the Intruder's Positions tab, clear all payload positions but the value of the XML message (the `SAMLResponse` parameter, in our example). Note: the XSW-Attacker can only handle XML messages that contain exactly one XML Signature.
Next, switch to the Payloads tab and for the Payload Type, select Extension-generated. From the newly added Select generator drop-down menu, choose XSW Payloads, as depicted in the screenshot below.
While still in the Payloads tab, disable the URL-encoding checkbox in the Payload Encoding section, since Burp Intruder deals with the encoding automatically and should suffice for most cases.
Click the Start Attack button and a new window will pop up. This window is shown below and is similar to the XSW Attacker's Init Attack tab.
Configure the payload as explained in the section above. In addition, a schema analyzer can be selected and checkboxes at the bottom of the window allow the tester to choose a specific encoding. However, for most cases the detected presets should be correct.
Click the Start Attack button and the Intruder will start sending each of the pre-generated vectors to the configured endpoint. Note that this may result in a huge number of outgoing requests. To make it easier to recognize the successful Signature Wrapping attacks, it is recommended to use the Intruder's Grep-Match functionality. As an example, consider adding the replacement values from the Modifications Table as a Grep-Match rule in the Intruder's Options tab. By doing so, a successful attack vector will be marked with a checkmark in the results table, if the response includes any of the configure grep rules.
Credits
EsPReSSO's XSW Attacker is based on the WS-Attacker [4] library by Christian Mainka and the original adoption for EsPReSSO has been implemented by Tim Günther.Our students Nurullah Erinola, Nils Engelberts and David Herring did a great job improving the execution of XSW and implementing a much better UI.
---
[1] On Breaking SAML - Be Whoever You Want to Be
[2] Your Software at My Service
[3] Security Analysis of XAdES Validation in the CEF Digital Signature Services (DSS)
[4] WS-Attacker
Related links
- Hacking Tools 2019
- Pentest Tools Kali Linux
- Hacking Tools Online
- How To Hack
- Hacking Tools Github
- Hacking Tools Software
- Hackrf Tools
- Hacking Tools Name
- Hacker Tools Mac
- Hacking Tools 2019
- Hacker Tools For Mac
- Hacking Tools Download
- Hacking Tools Software
- Hacker Tools
- Hacking Tools Pc
- Hacking Tools For Windows Free Download
- How To Make Hacking Tools
- Hacker Tools
- Pentest Tools Port Scanner
- Hacking Tools For Pc
- Physical Pentest Tools
- Hacker Tools For Windows
- Hacker Tools Free
- Top Pentest Tools
- Hacking Tools For Kali Linux
- Underground Hacker Sites
- Growth Hacker Tools
- Best Hacking Tools 2019
- Hak5 Tools
- Hacker Tools Hardware
- Pentest Tools Nmap
- Hacker Tools Free Download
- Growth Hacker Tools
- How To Make Hacking Tools
- Top Pentest Tools
- Hackrf Tools
- Hacker Techniques Tools And Incident Handling
- Hacking Tools Free Download
- Pentest Tools Open Source
- Hacking Tools Mac
- Nsa Hacker Tools
- Pentest Tools Open Source
- New Hack Tools
- Computer Hacker
- Hacking Tools Online
- Hacking Tools Hardware
- Hack Tools For Ubuntu
- Hack Tools For Mac
- Pentest Tools Framework
- Hacker Tools 2019
- Beginner Hacker Tools
- Install Pentest Tools Ubuntu
- Install Pentest Tools Ubuntu
- Hack Website Online Tool
- Hacker Tools For Mac
- Hacking Tools Free Download
- Hacker Tools Online
- Hacking Tools And Software
- Game Hacking
- Pentest Tools Github
- Bluetooth Hacking Tools Kali
- Hacker Tools Software
- Hacker Tools Windows
- Hacking Tools Usb
- Hack Website Online Tool
- Physical Pentest Tools
- How To Hack
- New Hack Tools
- Pentest Tools Open Source
- Pentest Tools Nmap
- Hacker Tools Free Download
- Hack Tool Apk No Root
- Hacker Search Tools
- Pentest Recon Tools
- Physical Pentest Tools
- Pentest Tools For Ubuntu
- Hacking Tools
- Free Pentest Tools For Windows
- Hacking Apps
- Hacking Apps
- Hack Tools For Mac
- Tools For Hacker
- Pentest Tools Nmap
- Growth Hacker Tools
- Hacker Tools Free
- Pentest Tools Free
- Tools 4 Hack
- Hacker Search Tools
- Hacking Tools Kit
- Hacker Tools Github
- Hacker Security Tools
- Nsa Hack Tools Download
- Pentest Tools Windows
- Hacker Tools Free Download
- Underground Hacker Sites
- Free Pentest Tools For Windows
- Best Hacking Tools 2020
- Hack Website Online Tool
- Hacking Tools Pc
- Pentest Tools Url Fuzzer
- Pentest Tools Nmap
- Pentest Tools
- Hacker Tools For Windows
- Pentest Tools For Mac
- Blackhat Hacker Tools
- Tools Used For Hacking
- Black Hat Hacker Tools
- Pentest Tools For Ubuntu
- Pentest Tools For Ubuntu
- Usb Pentest Tools
- Wifi Hacker Tools For Windows
- Hack Tool Apk No Root
- How To Install Pentest Tools In Ubuntu
- Pentest Tools Tcp Port Scanner
- Hacking Tools Online
- Pentest Tools Find Subdomains
- Pentest Tools Find Subdomains
- Nsa Hack Tools Download
- Hacker Tools List
- Pentest Tools For Android
- Hacker Tools Free
- Hacking Tools Github
- Pentest Tools For Android
- Android Hack Tools Github
- Pentest Tools Apk
- Hacker Security Tools
- Tools For Hacker
- Hacker Tools Free Download
- Pentest Recon Tools
- Hacker Tools For Pc
- Physical Pentest Tools
- Pentest Tools Review
- Game Hacking
- New Hack Tools
- Hacker Tools Apk
- Hacking Tools Kit
- New Hacker Tools
- Hack Tools Online
- Hack Tools 2019
- Hacking Tools For Games
- Hack Tools For Ubuntu
- Hack Apps
- Underground Hacker Sites
- Pentest Tools Find Subdomains
- Hack Tool Apk No Root
- Hack Tools Mac
- Easy Hack Tools
- How To Hack
- Hacker Techniques Tools And Incident Handling
- Pentest Tools Download
- Hack Tools Download
- Hacking Tools For Beginners
- Hacking Tools For Windows
- Hack Tools For Games
- Best Pentesting Tools 2018
- Pentest Tools Website
- Hacker Tools 2019
- Pentest Tools Open Source
- Hacker Search Tools
- Pentest Reporting Tools
- Hack Tools Mac
- Bluetooth Hacking Tools Kali
- Pentest Recon Tools
- World No 1 Hacker Software
- Hack Tools Github
- Hack Tools For Ubuntu
- World No 1 Hacker Software
- Hacking Tools Windows 10
- Hack Tools For Mac
- Hak5 Tools
- Hacker Tools 2020
- Hacker
- Hacking Tools For Mac





No comments:
Post a Comment