hardsploit_gui 2.0 → 2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/Firmware/FPGA/I2C/I2C_INTERACT/HARDSPLOIT_FIRMWARE_FPGA_I2C_INTERACT.rpd +0 -0
- data/lib/HardsploitAPI/HardsploitAPI.rb +5 -6
- data/lib/HardsploitAPI/HardsploitAPI_CONSTANT.rb +1 -1
- data/lib/HardsploitAPI/HardsploitAPI_ERROR.rb +38 -0
- data/lib/HardsploitAPI/HardsploitAPI_FIRMWARE.rb +3 -3
- data/lib/HardsploitAPI/HardsploitAPI_I2C.rb +145 -3
- data/lib/HardsploitAPI/HardsploitAPI_PROGRESS.rb +28 -0
- data/lib/HardsploitAPI/HardsploitAPI_SPI.rb +195 -5
- data/lib/HardsploitAPI/HardsploitAPI_USB_COMMUNICATION.rb +0 -1
- data/lib/HardsploitAPI/SWD/HardsploitAPI_SWD.rb +1 -1
- data/lib/class/Generic_commands.rb +31 -36
- data/lib/class/HardsploitGUI.rb +5 -4
- data/lib/class/I2C/I2c_export.rb +6 -9
- data/lib/class/I2C/I2c_import.rb +15 -28
- data/lib/class/I2C/I2c_settings.rb +20 -8
- data/lib/class/Progress_bar.rb +31 -0
- data/lib/class/SPI/Spi_export.rb +6 -9
- data/lib/class/SPI/Spi_import.rb +33 -32
- data/lib/class/SPI/Spi_settings.rb +50 -4
- data/lib/db/hs.db +0 -0
- data/lib/gui/gui_chip_editor.rb +120 -127
- data/lib/gui/gui_i2c_settings.rb +34 -5
- data/lib/gui/gui_progress_bar.rb +84 -0
- data/lib/gui/gui_spi_settings.rb +175 -49
- data/lib/gui_designer/gui_chip_editor.ui +134 -141
- data/lib/gui_designer/gui_i2c_settings.ui +35 -4
- data/lib/gui_designer/gui_progress_bar.ui +83 -0
- data/lib/gui_designer/gui_spi_settings.ui +159 -34
- data/lib/hardsploit.rb +12 -3
- data/lib/logs/error.log +1 -0
- data/lib/startHardsploit.rb +10 -0
- metadata +8 -3
- data/lib/gui_designer/gui_processing.ui +0 -81
data/lib/logs/error.log
CHANGED
@@ -0,0 +1 @@
|
|
1
|
+
|
@@ -0,0 +1,10 @@
|
|
1
|
+
#===================================================
|
2
|
+
# Hardsploit GUI - By Opale Security
|
3
|
+
# www.opale-security.com || www.hardsploit.io
|
4
|
+
# License: GNU General Public License v3
|
5
|
+
# License URI: http://www.gnu.org/licenses/gpl.txt
|
6
|
+
#===================================================
|
7
|
+
|
8
|
+
#!/usr/bin/ruby
|
9
|
+
require_relative 'hardsploit.rb'
|
10
|
+
Hardsploit_GUI.new
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hardsploit_gui
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '2.
|
4
|
+
version: '2.1'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OPALE SECURITY
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-02-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: sqlite3
|
@@ -140,9 +140,11 @@ files:
|
|
140
140
|
- lib/Firmware/UC/VersionUC.rb
|
141
141
|
- lib/HardsploitAPI/HardsploitAPI.rb
|
142
142
|
- lib/HardsploitAPI/HardsploitAPI_CONSTANT.rb
|
143
|
+
- lib/HardsploitAPI/HardsploitAPI_ERROR.rb
|
143
144
|
- lib/HardsploitAPI/HardsploitAPI_FIRMWARE.rb
|
144
145
|
- lib/HardsploitAPI/HardsploitAPI_I2C.rb
|
145
146
|
- lib/HardsploitAPI/HardsploitAPI_NO_MUX_PARALLELE_MEMORY.rb
|
147
|
+
- lib/HardsploitAPI/HardsploitAPI_PROGRESS.rb
|
146
148
|
- lib/HardsploitAPI/HardsploitAPI_SPI.rb
|
147
149
|
- lib/HardsploitAPI/HardsploitAPI_TEST_INTERACT.rb
|
148
150
|
- lib/HardsploitAPI/HardsploitAPI_USB_COMMUNICATION.rb
|
@@ -171,6 +173,7 @@ files:
|
|
171
173
|
- lib/class/PARALLEL/Parallel_export.rb
|
172
174
|
- lib/class/PARALLEL/Parallel_import.rb
|
173
175
|
- lib/class/PARALLEL/Parallel_settings.rb
|
176
|
+
- lib/class/Progress_bar.rb
|
174
177
|
- lib/class/SPI/Spi_export.rb
|
175
178
|
- lib/class/SPI/Spi_import.rb
|
176
179
|
- lib/class/SPI/Spi_settings.rb
|
@@ -187,6 +190,7 @@ files:
|
|
187
190
|
- lib/gui/gui_i2c_command.rb
|
188
191
|
- lib/gui/gui_i2c_settings.rb
|
189
192
|
- lib/gui/gui_parallel_settings.rb
|
193
|
+
- lib/gui/gui_progress_bar.rb
|
190
194
|
- lib/gui/gui_spi_import.rb
|
191
195
|
- lib/gui/gui_spi_settings.rb
|
192
196
|
- lib/gui/gui_wire_helper.rb
|
@@ -200,12 +204,13 @@ files:
|
|
200
204
|
- lib/gui_designer/gui_i2c_command.ui
|
201
205
|
- lib/gui_designer/gui_i2c_settings.ui
|
202
206
|
- lib/gui_designer/gui_parallel_settings.ui
|
203
|
-
- lib/gui_designer/
|
207
|
+
- lib/gui_designer/gui_progress_bar.ui
|
204
208
|
- lib/gui_designer/gui_spi_settings.ui
|
205
209
|
- lib/gui_designer/gui_wire_helper.ui
|
206
210
|
- lib/hardsploit.rb
|
207
211
|
- lib/images/search.png
|
208
212
|
- lib/logs/error.log
|
213
|
+
- lib/startHardsploit.rb
|
209
214
|
homepage: http://www.hardsploit.io
|
210
215
|
licenses: []
|
211
216
|
metadata: {}
|
@@ -1,81 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<ui version="4.0">
|
3
|
-
<class>Processing</class>
|
4
|
-
<widget class="QWidget" name="Processing">
|
5
|
-
<property name="geometry">
|
6
|
-
<rect>
|
7
|
-
<x>0</x>
|
8
|
-
<y>0</y>
|
9
|
-
<width>235</width>
|
10
|
-
<height>140</height>
|
11
|
-
</rect>
|
12
|
-
</property>
|
13
|
-
<property name="windowTitle">
|
14
|
-
<string>Loading...</string>
|
15
|
-
</property>
|
16
|
-
<widget class="QLabel" name="label">
|
17
|
-
<property name="geometry">
|
18
|
-
<rect>
|
19
|
-
<x>10</x>
|
20
|
-
<y>10</y>
|
21
|
-
<width>221</width>
|
22
|
-
<height>21</height>
|
23
|
-
</rect>
|
24
|
-
</property>
|
25
|
-
<property name="text">
|
26
|
-
<string>Processing action...Please wait</string>
|
27
|
-
</property>
|
28
|
-
<property name="alignment">
|
29
|
-
<set>Qt::AlignCenter</set>
|
30
|
-
</property>
|
31
|
-
</widget>
|
32
|
-
<widget class="QLabel" name="lbl_img">
|
33
|
-
<property name="geometry">
|
34
|
-
<rect>
|
35
|
-
<x>10</x>
|
36
|
-
<y>40</y>
|
37
|
-
<width>221</width>
|
38
|
-
<height>41</height>
|
39
|
-
</rect>
|
40
|
-
</property>
|
41
|
-
<property name="text">
|
42
|
-
<string>[IMG]</string>
|
43
|
-
</property>
|
44
|
-
<property name="alignment">
|
45
|
-
<set>Qt::AlignCenter</set>
|
46
|
-
</property>
|
47
|
-
</widget>
|
48
|
-
<widget class="QPushButton" name="btn_done">
|
49
|
-
<property name="geometry">
|
50
|
-
<rect>
|
51
|
-
<x>80</x>
|
52
|
-
<y>100</y>
|
53
|
-
<width>75</width>
|
54
|
-
<height>23</height>
|
55
|
-
</rect>
|
56
|
-
</property>
|
57
|
-
<property name="text">
|
58
|
-
<string>Done</string>
|
59
|
-
</property>
|
60
|
-
</widget>
|
61
|
-
</widget>
|
62
|
-
<resources/>
|
63
|
-
<connections>
|
64
|
-
<connection>
|
65
|
-
<sender>btn_done</sender>
|
66
|
-
<signal>clicked()</signal>
|
67
|
-
<receiver>Processing</receiver>
|
68
|
-
<slot>close()</slot>
|
69
|
-
<hints>
|
70
|
-
<hint type="sourcelabel">
|
71
|
-
<x>107</x>
|
72
|
-
<y>101</y>
|
73
|
-
</hint>
|
74
|
-
<hint type="destinationlabel">
|
75
|
-
<x>104</x>
|
76
|
-
<y>57</y>
|
77
|
-
</hint>
|
78
|
-
</hints>
|
79
|
-
</connection>
|
80
|
-
</connections>
|
81
|
-
</ui>
|