hardsploit_gui 2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (81) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +22 -0
  3. data/Rakefile +1 -0
  4. data/bin/hardsploit_gui +3 -0
  5. data/lib/Firmware/FPGA/I2C/I2C_INTERACT/HARDSPLOIT_FIRMWARE_FPGA_I2C_INTERACT.rpd +0 -0
  6. data/lib/Firmware/FPGA/PARALLEL/NO_MUX_PARALLEL_MEMORY/HARDSPLOIT_FIRMWARE_FPGA_NO_MUX_PARALLEL_MEMORY.rpd +0 -0
  7. data/lib/Firmware/FPGA/SPI/SPI_INTERACT/HARDSPLOIT_FIRMWARE_FPGA_SPI_INTERACT.rpd +0 -0
  8. data/lib/Firmware/FPGA/SWD/SWD_INTERACT/HARDSPLOIT_FIRMWARE_FPGA_SWD_INTERACT.rpd +0 -0
  9. data/lib/Firmware/FPGA/TEST/TEST_INTERACT/HARDSPLOIT_FIRMWARE_FPGA_TEST_INTERACT.rpd +0 -0
  10. data/lib/Firmware/FPGA/VersionFPGA.rb +5 -0
  11. data/lib/Firmware/UC/HARDSPLOIT_FIRMWARE_UC.bin +0 -0
  12. data/lib/Firmware/UC/VersionUC.rb +12 -0
  13. data/lib/HardsploitAPI/HardsploitAPI.rb +134 -0
  14. data/lib/HardsploitAPI/HardsploitAPI_CONSTANT.rb +145 -0
  15. data/lib/HardsploitAPI/HardsploitAPI_FIRMWARE.rb +311 -0
  16. data/lib/HardsploitAPI/HardsploitAPI_I2C.rb +218 -0
  17. data/lib/HardsploitAPI/HardsploitAPI_NO_MUX_PARALLELE_MEMORY.rb +229 -0
  18. data/lib/HardsploitAPI/HardsploitAPI_SPI.rb +179 -0
  19. data/lib/HardsploitAPI/HardsploitAPI_TEST_INTERACT.rb +98 -0
  20. data/lib/HardsploitAPI/HardsploitAPI_USB_COMMUNICATION.rb +149 -0
  21. data/lib/HardsploitAPI/LICENSE.txt +674 -0
  22. data/lib/HardsploitAPI/README.md +22 -0
  23. data/lib/HardsploitAPI/SWD/HardsploitAPI_SWD.rb +249 -0
  24. data/lib/HardsploitAPI/SWD/HardsploitAPI_SWD_DEBUG.rb +102 -0
  25. data/lib/HardsploitAPI/SWD/HardsploitAPI_SWD_MEM_AP.rb +78 -0
  26. data/lib/HardsploitAPI/SWD/HardsploitAPI_SWD_STM32.rb +104 -0
  27. data/lib/HardsploitAPI/TRADEMARK +3 -0
  28. data/lib/LICENSE.txt +674 -0
  29. data/lib/README.md +22 -0
  30. data/lib/TRADEMARK +3 -0
  31. data/lib/class/Chip_editor.rb +448 -0
  32. data/lib/class/Command_editor.rb +268 -0
  33. data/lib/class/Command_table.rb +239 -0
  34. data/lib/class/Console.rb +28 -0
  35. data/lib/class/Export_manager.rb +124 -0
  36. data/lib/class/Firmware.rb +29 -0
  37. data/lib/class/Generic_commands.rb +275 -0
  38. data/lib/class/HardsploitGUI.rb +462 -0
  39. data/lib/class/I2C/I2c_command.rb +48 -0
  40. data/lib/class/I2C/I2c_export.rb +121 -0
  41. data/lib/class/I2C/I2c_import.rb +92 -0
  42. data/lib/class/I2C/I2c_settings.rb +117 -0
  43. data/lib/class/PARALLEL/Parallel_export.rb +146 -0
  44. data/lib/class/PARALLEL/Parallel_import.rb +88 -0
  45. data/lib/class/PARALLEL/Parallel_settings.rb +102 -0
  46. data/lib/class/SPI/Spi_export.rb +141 -0
  47. data/lib/class/SPI/Spi_import.rb +112 -0
  48. data/lib/class/SPI/Spi_settings.rb +90 -0
  49. data/lib/class/Wire_helper.rb +246 -0
  50. data/lib/db/associations.rb +125 -0
  51. data/lib/db/hs.db +0 -0
  52. data/lib/gui/gui_chip_editor.rb +355 -0
  53. data/lib/gui/gui_chip_management.rb +372 -0
  54. data/lib/gui/gui_command_editor.rb +218 -0
  55. data/lib/gui/gui_export_manager.rb +93 -0
  56. data/lib/gui/gui_generic_commands.rb +164 -0
  57. data/lib/gui/gui_generic_export.rb +148 -0
  58. data/lib/gui/gui_generic_import.rb +126 -0
  59. data/lib/gui/gui_i2c_command.rb +115 -0
  60. data/lib/gui/gui_i2c_settings.rb +201 -0
  61. data/lib/gui/gui_parallel_settings.rb +194 -0
  62. data/lib/gui/gui_spi_import.rb +126 -0
  63. data/lib/gui/gui_spi_settings.rb +187 -0
  64. data/lib/gui/gui_wire_helper.rb +99 -0
  65. data/lib/gui_designer/gui_chip_editor.ui +553 -0
  66. data/lib/gui_designer/gui_chip_management.ui +842 -0
  67. data/lib/gui_designer/gui_command_editor.ui +347 -0
  68. data/lib/gui_designer/gui_export_manager.ui +115 -0
  69. data/lib/gui_designer/gui_generic_commands.ui +258 -0
  70. data/lib/gui_designer/gui_generic_export.ui +179 -0
  71. data/lib/gui_designer/gui_generic_import.ui +142 -0
  72. data/lib/gui_designer/gui_i2c_command.ui +145 -0
  73. data/lib/gui_designer/gui_i2c_settings.ui +261 -0
  74. data/lib/gui_designer/gui_parallel_settings.ui +244 -0
  75. data/lib/gui_designer/gui_processing.ui +81 -0
  76. data/lib/gui_designer/gui_spi_settings.ui +321 -0
  77. data/lib/gui_designer/gui_wire_helper.ui +117 -0
  78. data/lib/hardsploit.rb +122 -0
  79. data/lib/images/search.png +0 -0
  80. data/lib/logs/error.log +0 -0
  81. metadata +236 -0
@@ -0,0 +1,842 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <ui version="4.0">
3
+ <class>Chip_management</class>
4
+ <widget class="QMainWindow" name="Chip_management">
5
+ <property name="geometry">
6
+ <rect>
7
+ <x>0</x>
8
+ <y>0</y>
9
+ <width>710</width>
10
+ <height>589</height>
11
+ </rect>
12
+ </property>
13
+ <property name="minimumSize">
14
+ <size>
15
+ <width>710</width>
16
+ <height>450</height>
17
+ </size>
18
+ </property>
19
+ <property name="windowTitle">
20
+ <string>Hardsploit - Chip management</string>
21
+ </property>
22
+ <property name="windowIcon">
23
+ <iconset>
24
+ <normaloff>../../../../.designer/images/logoOpale_ico.ico</normaloff>../../../../.designer/images/logoOpale_ico.ico</iconset>
25
+ </property>
26
+ <widget class="QWidget" name="cl_main">
27
+ <layout class="QGridLayout" name="gridLayout">
28
+ <item row="2" column="0">
29
+ <layout class="QHBoxLayout" name="hl_main">
30
+ <item>
31
+ <widget class="QTreeWidget" name="tw_chip">
32
+ <property name="minimumSize">
33
+ <size>
34
+ <width>150</width>
35
+ <height>0</height>
36
+ </size>
37
+ </property>
38
+ <property name="maximumSize">
39
+ <size>
40
+ <width>150</width>
41
+ <height>16777215</height>
42
+ </size>
43
+ </property>
44
+ <column>
45
+ <property name="text">
46
+ <string>Current chip</string>
47
+ </property>
48
+ </column>
49
+ </widget>
50
+ </item>
51
+ <item>
52
+ <layout class="QVBoxLayout" name="vl_body">
53
+ <item>
54
+ <layout class="QHBoxLayout" name="hl_filters">
55
+ <item>
56
+ <widget class="QLabel" name="img_search">
57
+ <property name="text">
58
+ <string>Search</string>
59
+ </property>
60
+ </widget>
61
+ </item>
62
+ <item>
63
+ <widget class="QLineEdit" name="lie_search"/>
64
+ </item>
65
+ <item>
66
+ <widget class="QComboBox" name="cbx_manufacturer">
67
+ <property name="minimumSize">
68
+ <size>
69
+ <width>200</width>
70
+ <height>0</height>
71
+ </size>
72
+ </property>
73
+ <property name="maximumSize">
74
+ <size>
75
+ <width>16777215</width>
76
+ <height>16777215</height>
77
+ </size>
78
+ </property>
79
+ <item>
80
+ <property name="text">
81
+ <string>Manufacturer...</string>
82
+ </property>
83
+ </item>
84
+ </widget>
85
+ </item>
86
+ <item>
87
+ <widget class="QComboBox" name="cbx_type">
88
+ <property name="minimumSize">
89
+ <size>
90
+ <width>100</width>
91
+ <height>0</height>
92
+ </size>
93
+ </property>
94
+ <property name="maximumSize">
95
+ <size>
96
+ <width>100</width>
97
+ <height>16777215</height>
98
+ </size>
99
+ </property>
100
+ <item>
101
+ <property name="text">
102
+ <string>Type...</string>
103
+ </property>
104
+ </item>
105
+ </widget>
106
+ </item>
107
+ </layout>
108
+ </item>
109
+ <item>
110
+ <layout class="QVBoxLayout" name="vl_array">
111
+ <item>
112
+ <widget class="QTableWidget" name="tbl_chip">
113
+ <attribute name="horizontalHeaderStretchLastSection">
114
+ <bool>true</bool>
115
+ </attribute>
116
+ <attribute name="verticalHeaderStretchLastSection">
117
+ <bool>true</bool>
118
+ </attribute>
119
+ <column>
120
+ <property name="text">
121
+ <string>Reference</string>
122
+ </property>
123
+ </column>
124
+ <column>
125
+ <property name="text">
126
+ <string>Type</string>
127
+ </property>
128
+ </column>
129
+ <column>
130
+ <property name="text">
131
+ <string>Manufacturer</string>
132
+ </property>
133
+ </column>
134
+ <column>
135
+ <property name="text">
136
+ <string>BUS</string>
137
+ </property>
138
+ </column>
139
+ </widget>
140
+ </item>
141
+ </layout>
142
+ </item>
143
+ <item>
144
+ <layout class="QHBoxLayout" name="hl_options">
145
+ <item>
146
+ <widget class="QLabel" name="lbl_info">
147
+ <property name="text">
148
+ <string>Double click a chip reference to load it</string>
149
+ </property>
150
+ </widget>
151
+ </item>
152
+ <item>
153
+ <spacer name="horizontalSpacer">
154
+ <property name="orientation">
155
+ <enum>Qt::Horizontal</enum>
156
+ </property>
157
+ <property name="sizeHint" stdset="0">
158
+ <size>
159
+ <width>40</width>
160
+ <height>20</height>
161
+ </size>
162
+ </property>
163
+ </spacer>
164
+ </item>
165
+ <item>
166
+ <widget class="QPushButton" name="btn_add">
167
+ <property name="text">
168
+ <string>Create component</string>
169
+ </property>
170
+ </widget>
171
+ </item>
172
+ </layout>
173
+ </item>
174
+ </layout>
175
+ </item>
176
+ </layout>
177
+ </item>
178
+ <item row="6" column="0">
179
+ <widget class="QTableWidget" name="tbl_console">
180
+ <property name="minimumSize">
181
+ <size>
182
+ <width>0</width>
183
+ <height>100</height>
184
+ </size>
185
+ </property>
186
+ <property name="maximumSize">
187
+ <size>
188
+ <width>16777215</width>
189
+ <height>100</height>
190
+ </size>
191
+ </property>
192
+ <attribute name="horizontalHeaderStretchLastSection">
193
+ <bool>true</bool>
194
+ </attribute>
195
+ <attribute name="verticalHeaderStretchLastSection">
196
+ <bool>true</bool>
197
+ </attribute>
198
+ <column>
199
+ <property name="text">
200
+ <string>Date / Time</string>
201
+ </property>
202
+ </column>
203
+ <column>
204
+ <property name="text">
205
+ <string>Message</string>
206
+ </property>
207
+ </column>
208
+ </widget>
209
+ </item>
210
+ <item row="4" column="0">
211
+ <layout class="QHBoxLayout" name="horizontalLayout">
212
+ <item>
213
+ <widget class="QCheckBox" name="check_console">
214
+ <property name="text">
215
+ <string>Console:</string>
216
+ </property>
217
+ <property name="checked">
218
+ <bool>true</bool>
219
+ </property>
220
+ </widget>
221
+ </item>
222
+ <item>
223
+ <widget class="QPushButton" name="pushButton">
224
+ <property name="text">
225
+ <string>Clear</string>
226
+ </property>
227
+ </widget>
228
+ </item>
229
+ <item>
230
+ <spacer name="horizontalSpacer_2">
231
+ <property name="orientation">
232
+ <enum>Qt::Horizontal</enum>
233
+ </property>
234
+ <property name="sizeHint" stdset="0">
235
+ <size>
236
+ <width>40</width>
237
+ <height>20</height>
238
+ </size>
239
+ </property>
240
+ </spacer>
241
+ </item>
242
+ </layout>
243
+ </item>
244
+ </layout>
245
+ </widget>
246
+ <widget class="QMenuBar" name="menubar">
247
+ <property name="geometry">
248
+ <rect>
249
+ <x>0</x>
250
+ <y>0</y>
251
+ <width>710</width>
252
+ <height>21</height>
253
+ </rect>
254
+ </property>
255
+ <widget class="QMenu" name="menuMenu">
256
+ <property name="title">
257
+ <string>Menu</string>
258
+ </property>
259
+ <widget class="QMenu" name="menuUpload_firmware">
260
+ <property name="title">
261
+ <string>Firmware...</string>
262
+ </property>
263
+ <addaction name="actionDisplay_firmware"/>
264
+ <addaction name="actionParallel"/>
265
+ <addaction name="actionI2C"/>
266
+ <addaction name="actionSPI"/>
267
+ <addaction name="separator"/>
268
+ <addaction name="actionUC"/>
269
+ </widget>
270
+ <widget class="QMenu" name="menuComponent">
271
+ <property name="title">
272
+ <string>Component...</string>
273
+ </property>
274
+ <addaction name="actionAdd"/>
275
+ <addaction name="actionEdit"/>
276
+ <addaction name="actionDelete"/>
277
+ <addaction name="actionExport_current"/>
278
+ <addaction name="actionWire"/>
279
+ </widget>
280
+ <addaction name="menuUpload_firmware"/>
281
+ <addaction name="menuComponent"/>
282
+ </widget>
283
+ <widget class="QMenu" name="menuAbout">
284
+ <property name="title">
285
+ <string>About</string>
286
+ </property>
287
+ <widget class="QMenu" name="menuPath">
288
+ <property name="title">
289
+ <string>Path...</string>
290
+ </property>
291
+ <addaction name="actionDatabase_file"/>
292
+ <addaction name="actionError_log_file"/>
293
+ </widget>
294
+ <addaction name="actionHardsploit_website"/>
295
+ <addaction name="actionVersions"/>
296
+ <addaction name="menuPath"/>
297
+ </widget>
298
+ <widget class="QMenu" name="menuSWD">
299
+ <property name="title">
300
+ <string>SWD</string>
301
+ </property>
302
+ <addaction name="actionSWD_detect"/>
303
+ <addaction name="actionSWD_export"/>
304
+ <addaction name="actionSWD_import"/>
305
+ <addaction name="actionSWD_erase"/>
306
+ </widget>
307
+ <addaction name="menuMenu"/>
308
+ <addaction name="menuSWD"/>
309
+ <addaction name="menuAbout"/>
310
+ </widget>
311
+ <widget class="QStatusBar" name="statusbar"/>
312
+ <action name="actionVersions">
313
+ <property name="text">
314
+ <string>Versions</string>
315
+ </property>
316
+ </action>
317
+ <action name="actionDatabase_file">
318
+ <property name="text">
319
+ <string>Database file</string>
320
+ </property>
321
+ </action>
322
+ <action name="actionError_log_file">
323
+ <property name="text">
324
+ <string>Error log file</string>
325
+ </property>
326
+ </action>
327
+ <action name="actionUC">
328
+ <property name="text">
329
+ <string>Update uC</string>
330
+ </property>
331
+ </action>
332
+ <action name="actionParallel">
333
+ <property name="text">
334
+ <string>Set parallel</string>
335
+ </property>
336
+ </action>
337
+ <action name="actionI2C">
338
+ <property name="text">
339
+ <string>Set I²C</string>
340
+ </property>
341
+ </action>
342
+ <action name="actionSPI">
343
+ <property name="text">
344
+ <string>Set SPI</string>
345
+ </property>
346
+ </action>
347
+ <action name="actionHardsploit_website">
348
+ <property name="text">
349
+ <string>Hardsploit website</string>
350
+ </property>
351
+ </action>
352
+ <action name="actionAdd">
353
+ <property name="text">
354
+ <string>Add new</string>
355
+ </property>
356
+ <property name="shortcut">
357
+ <string>Ctrl+A</string>
358
+ </property>
359
+ </action>
360
+ <action name="actionEdit">
361
+ <property name="text">
362
+ <string>Edit</string>
363
+ </property>
364
+ <property name="shortcut">
365
+ <string>Ctrl+E</string>
366
+ </property>
367
+ </action>
368
+ <action name="actionDelete">
369
+ <property name="text">
370
+ <string>Delete</string>
371
+ </property>
372
+ <property name="shortcut">
373
+ <string>Ctrl+D</string>
374
+ </property>
375
+ </action>
376
+ <action name="actionExport_current">
377
+ <property name="text">
378
+ <string>Export</string>
379
+ </property>
380
+ </action>
381
+ <action name="actionDisplay_firmware">
382
+ <property name="text">
383
+ <string>Display current firmware</string>
384
+ </property>
385
+ <property name="shortcut">
386
+ <string>Ctrl+F</string>
387
+ </property>
388
+ </action>
389
+ <action name="actionWire">
390
+ <property name="text">
391
+ <string>Wire</string>
392
+ </property>
393
+ <property name="shortcut">
394
+ <string>Ctrl+W</string>
395
+ </property>
396
+ </action>
397
+ <action name="actionSWD_detect">
398
+ <property name="text">
399
+ <string>Detect</string>
400
+ </property>
401
+ </action>
402
+ <action name="actionSWD_export">
403
+ <property name="text">
404
+ <string>Export (Dump)</string>
405
+ </property>
406
+ </action>
407
+ <action name="actionSWD_import">
408
+ <property name="text">
409
+ <string>Import (Write)</string>
410
+ </property>
411
+ </action>
412
+ <action name="actionSWD_erase">
413
+ <property name="text">
414
+ <string>Erase</string>
415
+ </property>
416
+ </action>
417
+ </widget>
418
+ <resources/>
419
+ <connections>
420
+ <connection>
421
+ <sender>tbl_chip</sender>
422
+ <signal>cellDoubleClicked(int,int)</signal>
423
+ <receiver>Chip_management</receiver>
424
+ <slot>load_tree(int,int)</slot>
425
+ <hints>
426
+ <hint type="sourcelabel">
427
+ <x>681</x>
428
+ <y>257</y>
429
+ </hint>
430
+ <hint type="destinationlabel">
431
+ <x>682</x>
432
+ <y>268</y>
433
+ </hint>
434
+ </hints>
435
+ </connection>
436
+ <connection>
437
+ <sender>lie_search</sender>
438
+ <signal>textEdited(QString)</signal>
439
+ <receiver>Chip_management</receiver>
440
+ <slot>feed_chip_array()</slot>
441
+ <hints>
442
+ <hint type="sourcelabel">
443
+ <x>385</x>
444
+ <y>39</y>
445
+ </hint>
446
+ <hint type="destinationlabel">
447
+ <x>467</x>
448
+ <y>26</y>
449
+ </hint>
450
+ </hints>
451
+ </connection>
452
+ <connection>
453
+ <sender>cbx_manufacturer</sender>
454
+ <signal>currentIndexChanged(int)</signal>
455
+ <receiver>Chip_management</receiver>
456
+ <slot>feed_chip_array()</slot>
457
+ <hints>
458
+ <hint type="sourcelabel">
459
+ <x>577</x>
460
+ <y>37</y>
461
+ </hint>
462
+ <hint type="destinationlabel">
463
+ <x>589</x>
464
+ <y>26</y>
465
+ </hint>
466
+ </hints>
467
+ </connection>
468
+ <connection>
469
+ <sender>cbx_type</sender>
470
+ <signal>currentIndexChanged(int)</signal>
471
+ <receiver>Chip_management</receiver>
472
+ <slot>feed_chip_array()</slot>
473
+ <hints>
474
+ <hint type="sourcelabel">
475
+ <x>690</x>
476
+ <y>42</y>
477
+ </hint>
478
+ <hint type="destinationlabel">
479
+ <x>704</x>
480
+ <y>42</y>
481
+ </hint>
482
+ </hints>
483
+ </connection>
484
+ <connection>
485
+ <sender>actionError_log_file</sender>
486
+ <signal>triggered()</signal>
487
+ <receiver>Chip_management</receiver>
488
+ <slot>get_log_path()</slot>
489
+ <hints>
490
+ <hint type="sourcelabel">
491
+ <x>-1</x>
492
+ <y>-1</y>
493
+ </hint>
494
+ <hint type="destinationlabel">
495
+ <x>354</x>
496
+ <y>224</y>
497
+ </hint>
498
+ </hints>
499
+ </connection>
500
+ <connection>
501
+ <sender>actionHardsploit_website</sender>
502
+ <signal>triggered()</signal>
503
+ <receiver>Chip_management</receiver>
504
+ <slot>get_hardsploit_website()</slot>
505
+ <hints>
506
+ <hint type="sourcelabel">
507
+ <x>-1</x>
508
+ <y>-1</y>
509
+ </hint>
510
+ <hint type="destinationlabel">
511
+ <x>354</x>
512
+ <y>224</y>
513
+ </hint>
514
+ </hints>
515
+ </connection>
516
+ <connection>
517
+ <sender>actionI2C</sender>
518
+ <signal>triggered()</signal>
519
+ <receiver>Chip_management</receiver>
520
+ <slot>set_firmware()</slot>
521
+ <hints>
522
+ <hint type="sourcelabel">
523
+ <x>-1</x>
524
+ <y>-1</y>
525
+ </hint>
526
+ <hint type="destinationlabel">
527
+ <x>354</x>
528
+ <y>224</y>
529
+ </hint>
530
+ </hints>
531
+ </connection>
532
+ <connection>
533
+ <sender>actionParallel</sender>
534
+ <signal>triggered()</signal>
535
+ <receiver>Chip_management</receiver>
536
+ <slot>set_firmware()</slot>
537
+ <hints>
538
+ <hint type="sourcelabel">
539
+ <x>-1</x>
540
+ <y>-1</y>
541
+ </hint>
542
+ <hint type="destinationlabel">
543
+ <x>354</x>
544
+ <y>224</y>
545
+ </hint>
546
+ </hints>
547
+ </connection>
548
+ <connection>
549
+ <sender>actionSPI</sender>
550
+ <signal>triggered()</signal>
551
+ <receiver>Chip_management</receiver>
552
+ <slot>set_firmware()</slot>
553
+ <hints>
554
+ <hint type="sourcelabel">
555
+ <x>-1</x>
556
+ <y>-1</y>
557
+ </hint>
558
+ <hint type="destinationlabel">
559
+ <x>354</x>
560
+ <y>224</y>
561
+ </hint>
562
+ </hints>
563
+ </connection>
564
+ <connection>
565
+ <sender>actionUC</sender>
566
+ <signal>triggered()</signal>
567
+ <receiver>Chip_management</receiver>
568
+ <slot>update_uc_firmware()</slot>
569
+ <hints>
570
+ <hint type="sourcelabel">
571
+ <x>-1</x>
572
+ <y>-1</y>
573
+ </hint>
574
+ <hint type="destinationlabel">
575
+ <x>354</x>
576
+ <y>224</y>
577
+ </hint>
578
+ </hints>
579
+ </connection>
580
+ <connection>
581
+ <sender>actionVersions</sender>
582
+ <signal>triggered()</signal>
583
+ <receiver>Chip_management</receiver>
584
+ <slot>get_hardsploit_versions()</slot>
585
+ <hints>
586
+ <hint type="sourcelabel">
587
+ <x>-1</x>
588
+ <y>-1</y>
589
+ </hint>
590
+ <hint type="destinationlabel">
591
+ <x>354</x>
592
+ <y>224</y>
593
+ </hint>
594
+ </hints>
595
+ </connection>
596
+ <connection>
597
+ <sender>actionDatabase_file</sender>
598
+ <signal>triggered()</signal>
599
+ <receiver>Chip_management</receiver>
600
+ <slot>get_db_path()</slot>
601
+ <hints>
602
+ <hint type="sourcelabel">
603
+ <x>-1</x>
604
+ <y>-1</y>
605
+ </hint>
606
+ <hint type="destinationlabel">
607
+ <x>354</x>
608
+ <y>224</y>
609
+ </hint>
610
+ </hints>
611
+ </connection>
612
+ <connection>
613
+ <sender>check_console</sender>
614
+ <signal>toggled(bool)</signal>
615
+ <receiver>Chip_management</receiver>
616
+ <slot>console_view()</slot>
617
+ <hints>
618
+ <hint type="sourcelabel">
619
+ <x>43</x>
620
+ <y>449</y>
621
+ </hint>
622
+ <hint type="destinationlabel">
623
+ <x>7</x>
624
+ <y>319</y>
625
+ </hint>
626
+ </hints>
627
+ </connection>
628
+ <connection>
629
+ <sender>btn_add</sender>
630
+ <signal>clicked()</signal>
631
+ <receiver>Chip_management</receiver>
632
+ <slot>add_chip()</slot>
633
+ <hints>
634
+ <hint type="sourcelabel">
635
+ <x>697</x>
636
+ <y>419</y>
637
+ </hint>
638
+ <hint type="destinationlabel">
639
+ <x>429</x>
640
+ <y>292</y>
641
+ </hint>
642
+ </hints>
643
+ </connection>
644
+ <connection>
645
+ <sender>tw_chip</sender>
646
+ <signal>itemDoubleClicked(QTreeWidgetItem*,int)</signal>
647
+ <receiver>Chip_management</receiver>
648
+ <slot>load_chip_action(QTreeWidgetItem*,int)</slot>
649
+ <hints>
650
+ <hint type="sourcelabel">
651
+ <x>147</x>
652
+ <y>403</y>
653
+ </hint>
654
+ <hint type="destinationlabel">
655
+ <x>164</x>
656
+ <y>399</y>
657
+ </hint>
658
+ </hints>
659
+ </connection>
660
+ <connection>
661
+ <sender>actionDisplay_firmware</sender>
662
+ <signal>triggered()</signal>
663
+ <receiver>Chip_management</receiver>
664
+ <slot>display_current_firmware()</slot>
665
+ <hints>
666
+ <hint type="sourcelabel">
667
+ <x>-1</x>
668
+ <y>-1</y>
669
+ </hint>
670
+ <hint type="destinationlabel">
671
+ <x>354</x>
672
+ <y>294</y>
673
+ </hint>
674
+ </hints>
675
+ </connection>
676
+ <connection>
677
+ <sender>actionAdd</sender>
678
+ <signal>triggered()</signal>
679
+ <receiver>Chip_management</receiver>
680
+ <slot>add_chip()</slot>
681
+ <hints>
682
+ <hint type="sourcelabel">
683
+ <x>-1</x>
684
+ <y>-1</y>
685
+ </hint>
686
+ <hint type="destinationlabel">
687
+ <x>354</x>
688
+ <y>294</y>
689
+ </hint>
690
+ </hints>
691
+ </connection>
692
+ <connection>
693
+ <sender>actionDelete</sender>
694
+ <signal>triggered()</signal>
695
+ <receiver>Chip_management</receiver>
696
+ <slot>delete_chip()</slot>
697
+ <hints>
698
+ <hint type="sourcelabel">
699
+ <x>-1</x>
700
+ <y>-1</y>
701
+ </hint>
702
+ <hint type="destinationlabel">
703
+ <x>354</x>
704
+ <y>294</y>
705
+ </hint>
706
+ </hints>
707
+ </connection>
708
+ <connection>
709
+ <sender>actionEdit</sender>
710
+ <signal>triggered()</signal>
711
+ <receiver>Chip_management</receiver>
712
+ <slot>edit_chip()</slot>
713
+ <hints>
714
+ <hint type="sourcelabel">
715
+ <x>-1</x>
716
+ <y>-1</y>
717
+ </hint>
718
+ <hint type="destinationlabel">
719
+ <x>354</x>
720
+ <y>294</y>
721
+ </hint>
722
+ </hints>
723
+ </connection>
724
+ <connection>
725
+ <sender>actionWire</sender>
726
+ <signal>triggered()</signal>
727
+ <receiver>Chip_management</receiver>
728
+ <slot>wire_chip()</slot>
729
+ <hints>
730
+ <hint type="sourcelabel">
731
+ <x>-1</x>
732
+ <y>-1</y>
733
+ </hint>
734
+ <hint type="destinationlabel">
735
+ <x>354</x>
736
+ <y>294</y>
737
+ </hint>
738
+ </hints>
739
+ </connection>
740
+ <connection>
741
+ <sender>pushButton</sender>
742
+ <signal>clicked()</signal>
743
+ <receiver>tbl_console</receiver>
744
+ <slot>clearContents()</slot>
745
+ <hints>
746
+ <hint type="sourcelabel">
747
+ <x>112</x>
748
+ <y>440</y>
749
+ </hint>
750
+ <hint type="destinationlabel">
751
+ <x>120</x>
752
+ <y>490</y>
753
+ </hint>
754
+ </hints>
755
+ </connection>
756
+ <connection>
757
+ <sender>actionSWD_detect</sender>
758
+ <signal>triggered()</signal>
759
+ <receiver>Chip_management</receiver>
760
+ <slot>swd_detect()</slot>
761
+ <hints>
762
+ <hint type="sourcelabel">
763
+ <x>-1</x>
764
+ <y>-1</y>
765
+ </hint>
766
+ <hint type="destinationlabel">
767
+ <x>354</x>
768
+ <y>294</y>
769
+ </hint>
770
+ </hints>
771
+ </connection>
772
+ <connection>
773
+ <sender>actionSWD_export</sender>
774
+ <signal>triggered()</signal>
775
+ <receiver>Chip_management</receiver>
776
+ <slot>swd_export()</slot>
777
+ <hints>
778
+ <hint type="sourcelabel">
779
+ <x>-1</x>
780
+ <y>-1</y>
781
+ </hint>
782
+ <hint type="destinationlabel">
783
+ <x>354</x>
784
+ <y>294</y>
785
+ </hint>
786
+ </hints>
787
+ </connection>
788
+ <connection>
789
+ <sender>actionSWD_import</sender>
790
+ <signal>triggered()</signal>
791
+ <receiver>Chip_management</receiver>
792
+ <slot>swd_import()</slot>
793
+ <hints>
794
+ <hint type="sourcelabel">
795
+ <x>-1</x>
796
+ <y>-1</y>
797
+ </hint>
798
+ <hint type="destinationlabel">
799
+ <x>354</x>
800
+ <y>294</y>
801
+ </hint>
802
+ </hints>
803
+ </connection>
804
+ <connection>
805
+ <sender>actionSWD_erase</sender>
806
+ <signal>triggered()</signal>
807
+ <receiver>Chip_management</receiver>
808
+ <slot>swd_erase()</slot>
809
+ <hints>
810
+ <hint type="sourcelabel">
811
+ <x>-1</x>
812
+ <y>-1</y>
813
+ </hint>
814
+ <hint type="destinationlabel">
815
+ <x>354</x>
816
+ <y>294</y>
817
+ </hint>
818
+ </hints>
819
+ </connection>
820
+ </connections>
821
+ <slots>
822
+ <slot>load_tree(int,int)</slot>
823
+ <slot>feed_chip_array()</slot>
824
+ <slot>get_db_path()</slot>
825
+ <slot>get_log_path()</slot>
826
+ <slot>get_hardsploit_versions()</slot>
827
+ <slot>update_uc_firmware()</slot>
828
+ <slot>get_hardsploit_website()</slot>
829
+ <slot>console_view()</slot>
830
+ <slot>add_chip()</slot>
831
+ <slot>load_chip_action(QTreeWidgetItem*,int)</slot>
832
+ <slot>set_firmware()</slot>
833
+ <slot>display_current_firmware()</slot>
834
+ <slot>delete_chip()</slot>
835
+ <slot>edit_chip()</slot>
836
+ <slot>wire_chip()</slot>
837
+ <slot>swd_detect()</slot>
838
+ <slot>swd_import()</slot>
839
+ <slot>swd_export()</slot>
840
+ <slot>swd_erase()</slot>
841
+ </slots>
842
+ </ui>