Add files via upload

This commit is contained in:
ᴋᴇʏ
2023-10-18 00:49:02 +08:00
committed by GitHub
parent cc7956d8dc
commit 9135b8cbd2
2 changed files with 3 additions and 1 deletions

View File

@@ -25,7 +25,7 @@ public class RuleTool {
// 获取官方规则文件,在线更新写入
FileOutputStream fileOutputStream = new FileOutputStream(this.rulesFilePath);
fileOutputStream.write(httpResponse.body().bytes());
JOptionPane.showMessageDialog(null, "Config file updated successfully!", "Error",
JOptionPane.showMessageDialog(null, "Rules updated successfully!", "Info",
JOptionPane.INFORMATION_MESSAGE);
} catch (Exception ignored) {
JOptionPane.showMessageDialog(null, "Please check your network!", "Error",

View File

@@ -1,6 +1,8 @@
package burp.rule.utils;
import java.util.Map;
import burp.BurpExtender;
import org.yaml.snakeyaml.DumperOptions;
import org.yaml.snakeyaml.Yaml;
import java.io.FileInputStream;