Skip to content

Commit

Permalink
Merge branch 'master' of github.com:NetSPI/Wsdler
Browse files Browse the repository at this point in the history
  • Loading branch information
egru committed Jun 2, 2015
2 parents a935a7d + 9759258 commit 589cf39
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 17 deletions.
14 changes: 8 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,19 @@ WSDL Parser extension for Burp

###How to Run###

Add jar file to Burp through Burp extender.
1. Download latest jar from the releases (https://github.com/NetSPI/Wsdler/releases) or clone the repo and compile it.

![alt tag](https://blog.netspi.com/wp-content/uploads/2015/05/1430624756-458a48eb0a789e8805d2e25fbb8b1b77-1024x514.png)
2. Add jar file to Burp through Burp extender.

Right-click on WSDL request and select Parse WSDL
![alt tag](https://blog.netspi.com/wp-content/uploads/2015/05/1430624756-458a48eb0a789e8805d2e25fbb8b1b77-1024x514.png)

![alt tag](https://blog.netspi.com/wp-content/uploads/2015/05/1430624759-035d370fd48f0d9a8c8326a78fccb714.png)
3. Right-click on WSDL request and select Parse WSDL

The Wsdler tab should populate with the SOAP requests
![alt tag](https://blog.netspi.com/wp-content/uploads/2015/05/1430624759-035d370fd48f0d9a8c8326a78fccb714.png)

![alt tag](https://blog.netspi.com/wp-content/uploads/2015/05/1430624761-83fe6f80d8d373113cced26ab6c0714b.png)
4. The Wsdler tab should populate with the SOAP requests

![alt tag](https://blog.netspi.com/wp-content/uploads/2015/05/1430624761-83fe6f80d8d373113cced26ab6c0714b.png)

(Older) Blog detailing how to use the Wsdler Plugin:

Expand Down
31 changes: 20 additions & 11 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,14 @@

<groupId>com.netspi.wsdler</groupId>
<artifactId>wsdler</artifactId>
<version>2.0-SNAPSHOT</version>
<version>2.0.4-SNAPSHOT</version>

<dependencies>
<dependency>
<groupId>org.reficio</groupId>
<artifactId>soap-builder</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.reficio</groupId>
<artifactId>soap-client</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.reficio</groupId>
<artifactId>soap-server</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>
</dependencies>


Expand All @@ -34,5 +24,24 @@
</repository>
</repositories>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
</configuration>
</plugin>
</plugins>
</build>

</project>
3 changes: 3 additions & 0 deletions src/main/java/burp/WSDLParser.java
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ public int parseWSDL(IHttpRequestResponse requestResponse, IBurpExtenderCallback
if (requestName.contains(".")){
requestName = requestName.substring(0,requestName.indexOf("."));
}
if (requestName.contains("?")){
requestName = requestName.substring(0,requestName.indexOf("?"));
}
Wsdl parser;
try {
parser = Wsdl.parse(temp.toURI().toString());
Expand Down

0 comments on commit 589cf39

Please sign in to comment.