File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
src/main/java/yagura/view Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ gradlew release
3939* JRE(JDK) 17 (Open JDK を推奨)(https://openjdk.java.net/ )
4040
4141### Burp Suite
42- * v2023.1.2以上 (http://www.portswigger.net/burp/ )
42+ * Burp Suite v2024.2.1.3 以上 (http://www.portswigger.net/burp/ )
4343
4444### 開発環境
4545* NetBeans 24 (https://netbeans.apache.org/ )
Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ dependencies {
101101
102102 // standalone 利用のため
103103 // https://mvnrepository.com/artifact/net.portswigger.burp.extensions/montoya-api
104- implementation ' net.portswigger.burp.extensions:montoya-api:2024.12 '
104+ implementation ' net.portswigger.burp.extensions:montoya-api:2025.2 '
105105 // https://mvnrepository.com/artifact/commons-codec/commons-codec
106106 implementation ' commons-codec:commons-codec:1.17.2'
107107 // https://mvnrepository.com/artifact/com.fifesoft/rsyntaxtextarea
@@ -125,7 +125,7 @@ dependencies {
125125 // testImplementation fileTree(dir: 'libs', include: ['*.jar'])
126126
127127 // https://mvnrepository.com/artifact/net.portswigger.burp.extensions/montoya-api
128- testImplementation ' net.portswigger.burp.extensions:montoya-api:2024.12 '
128+ testImplementation ' net.portswigger.burp.extensions:montoya-api:2025.2 '
129129
130130 // https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp
131131 testImplementation ' com.squareup.okhttp3:okhttp:4.12.0'
Original file line number Diff line number Diff line change @@ -133,9 +133,9 @@ private void btnImportActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIR
133133 try {
134134 file = filechooser .getSelectedFile ();
135135 OptionProperty option = BurpExtension .getInstance ().getProperty ();
136- Map <String , String > config = option .loadConfigSetting ();
136+ Map <String , String > config = option .getProperty ();
137137 JsonUtil .loadFromJson (file , config );
138- option .saveConfigSetting (config );
138+ option .setProperty (config );
139139 this .currentConigDirectory = file .getParentFile ();
140140 } catch (IOException ex ) {
141141 logger .log (Level .SEVERE , ex .getMessage (), ex );
@@ -163,7 +163,7 @@ private void btnExportActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIR
163163 file = new File (file .getAbsolutePath () + ".json" );
164164 }
165165 OptionProperty option = BurpExtension .getInstance ().getProperty ();
166- Map <String , String > config = option .loadConfigSetting ();
166+ Map <String , String > config = option .getProperty ();
167167 JsonUtil .saveToJson (file , config );
168168 this .currentConigDirectory = file .getParentFile ();
169169 } catch (IOException ex ) {
You can’t perform that action at this time.
0 commit comments