Skip to content

Commit

Permalink
Compatibility with both Burp 1.6 and 1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
hvqzao committed Apr 15, 2016
1 parent 914ba4f commit e032f10
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
/bin
/bin/build.jardesc
/bin/burp/
/bin/wildcard.jar
10 changes: 5 additions & 5 deletions src/build.jardesc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="WINDOWS-1252" standalone="no"?>
<?xml version="1.0" encoding="WINDOWS-1250" standalone="no"?>
<jardesc>
<jar path="Wildcard/bin/wildcard.jar"/>
<options buildIfNeeded="true" compress="true" descriptionLocation="/Wildcard/src/build.jardesc" exportErrors="true" exportWarnings="true" includeDirectoryEntries="false" overwrite="true" saveDescription="true" storeRefactorings="false" useSourceFolders="false"/>
<jar path="burp-wildcard/bin/wildcard.jar"/>
<options buildIfNeeded="true" compress="true" descriptionLocation="/burp-wildcard/src/build.jardesc" exportErrors="true" exportWarnings="true" includeDirectoryEntries="false" overwrite="true" saveDescription="true" storeRefactorings="false" useSourceFolders="false"/>
<storedRefactorings deprecationInfo="true" structuralOnly="false"/>
<selectedProjects/>
<manifest generateManifest="true" manifestLocation="" manifestVersion="1.0" reuseManifest="false" saveManifest="false" usesManifest="true">
Expand All @@ -11,7 +11,7 @@
</sealing>
</manifest>
<selectedElements exportClassFiles="true" exportJavaFiles="false" exportOutputFolder="false">
<javaElement handleIdentifier="=Wildcard/src&lt;burp"/>
<folder path="/Wildcard/wildcard"/>
<folder path="/burp-wildcard/wildcard"/>
<javaElement handleIdentifier="=burp-wildcard/src&lt;burp"/>
</selectedElements>
</jardesc>
6 changes: 3 additions & 3 deletions src/burp/BurpExtender.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Wildcard Burp Extension, (c) 2015 Marcin Woloszyn (@hvqzao), Released under MIT license
// Wildcard Burp Extension, (c) 2015-2016 Marcin Woloszyn (@hvqzao), Released under MIT license

// v1.02, 2015-04-18
// v1.03, 2016-04-15

package burp;

Expand Down Expand Up @@ -56,7 +56,7 @@ public class BurpExtender implements IBurpExtender, ITab, IExtensionStateListene
private JCheckBox optionsSettingsUnsupported;
private JCheckBox optionsSettingsPersistency;
private JCheckBox optionsSettingsShortenTab;
private final String[] burpTabs = { "Target", "Proxy", "Spider", "Scanner", "Intruder", "Repeater", "Sequencer", "Decoder", "Comparer", "Extender", "Options", "Alerts", "*" };
private final String[] burpTabs = { "Target", "Proxy", "Spider", "Scanner", "Intruder", "Repeater", "Sequencer", "Decoder", "Comparer", "Extender", "Options", "User options", "Project options", "Alerts", "*" };
private JCheckBox optionsSettingsHijack;
private ArrayList<JDialog> dialogs = new ArrayList<JDialog>();
private Timer hijackTimer;
Expand Down

0 comments on commit e032f10

Please sign in to comment.