My BugBounty Journal

The journal of a unix geek taking its first steps into the BugBounty world...

View on GitHub

SOAP and WSDL

Resources

Tools

Tips and Tricks

Commonly used headers (for curl)

Examples


* download the XSD-Files:

curl -o service.xsd https://site/dir/service?xsd=service.xsd


* cURL SOAP request

curl -X POST http://site/dir/service
-H ‘Content-Type: text/xml’
-H ‘SOAPAction: service:getSomething’
-d ‘

10020200 </blz:getSomething> </soapenv:Body> </soapenv:Envelope>' ``` * Authentication example ```xml test pass 5 ```