This repository was archived by the owner on Jul 25, 2024. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- # SpringBootExploit
1+ # SpringBootExploit
2+
3+ TODO
4+
5+ * ldap和rmi随机绑定端口
6+ * Javafx的ui
7+ * 多线程
8+ *
9+
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 11package com .drops .main ;
22
33import javafx .application .Application ;
4+ import javafx .fxml .FXMLLoader ;
5+ import javafx .scene .Parent ;
6+ import javafx .scene .Scene ;
47import javafx .stage .Stage ;
58
9+ import java .io .IOException ;
10+
611public 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}
Original file line number Diff line number Diff line change 1010 **/
1111public class Gui {
1212
13+
1314}
Original file line number Diff line number Diff line change 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 >
You can’t perform that action at this time.
0 commit comments