forked from SummerSec/SpringBootExploit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patha.fxml
More file actions
140 lines (127 loc) · 5.86 KB
/
Copy patha.fxml
File metadata and controls
140 lines (127 loc) · 5.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<?import javafx.scene.text.*?>
<VBox maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="750.0" prefWidth="900.0" xmlns="http://javafx.com/javafx/11.0.2" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.drops.ui.MainController">
<children>
<MenuBar prefHeight="0.0" prefWidth="914.0">
<menus>
<Menu mnemonicParsing="false" text="设置">
<items>
<MenuItem fx:id="proxySetupBtn" mnemonicParsing="false" text="代理" />
</items>
</Menu>
</menus>
</MenuBar>
<TitledPane animated="false" prefHeight="78.0" prefWidth="800.0" text="目标检测">
<content>
<HBox prefHeight="0.0" prefWidth="798.0" spacing="4.0">
<children>
<Label prefHeight="19.0" prefWidth="74.0" text="目标地址">
<HBox.margin>
<Insets top="4.0" />
</HBox.margin>
<font>
<Font size="16.0" />
</font>
</Label>
<TextField fx:id="targetAddress" prefHeight="27.0" prefWidth="456.0" />
<Button mnemonicParsing="false" onAction="#check" prefHeight="23.0" prefWidth="86.0" text="检测环境" />
<Label layoutX="20.0" layoutY="23.0" prefHeight="22.0" prefWidth="106.0" text="超时设置/s">
<HBox.margin>
<Insets top="4.0" />
</HBox.margin>
<font>
<Font size="16.0" />
</font>
</Label>
<TextField fx:id="httpTimeout" layoutX="80.0" layoutY="20.0" prefHeight="23.0" prefWidth="100.0" />
</children>
</HBox>
</content>
</TitledPane>
<TitledPane animated="false" prefHeight="69.0" prefWidth="900.0" text="服务器配置">
<content>
<HBox prefHeight="0.0" prefWidth="798.0" spacing="4.0">
<children>
<Label text="服务器地址">
<HBox.margin>
<Insets top="4.0" />
</HBox.margin>
<font>
<Font size="16.0" />
</font>
</Label>
<TextField fx:id="vps" prefHeight="27.0" prefWidth="312.0" />
<Button fx:id="connect" mnemonicParsing="false" onAction="#connect" prefHeight="23.0" prefWidth="84.0" text="连接" />
<Label prefHeight="50.0" prefWidth="50.0" text="HPort" >
<font>
<Font size="16.0" />
</font>
</Label>
<TextField fx:id="hport" prefHeight="40.0" prefWidth="90.0" text="3456"/>
<Label prefHeight="60.0" prefWidth="50.0" text="LPort" >
<font>
<Font size="16.0" />
</font>
</Label>
<TextField fx:id="lport" prefHeight="40.0" prefWidth="90.0" text="1389" />
</children>
</HBox>
</content>
</TitledPane>
<TitledPane animated="false" prefHeight="37.0" prefWidth="900.0" text="利用方式">
<content>
<HBox prefHeight="0.0" prefWidth="998.0" spacing="8.0">
<children>
<Label prefHeight="19.0" prefWidth="70.0" text="利用链">
<HBox.margin>
<Insets top="3.0" />
</HBox.margin>
<font>
<Font size="16.0" />
</font>
</Label>
<ComboBox fx:id="gadgetOpt" prefHeight="26.0" prefWidth="226.0" />
<Button fx:id="crackSpcGadgetBtn" mnemonicParsing="false" onAction="#crackSpcGadgetBtn" prefHeight="32.0" prefWidth="153.0" text="检测当前利用链">
<font>
<Font size="16.0" />
</font></Button>
<Button fx:id="crackGadgetBtn" mnemonicParsing="false" onAction="#crackGadgetBtn" prefHeight="30.0" prefWidth="167.0" text="爆破利用链">
<font>
<Font size="16.0" />
</font>
</Button>
</children>
</HBox>
</content>
</TitledPane>
<TabPane prefHeight="492.0" prefWidth="900.0" tabClosingPolicy="UNAVAILABLE">
<tabs>
<Tab text="检测日志">
<content>
<VBox>
<children>
<HBox prefHeight="513.0" prefWidth="990.0" spacing="10.0">
<children>
<TextArea fx:id="logTextArea" prefHeight="428.0" prefWidth="880.0">
<font>
<Font size="16.0" />
</font>
<HBox.margin>
<Insets left="10.0" right="10.0" />
</HBox.margin></TextArea>
</children>
<padding>
<Insets top="10.0" />
</padding>
</HBox>
</children></VBox>
</content>
</Tab>
</tabs>
</TabPane>
<HBox prefHeight="0.0" prefWidth="800.0" />
</children>
</VBox>