Class: HardsploitGUI
- Inherits:
-
Qt::MainWindow
- Object
- Qt::MainWindow
- HardsploitGUI
- Defined in:
- lib/class/HardsploitGUI.rb
Constant Summary collapse
- VERSION =
"2.2"
Instance Method Summary collapse
- #add_chip ⇒ Object
- #check_hardsploit_connection(api) ⇒ Object
- #console_view ⇒ Object
- #create_action_nodes(parent_node) ⇒ Object
- #create_bus_nodes(bus, parent_node) ⇒ Object
- #delete_chip ⇒ Object
- #display_current_firmware ⇒ Object
- #edit_chip ⇒ Object
- #feed_chip_array ⇒ Object
- #feed_manufacturer_cbx ⇒ Object
- #feed_type_cbx ⇒ Object
- #get_chip_buses(chip) ⇒ Object
- #get_db_path ⇒ Object
- #get_hardsploit_versions ⇒ Object
- #get_hardsploit_website ⇒ Object
- #get_log_path ⇒ Object
-
#initialize(api) ⇒ HardsploitGUI
constructor
A new instance of HardsploitGUI.
- #load_chip_action(item, column) ⇒ Object
- #load_i2c_module(i2c_module) ⇒ Object
- #load_parallel_module(parallel_module) ⇒ Object
- #load_spi_module(spi_module) ⇒ Object
- #load_tree(line, column) ⇒ Object
- #set_firmware ⇒ Object
- #swd_detect ⇒ Object
- #swd_erase ⇒ Object
- #swd_export ⇒ Object
- #swd_import ⇒ Object
- #update_uc_firmware ⇒ Object
- #wire_chip ⇒ Object
Constructor Details
#initialize(api) ⇒ HardsploitGUI
Returns a new instance of HardsploitGUI.
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
# File 'lib/class/HardsploitGUI.rb', line 31 def initialize(api) super() @cm = Ui_Chip_management.new @cm.setupUi(self) @api = api @cm.img_search.setPixmap(Qt::Pixmap.new(File.(File.dirname(__FILE__)) + "/../images/search.png")) inputRestrict(@cm.lie_search, 2) feed_chip_array feed_manufacturer_cbx feed_type_cbx @cm.tbl_chip.resizeColumnsToContents @cm.tbl_chip.resizeRowsToContents @cm.tbl_chip.horizontalHeader.stretchLastSection = true @cm.tbl_console.horizontalHeader.stretchLastSection = true @console = Console.new(@cm.tbl_console) check_hardsploit_connection(api) rescue Exception => msg logger = Logger.new($logFilePath) logger.error msg Qt::MessageBox.new(Qt::MessageBox::Critical, "GUI Error", "Error while loading Hardsploit GUI").exec end |
Instance Method Details
#add_chip ⇒ Object
290 291 292 293 294 295 296 297 298 299 300 301 302 303 |
# File 'lib/class/HardsploitGUI.rb', line 290 def add_chip if sender.objectName == 'tw_chip' unless @chip_clicked.nil? add_chip = Chip_editor.new(self, @chip_clicked, 'temp') else Qt::MessageBox.new(Qt::MessageBox::Information, "Chip template", "No chip loaded").exec return 0 end else add_chip = Chip_editor.new(self, 'none', 'new') end add_chip.setWindowModality(Qt::ApplicationModal) add_chip.show end |
#check_hardsploit_connection(api) ⇒ Object
447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 |
# File 'lib/class/HardsploitGUI.rb', line 447 def check_hardsploit_connection(api) case api.connect when HardsploitAPI::USB_STATE::NOT_CONNECTED $usbConnected = false @console.print('Hardsploit board unconnected, wiring and command execution disabled') when HardsploitAPI::USB_STATE::UNKNOWN_CONNECTED @console.print('The device may be BUSY or a another device with the same IdVendor and IdProduct was found') when HardsploitAPI::USB_STATE::CONNECTED $usbConnected = true api.startFPGA @console.print("Hardsploit board detected GUI V#{VERSION} API V#{HardsploitAPI::VERSION::API} BOARD : #{api.getVersionNumber}") @console.print('Hardsploit ready to suck chip souls !') else @console.print('You are in the else part of a case that should normally never be triggered. Good luck.') end end |
#console_view ⇒ Object
75 76 77 78 79 80 81 |
# File 'lib/class/HardsploitGUI.rb', line 75 def console_view if @cm.check_console.isChecked @cm.tbl_console.show else @cm.tbl_console.hide end end |
#create_action_nodes(parent_node) ⇒ Object
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 |
# File 'lib/class/HardsploitGUI.rb', line 123 def create_action_nodes(parent_node) wiring_lvl = Qt::TreeWidgetItem.new wiring_lvl.setText(0, "Wiring") parent_node.addChild(wiring_lvl) edit_lvl = Qt::TreeWidgetItem.new edit_lvl.setText(0, "Edit") parent_node.addChild(edit_lvl) template_lvl = Qt::TreeWidgetItem.new template_lvl.setText(0, "Template") parent_node.addChild(template_lvl) delete_lvl = Qt::TreeWidgetItem.new delete_lvl.setText(0, "Delete") parent_node.addChild(delete_lvl) return parent_node end |
#create_bus_nodes(bus, parent_node) ⇒ Object
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 |
# File 'lib/class/HardsploitGUI.rb', line 139 def create_bus_nodes(bus, parent_node) case bus when 'SPI', 'I2C' settings_lvl = Qt::TreeWidgetItem.new settings_lvl.setText(0, "Settings") parent_node.addChild(settings_lvl) cmd_lvl = Qt::TreeWidgetItem.new cmd_lvl.setText(0, "Commands") parent_node.addChild(cmd_lvl) import_lvl = Qt::TreeWidgetItem.new import_lvl.setText(0, "Import") parent_node.addChild(import_lvl) export_lvl = Qt::TreeWidgetItem.new export_lvl.setText(0, "Export") parent_node.addChild(export_lvl) when 'PARALLEL' settings_lvl = Qt::TreeWidgetItem.new settings_lvl.setText(0, "Settings") parent_node.addChild(settings_lvl) # Not implemented yet #import_lvl = Qt::TreeWidgetItem.new #import_lvl.setText(0, "Import") #parent_node.addChild(import_lvl) export_lvl = Qt::TreeWidgetItem.new export_lvl.setText(0, "Export") parent_node.addChild(export_lvl) end return parent_node end |
#delete_chip ⇒ Object
315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 |
# File 'lib/class/HardsploitGUI.rb', line 315 def delete_chip unless @chip_clicked.nil? msg = Qt::MessageBox.new msg.setWindowTitle("Delete this chip") msg.setText("By deleting this chip, all the commands linked to it will be deleted too. Continue ?") msg.setIcon(Qt::MessageBox::Question) msg.setStandardButtons(Qt::MessageBox::Cancel | Qt::MessageBox::Ok) msg.setDefaultButton(Qt::MessageBox::Cancel) if msg.exec == Qt::MessageBox::Ok @chip_clicked.destroy feed_chip_array @cm.tw_chip.clear end else Qt::MessageBox.new(Qt::MessageBox::Information, "Delete chip", "No chip loaded").exec end end |
#display_current_firmware ⇒ Object
402 403 404 405 406 407 408 |
# File 'lib/class/HardsploitGUI.rb', line 402 def display_current_firmware if $currentFirmware.nil? Qt::MessageBox.new(Qt::MessageBox::Information, "Firmware", "No firmware loaded").exec else Qt::MessageBox.new(Qt::MessageBox::Information, "Firmware", "Actual firmware: #{$currentFirmware}").exec end end |
#edit_chip ⇒ Object
305 306 307 308 309 310 311 312 313 |
# File 'lib/class/HardsploitGUI.rb', line 305 def edit_chip unless @chip_clicked.nil? edit_chip = Chip_editor.new(self, @chip_clicked, 'edit') edit_chip.setWindowModality(Qt::ApplicationModal) edit_chip.show else Qt::MessageBox.new(Qt::MessageBox::Information, "Edit chip", "No chip loaded").exec end end |
#feed_chip_array ⇒ Object
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 |
# File 'lib/class/HardsploitGUI.rb', line 169 def feed_chip_array @cm.tbl_chip.clearContents ref = @cm.lie_search.text if @cm.cbx_manufacturer.currentIndex != 0 manufacturer = Manufacturer.find_by(manufacturer_name: @cm.cbx_manufacturer.currentText).manufacturer_id end if @cm.cbx_type.currentIndex != 0 type = CType.find_by(cType_name: @cm.cbx_type.currentText).cType_id end if ref.empty? chip = Chip.all else chip = Chip.where("chip_reference LIKE ?", "%#{ref}%") end chip = chip.where("chip_manufacturer = ?", manufacturer) unless manufacturer.nil? chip = chip.where("chip_type = ?", type) unless type.nil? @cm.tbl_chip.setRowCount(chip.count); # Insert elements chip.to_enum.with_index(0).each do |c, i| item = Qt::TableWidgetItem.new(c.chip_reference) item.setFlags(Qt::ItemIsSelectable|Qt::ItemIsEnabled) @cm.tbl_chip.setItem(i, 0, item) item2 = Qt::TableWidgetItem.new(CType.find(c.chip_type).cType_name) item2.setFlags(Qt::ItemIsEnabled) @cm.tbl_chip.setItem(i, 1, item2) item3 = Qt::TableWidgetItem.new(Manufacturer.find(c.chip_manufacturer).manufacturer_name) item3.setFlags(Qt::ItemIsEnabled) @cm.tbl_chip.setItem(i, 2, item3) bus_list = get_chip_buses(c) bus_list_str = '' bus_list.each do |b| bus_list_str = bus_list_str + "#{b} " end item4 = Qt::TableWidgetItem.new(bus_list_str) item4.setFlags(Qt::ItemIsEnabled) @cm.tbl_chip.setItem(i, 3, item4) end rescue Exception => msg logger = Logger.new($logFilePath) logger.error msg Qt::MessageBox.new(Qt::MessageBox::Critical, "Critical error", "Error occured while loading the chip array").exec end |
#feed_manufacturer_cbx ⇒ Object
64 65 66 67 68 69 70 71 72 73 |
# File 'lib/class/HardsploitGUI.rb', line 64 def feed_manufacturer_cbx cType = CType.all cType.each do |c| @cm.cbx_type.addItem(c.cType_name) end rescue Exception => msg logger = Logger.new($logFilePath) logger.error msg Qt::MessageBox.new(Qt::MessageBox::Critical, "Error", "Error while loading the type list from the database").exec end |
#feed_type_cbx ⇒ Object
53 54 55 56 57 58 59 60 61 62 |
# File 'lib/class/HardsploitGUI.rb', line 53 def feed_type_cbx manufacturer = Manufacturer.all manufacturer.each do |m| @cm.cbx_manufacturer.addItem(m.manufacturer_name) end rescue Exception => msg logger = Logger.new($logFilePath) logger.error msg Qt::MessageBox.new(Qt::MessageBox::Critical, "Error", "Error while loading the manufacturer list from the database").exec end |
#get_chip_buses(chip) ⇒ Object
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 |
# File 'lib/class/HardsploitGUI.rb', line 83 def get_chip_buses(chip) chip_bus_name = [] chip_bus_id = [] chipSignalId = chip.pin.pluck(:pin_signal) chipSignalId.delete(62) # NA chipSignalId.each do |s| chip_bus_id.push(Use.find_by(signal_id: s).bus_id) end chip_bus_id.uniq.each do |b| chip_bus_name.push(Bus.find_by(bus_id: b).bus_name) end return chip_bus_name rescue Exception => msg logger = Logger.new($logFilePath) logger.error msg Qt::MessageBox.new(Qt::MessageBox::Critical, "Error", "Error while getting the bus list").exec end |
#get_db_path ⇒ Object
439 440 441 |
# File 'lib/class/HardsploitGUI.rb', line 439 def get_db_path Qt::MessageBox.new(Qt::MessageBox::Information, 'Database path', "#{$dbFilePath}").exec end |
#get_hardsploit_versions ⇒ Object
427 428 429 430 431 432 433 |
# File 'lib/class/HardsploitGUI.rb', line 427 def get_hardsploit_versions if $usbConnected == true Qt::MessageBox.new(Qt::MessageBox::Information, "Hardsploit versions", "GUI VERSION : #{VERSION}\nAPI VERSION : #{HardsploitAPI::VERSION::API}\nBOARD : #{@api.getVersionNumber}").exec else Qt::MessageBox.new(Qt::MessageBox::Information, "Hardsploit versions", "GUI VERSION : #{VERSION}\nAPI VERSION : #{HardsploitAPI::VERSION::API}").exec end end |
#get_hardsploit_website ⇒ Object
443 444 445 |
# File 'lib/class/HardsploitGUI.rb', line 443 def get_hardsploit_website Qt::MessageBox.new(Qt::MessageBox::Information, 'Hardsploit website', 'Find all the new about Hardsploit on our website: http://hardsploit.io').exec end |
#get_log_path ⇒ Object
435 436 437 |
# File 'lib/class/HardsploitGUI.rb', line 435 def get_log_path Qt::MessageBox.new(Qt::MessageBox::Information, 'Log path', "#{$logFilePath}").exec end |
#load_chip_action(item, column) ⇒ Object
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 |
# File 'lib/class/HardsploitGUI.rb', line 215 def load_chip_action(item, column) return 0 unless item.childCount.zero? if item.parent.text(0) == 'Manage' case item.text(0) when 'Wiring' wire_chip when 'Edit' edit_chip when 'Template' add_chip when 'Delete' delete_chip end else case item.parent.text(0) when 'SPI' load_spi_module(item.text(0)) when 'I2C' load_i2c_module(item.text(0)) when 'PARALLEL' load_parallel_module(item.text(0)) when 'SWD' load_swd_module(item.text(0)) end end end |
#load_i2c_module(i2c_module) ⇒ Object
259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 |
# File 'lib/class/HardsploitGUI.rb', line 259 def load_i2c_module(i2c_module) case i2c_module when 'Settings' bus_settings_window = I2c_settings.new(@api, @chip_clicked) bus_settings_window.show when 'Commands' bus_command_window = Generic_commands.new(@api, @chip_clicked, 'I2C') bus_command_window.show when 'Import' bus_import_window = I2c_import.new(@api, @chip_clicked) bus_import_window.show when 'Export' bus_export_window = I2c_export.new(@api, @chip_clicked) bus_export_window.show end end |
#load_parallel_module(parallel_module) ⇒ Object
276 277 278 279 280 281 282 283 284 285 286 287 288 |
# File 'lib/class/HardsploitGUI.rb', line 276 def load_parallel_module(parallel_module) case parallel_module when 'Settings' bus_settings_window = Parallel_settings.new(@chip_clicked) bus_settings_window.show when 'Import' bus_import_window = Parallel_import.new(@api, @chip_clicked) bus_import_window.show when 'Export' bus_export_window = Parallel_export.new(@api, @chip_clicked) bus_export_window.show end end |
#load_spi_module(spi_module) ⇒ Object
242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 |
# File 'lib/class/HardsploitGUI.rb', line 242 def load_spi_module(spi_module) case spi_module when 'Settings' spi_settings_window = Spi_settings.new(@chip_clicked) spi_settings_window.show when 'Commands' generic_command_window = Generic_commands.new(@api, @chip_clicked, 'SPI') generic_command_window.show when 'Import' spi_import_window = Spi_import.new(@api, @chip_clicked) spi_import_window.show when 'Export' spi_export_window = Spi_export.new(@api, @chip_clicked) spi_export_window.show end end |
#load_tree(line, column) ⇒ Object
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 |
# File 'lib/class/HardsploitGUI.rb', line 101 def load_tree(line, column) return 0 unless column.zero? @cm.tw_chip.clear @chip_clicked = Chip.find_by(chip_reference: @cm.tbl_chip.item(line, column).text) # CHIP LEVEL chip_lvl = Qt::TreeWidgetItem.new chip_lvl.setText(0, @cm.tbl_chip.item(line, column).text) # ACTION LEVEL action_lvl = Qt::TreeWidgetItem.new action_lvl.setText(0, 'Manage') chip_lvl.addChild(create_action_nodes(action_lvl)) # BUS LEVEL(S) chip_bus = get_chip_buses(@chip_clicked) chip_bus.each do |b| bus_lvl = Qt::TreeWidgetItem.new bus_lvl.setText(0, b) chip_lvl.addChild(create_bus_nodes(b, bus_lvl)) end # ADD THE PARENT NODE @cm.tw_chip.addTopLevelItem(chip_lvl) end |
#set_firmware ⇒ Object
410 411 412 413 |
# File 'lib/class/HardsploitGUI.rb', line 410 def set_firmware Firmware.new(@api,sender.objectName[6, sender.objectName.length]) Qt::MessageBox.new(Qt::MessageBox::Information, "Firmware", "#{sender.objectName[6, sender.objectName.length]} firmware loaded").exec end |
#swd_detect ⇒ Object
343 344 345 346 347 348 349 350 351 352 353 |
# File 'lib/class/HardsploitGUI.rb', line 343 def swd_detect Firmware.new(@api, 'SWD') @api.runSWD code = @api.obtainCodes @console.print('New action: SWD Detect') Qt::MessageBox.new(Qt::MessageBox::Information, "SWD detection", "Detected:\nDP.IDCODE: #{code[:DebugPortId].to_s(16)}\nAP.IDCODE: #{code[:AccessPortId].to_s(16)}\nCPU ID : #{code[:CpuId].to_s(16)}\nDEVICE ID : #{code[:DeviceId].to_s(16)}").exec rescue Exception => msg logger = Logger.new($logFilePath) logger.error msg Qt::MessageBox.new(Qt::MessageBox::Critical, "Critical error", "No device found, check the wiring").exec end |
#swd_erase ⇒ Object
383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 |
# File 'lib/class/HardsploitGUI.rb', line 383 def swd_erase msg = Qt::MessageBox.new msg.setWindowTitle("Delete the data") msg.setText("You are going to delete all the data. Continue?") msg.setIcon(Qt::MessageBox::Critical) msg.setStandardButtons(Qt::MessageBox::Cancel | Qt::MessageBox::Ok) msg.setDefaultButton(Qt::MessageBox::Cancel) if msg.exec == Qt::MessageBox::Ok Firmware.new(@api, 'SWD') @api.runSWD @api.eraseFlash Qt::MessageBox.new(Qt::MessageBox::Information, "Erase status", "Erase finished").exec end rescue Exception => msg logger = Logger.new($logFilePath) logger.error msg Qt::MessageBox.new(Qt::MessageBox::Critical, "Critical error", "No device found, check the wiring").exec end |
#swd_export ⇒ Object
355 356 357 358 359 360 361 362 363 364 365 366 367 |
# File 'lib/class/HardsploitGUI.rb', line 355 def swd_export Firmware.new(@api, 'SWD') @api.runSWD filepath = Qt::FileDialog.getSaveFileName(self, tr('Select a file'), '/', tr('Bin file (*.bin)')) unless filepath.nil? @api.dumpFlash(filepath) Qt::MessageBox.new(Qt::MessageBox::Information, "Export status", "Dump finished").exec end rescue Exception => msg logger = Logger.new($logFilePath) logger.error msg Qt::MessageBox.new(Qt::MessageBox::Critical, "Critical error", "No device found, check the wiring").exec end |
#swd_import ⇒ Object
369 370 371 372 373 374 375 376 377 378 379 380 381 |
# File 'lib/class/HardsploitGUI.rb', line 369 def swd_import Firmware.new(@api, 'SWD') @api.runSWD filepath = Qt::FileDialog.getOpenFileName(self, tr('Select a file'), '/') unless filepath.nil? @api.writeFlash(filepath) Qt::MessageBox.new(Qt::MessageBox::Information, "Import status", "Import finished").exec end rescue Exception => msg logger = Logger.new($logFilePath) logger.error msg Qt::MessageBox.new(Qt::MessageBox::Critical, "Critical error", "No device found, check the wiring").exec end |
#update_uc_firmware ⇒ Object
415 416 417 418 419 420 421 422 423 424 425 |
# File 'lib/class/HardsploitGUI.rb', line 415 def update_uc_firmware msg = Qt::MessageBox.new msg.setWindowTitle("Microcontroler update") msg.setText("Hardsploit must be launch in bootloader mod and dfu-util package must be installed in order to continue. Proceed ?") msg.setIcon(Qt::MessageBox::Question) msg.setStandardButtons(Qt::MessageBox::Cancel | Qt::MessageBox::Ok) msg.setDefaultButton(Qt::MessageBox::Cancel) if msg.exec == Qt::MessageBox::Ok system("dfu-util -D 0483:df11 -a 0 -s 0x08000000 -R --download #{File.(File.dirname(__FILE__))}'/../Firmware/UC/HARDSPLOIT_FIRMWARE_UC.bin'") end end |
#wire_chip ⇒ Object
333 334 335 336 337 338 339 340 341 |
# File 'lib/class/HardsploitGUI.rb', line 333 def wire_chip unless @chip_clicked.nil? wire_helper = Wire_helper.new(@chip_clicked, @api) wire_helper.setWindowModality(Qt::ApplicationModal) wire_helper.show else Qt::MessageBox.new(Qt::MessageBox::Information, "Wire chip", "No chip loaded").exec end end |