Skip to content
This repository was archived by the owner on Jul 25, 2024. It is now read-only.

Commit ef52035

Browse files
committed
pom.xml
1 parent 3d2d069 commit ef52035

6 files changed

Lines changed: 42 additions & 13 deletions

File tree

.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,9 @@
1-
# SpringBootExploit
1+
# SpringBootExploit
2+
3+
TODO
4+
5+
* ldap和rmi随机绑定端口
6+
* Javafx的ui
7+
* 多线程
8+
*
9+

pom.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,15 @@
8080
<artifactId>unboundid-ldapsdk</artifactId>
8181
<version>3.1.1</version>
8282
</dependency>
83+
<dependency>
84+
<groupId>cn.hutool</groupId>
85+
<artifactId>hutool-all</artifactId>
86+
<version>5.7.5</version>
87+
</dependency>
8388
<dependency>
8489
<groupId>org.javassist</groupId>
8590
<artifactId>javassist</artifactId>
86-
<version>3.27.0-GA</version>
91+
<version>3.15.0-GA</version>
8792
</dependency>
8893
</dependencies>
8994

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,27 @@
11
package com.drops.main;
22

33
import javafx.application.Application;
4+
import javafx.fxml.FXMLLoader;
5+
import javafx.scene.Parent;
6+
import javafx.scene.Scene;
47
import javafx.stage.Stage;
58

9+
import java.io.IOException;
10+
611
public class main extends Application {
712

813
public static void main(String[] args) {
914
launch(args);
1015
}
1116

1217
@Override
13-
public void start(Stage primaryStage) {
18+
public void start(Stage primaryStage) throws Exception {
19+
Parent root = FXMLLoader.load(getClass().getResource("/gui.fxml"));
20+
primaryStage.setTitle("Spring Boot Vul Exploit by Drops");
21+
Scene scene = new Scene(root);
22+
primaryStage.setScene(scene);
23+
primaryStage.show();
1424

1525
}
26+
public main(){}
1627
}

src/main/java/com/drops/ui/Gui.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@
1010
**/
1111
public class Gui {
1212

13+
1314
}

src/main/resources/gui.fxml

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22

3-
<?import java.lang.*?>
4-
<?import java.util.*?>
5-
<?import javafx.scene.*?>
63
<?import javafx.scene.control.*?>
74
<?import javafx.scene.layout.*?>
85

9-
<AnchorPane xmlns="http://javafx.com/javafx"
10-
xmlns:fx="http://javafx.com/fxml"
11-
fx:controller="com.drops.ui.Gui"
12-
prefHeight="400.0" prefWidth="600.0">
13-
14-
</AnchorPane>
6+
<VBox maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="558.0" prefWidth="711.0" xmlns="http://javafx.com/javafx/11.0.2" xmlns:fx="http://javafx.com/fxml/1">
7+
<children>
8+
<MenuBar>
9+
<menus>
10+
<Menu mnemonicParsing="false" text="设置">
11+
<items>
12+
<MenuItem mnemonicParsing="false" text="代理" />
13+
</items>
14+
</Menu>
15+
</menus>
16+
</MenuBar>
17+
</children>
18+
</VBox>

0 commit comments

Comments
 (0)