Skip to content

Commit 16fad29

Browse files
committed
Update creds schema.
1 parent 5967991 commit 16fad29

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

data/gui/msfgui.jar

14 Bytes
Binary file not shown.

external/source/gui/msfguijava/src/msfgui/MainFrame.form

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
</DimensionLayout>
1616
<DimensionLayout dim="1">
1717
<Group type="103" groupAlignment="0" attributes="0">
18-
<Component id="tabbedPane" alignment="1" pref="530" max="32767" attributes="0"/>
18+
<Component id="tabbedPane" alignment="1" pref="534" max="32767" attributes="0"/>
1919
</Group>
2020
</DimensionLayout>
2121
</Layout>
@@ -308,7 +308,7 @@
308308
<Property name="name" type="java.lang.String" value="credsTable" noResource="true"/>
309309
</Properties>
310310
<AuxValues>
311-
<AuxValue name="JavaCodeGenerator_CreateCodeCustom" type="java.lang.String" value="new MsfTable(rpcConn, new String [] {&quot;Host&quot;, &quot;Time&quot;, &quot;Port&quot;, &quot;Proto&quot;, &quot;Sname&quot;, &quot;Type&quot;, &quot;User&quot;, &quot;Pass&quot;, &quot;Active&quot;&#xa; }, &quot;creds&quot;, new String[]{&quot;host&quot;, &quot;time&quot;, &quot;port&quot;, &quot;proto&quot;, &quot;sname&quot;, &quot;type&quot;, &quot;user&quot;, &quot;pass&quot;, &quot;active&quot;})"/>
311+
<AuxValue name="JavaCodeGenerator_CreateCodeCustom" type="java.lang.String" value="new MsfTable(rpcConn, new String [] {&quot;Host&quot;, &quot;Updated&quot;, &quot;Port&quot;, &quot;Proto&quot;, &quot;Sname&quot;, &quot;Type&quot;, &quot;User&quot;, &quot;Pass&quot;, &quot;Active&quot;&#xa; }, &quot;creds&quot;, new String[]{&quot;host&quot;, &quot;updated_at&quot;, &quot;port&quot;, &quot;proto&quot;, &quot;sname&quot;, &quot;type&quot;, &quot;user&quot;, &quot;pass&quot;, &quot;active&quot;})"/>
312312
</AuxValues>
313313
</Component>
314314
</SubComponents>

external/source/gui/msfguijava/src/msfgui/MainFrame.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -527,8 +527,8 @@ private void initComponents() {
527527
lootsTable = new MsfTable(rpcConn,new String [] {"Host", "Service", "Ltype", "Ctype", "Data", "Created", "Updated", "Name", "Info"
528528
}, "loots", new String[]{"host", "service", "ltype", "ctype", "data", "created_at", "updated_at", "name", "info"});
529529
credsPane = new javax.swing.JScrollPane();
530-
credsTable = new MsfTable(rpcConn, new String [] {"Host", "Time", "Port", "Proto", "Sname", "Type", "User", "Pass", "Active"
531-
}, "creds", new String[]{"host", "time", "port", "proto", "sname", "type", "user", "pass", "active"});
530+
credsTable = new MsfTable(rpcConn, new String [] {"Host", "Updated", "Port", "Proto", "Sname", "Type", "User", "Pass", "Active"
531+
}, "creds", new String[]{"host", "updated_at", "port", "proto", "sname", "type", "user", "pass", "active"});
532532
menuBar = new javax.swing.JMenuBar();
533533
javax.swing.JMenu fileMenu = new javax.swing.JMenu();
534534
connectRpcMenuItem = new javax.swing.JMenuItem();
@@ -710,7 +710,7 @@ public void keyReleased(java.awt.event.KeyEvent evt) {
710710
);
711711
mainPanelLayout.setVerticalGroup(
712712
mainPanelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
713-
.addComponent(tabbedPane, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.DEFAULT_SIZE, 530, Short.MAX_VALUE)
713+
.addComponent(tabbedPane, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.DEFAULT_SIZE, 534, Short.MAX_VALUE)
714714
);
715715

716716
menuBar.setName("menuBar"); // NOI18N

0 commit comments

Comments
 (0)