hardsploit_gui 2.2 → 2.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (166) hide show
  1. checksums.yaml +4 -4
  2. data/bin/hardsploit_gui +2 -2
  3. data/lib/{Firmware → Firmwares}/FPGA/I2C/I2C_INTERACT/HARDSPLOIT_FIRMWARE_FPGA_I2C_INTERACT.rpd +0 -0
  4. data/lib/{Firmware/FPGA/SWD/SWD_INTERACT/HARDSPLOIT_FIRMWARE_FPGA_SWD_INTERACT.rpd → Firmwares/FPGA/PARALLEL/NO_MUX_PARALLEL_MEMORY/HARDSPLOIT_FIRMWARE_FPGA_NO_MUX_PARALLEL_MEMORY.rpd} +0 -0
  5. data/lib/Firmwares/FPGA/SPI/SPI_INTERACT/HARDSPLOIT_FIRMWARE_FPGA_SPI_INTERACT.rpd +0 -0
  6. data/lib/{Firmware/FPGA/SPI/SPI_INTERACT/HARDSPLOIT_FIRMWARE_FPGA_SPI_INTERACT.rpd → Firmwares/FPGA/SPI/SPI_SNIFFER/HARDSPLOIT_FIRMWARE_FPGA_SPI_SNIFFER.rpd} +0 -0
  7. data/lib/Firmwares/FPGA/SWD/SWD_INTERACT/HARDSPLOIT_FIRMWARE_FPGA_SWD_INTERACT.rpd +0 -0
  8. data/lib/{Firmware → Firmwares}/FPGA/TEST/TEST_INTERACT/HARDSPLOIT_FIRMWARE_FPGA_TEST_INTERACT.rpd +0 -0
  9. data/lib/Firmwares/FPGA/UART/UART_INTERACT/HARDSPLOIT_FIRMWARE_FPGA_UART_INTERACT.rpd +0 -0
  10. data/lib/{Firmware → Firmwares}/FPGA/VersionFPGA.rb +1 -1
  11. data/lib/{Firmware → Firmwares}/UC/HARDSPLOIT_FIRMWARE_UC.bin +0 -0
  12. data/lib/{Firmware → Firmwares}/UC/VersionUC.rb +1 -1
  13. data/lib/HardsploitAPI/Core/HardsploitAPI.rb +210 -0
  14. data/lib/HardsploitAPI/Core/HardsploitAPI_CONSTANT.rb +150 -0
  15. data/lib/HardsploitAPI/Core/HardsploitAPI_ERROR.rb +109 -0
  16. data/lib/HardsploitAPI/Core/HardsploitAPI_FIRMWARE.rb +305 -0
  17. data/lib/HardsploitAPI/{HardsploitAPI_PROGRESS.rb → Core/HardsploitAPI_PROGRESS.rb} +0 -0
  18. data/lib/HardsploitAPI/Core/HardsploitAPI_USB_COMMUNICATION.rb +166 -0
  19. data/lib/HardsploitAPI/Modules/I2C/HardsploitAPI_I2C.rb +356 -0
  20. data/lib/HardsploitAPI/{HardsploitAPI_NO_MUX_PARALLELE_MEMORY.rb → Modules/NO_MUX_PARALLEL_MEMORY/HardsploitAPI_NO_MUX_PARALLEL_MEMORY.rb} +26 -49
  21. data/lib/HardsploitAPI/Modules/NRF24L01/HardsploitAPI_NRF24L01.rb +306 -0
  22. data/lib/HardsploitAPI/Modules/SPI/HardsploitAPI_SPI.rb +340 -0
  23. data/lib/HardsploitAPI/Modules/SPI_SNIFFER/HardsploitAPI_SPI_SNIFFER.rb +83 -0
  24. data/lib/HardsploitAPI/Modules/SWD/HardsploitAPI_SWD.rb +367 -0
  25. data/lib/HardsploitAPI/Modules/SWD/HardsploitAPI_SWD_DEBUG.rb +89 -0
  26. data/lib/HardsploitAPI/Modules/SWD/HardsploitAPI_SWD_MEM_AP.rb +61 -0
  27. data/lib/HardsploitAPI/{SWD → Modules/SWD}/HardsploitAPI_SWD_STM32.rb +32 -15
  28. data/lib/HardsploitAPI/{HardsploitAPI_TEST_INTERACT.rb → Modules/TEST/HardsploitAPI_TEST_INTERACT.rb} +1 -1
  29. data/lib/HardsploitAPI/Modules/UART/HardsploitAPI_UART.rb +196 -0
  30. data/lib/Hardsploit_gui.rb +96 -0
  31. data/lib/class/Chip_editor.rb +186 -330
  32. data/lib/class/Chip_management.rb +496 -0
  33. data/lib/class/Command_editor.rb +130 -182
  34. data/lib/class/Command_table.rb +16 -22
  35. data/lib/class/Console.rb +0 -2
  36. data/lib/class/ErrorMsg.rb +312 -0
  37. data/lib/class/Export.rb +140 -0
  38. data/lib/class/Export_manager.rb +43 -43
  39. data/lib/class/Firmware.rb +52 -11
  40. data/lib/class/Generic_commands.rb +180 -190
  41. data/lib/class/Import.rb +193 -0
  42. data/lib/class/Progress_bar.rb +1 -0
  43. data/lib/class/Signal_mapper.rb +120 -0
  44. data/lib/class/Wire_helper.rb +132 -148
  45. data/lib/class/{I2C → i2c}/I2c_command.rb +16 -13
  46. data/lib/class/i2c/I2c_export.rb +95 -0
  47. data/lib/class/i2c/I2c_import.rb +117 -0
  48. data/lib/class/i2c/I2c_scanner.rb +114 -0
  49. data/lib/class/i2c/I2c_settings.rb +148 -0
  50. data/lib/class/parallel/Parallel_export.rb +118 -0
  51. data/lib/class/parallel/Parallel_import.rb +113 -0
  52. data/lib/class/parallel/Parallel_settings.rb +81 -0
  53. data/lib/class/spi/Spi_export.rb +108 -0
  54. data/lib/class/spi/Spi_import.rb +159 -0
  55. data/lib/class/spi/Spi_settings.rb +108 -0
  56. data/lib/class/spi/Spi_sniffer.rb +101 -0
  57. data/lib/class/swd/Swd.rb +125 -0
  58. data/lib/class/swd/Swd_scanner.rb +121 -0
  59. data/lib/class/swd/Swd_settings.rb +76 -0
  60. data/lib/class/uart/Uart_baudrate.rb +62 -0
  61. data/lib/class/uart/Uart_console.rb +115 -0
  62. data/lib/class/uart/Uart_settings.rb +102 -0
  63. data/lib/db/associations.rb +42 -29
  64. data/lib/db/database.rb +4 -0
  65. data/lib/db/development.sqlite3 +0 -0
  66. data/lib/db/migrate/004_create_manufacturers.rb +13 -0
  67. data/lib/db/migrate/005_create_packages.rb +13 -0
  68. data/lib/db/migrate/006_create_chip_types.rb +11 -0
  69. data/lib/db/migrate/007_create_buses.rb +11 -0
  70. data/lib/db/migrate/008_create_signals.rb +14 -0
  71. data/lib/db/migrate/009_create_chips.rb +25 -0
  72. data/lib/db/migrate/010_create_commands.rb +21 -0
  73. data/lib/db/migrate/011_create_bytes.rb +19 -0
  74. data/lib/db/migrate/012_create_i2c_settings.rb +21 -0
  75. data/lib/db/migrate/013_create_spi_settings.rb +26 -0
  76. data/lib/db/migrate/014_create_parallel_settings.rb +21 -0
  77. data/lib/db/migrate/015_create_pins.rb +19 -0
  78. data/lib/db/migrate/016_create_uses.rb +17 -0
  79. data/lib/db/migrate/017_create_swd_settings.rb +19 -0
  80. data/lib/db/migrate/018_create_uart_settings.rb +22 -0
  81. data/lib/db/schema.rb +157 -0
  82. data/lib/db/seeds.rb +161 -0
  83. data/lib/gui/gui_chip_editor.rb +23 -22
  84. data/lib/gui/gui_chip_management.rb +43 -38
  85. data/lib/gui/gui_command_editor.rb +2 -1
  86. data/lib/gui/gui_export.rb +132 -0
  87. data/lib/gui/gui_generic_commands.rb +69 -31
  88. data/lib/gui/gui_generic_export.rb +18 -2
  89. data/lib/gui/gui_generic_import.rb +18 -2
  90. data/lib/gui/gui_i2c_command.rb +2 -1
  91. data/lib/gui/gui_i2c_settings.rb +2 -2
  92. data/lib/gui/gui_import.rb +131 -0
  93. data/lib/gui/gui_parallel_settings.rb +2 -1
  94. data/lib/gui/gui_progress_bar.rb +2 -1
  95. data/lib/gui/gui_signal_mapper.rb +121 -0
  96. data/lib/gui/gui_signal_scanner.rb +146 -0
  97. data/lib/gui/gui_spi_settings.rb +6 -2
  98. data/lib/gui/gui_spi_sniffer.rb +112 -0
  99. data/lib/gui/gui_swd_settings.rb +166 -0
  100. data/lib/gui/gui_uart_baudrate.rb +114 -0
  101. data/lib/gui/gui_uart_console.rb +164 -0
  102. data/lib/gui/gui_uart_settings.rb +243 -0
  103. data/lib/gui_designer/gui_chip_editor.ui +9 -6
  104. data/lib/gui_designer/gui_chip_management.ui +79 -35
  105. data/lib/gui_designer/gui_command_editor.ui +3 -0
  106. data/lib/gui_designer/gui_export.ui +171 -0
  107. data/lib/gui_designer/gui_generic_commands.ui +274 -190
  108. data/lib/gui_designer/gui_generic_export.ui +24 -1
  109. data/lib/gui_designer/gui_generic_import.ui +25 -2
  110. data/lib/gui_designer/gui_i2c_command.ui +3 -0
  111. data/lib/gui_designer/gui_i2c_settings.ui +2 -2
  112. data/lib/gui_designer/gui_import.ui +168 -0
  113. data/lib/gui_designer/gui_parallel_settings.ui +4 -1
  114. data/lib/gui_designer/gui_progress_bar.ui +3 -0
  115. data/lib/gui_designer/gui_signal_mapper.ui +179 -0
  116. data/lib/gui_designer/gui_signal_scanner.ui +261 -0
  117. data/lib/gui_designer/gui_spi_settings.ui +15 -2
  118. data/lib/gui_designer/gui_spi_sniffer.ui +156 -0
  119. data/lib/gui_designer/gui_swd_settings.ui +189 -0
  120. data/lib/gui_designer/gui_uart_baudrate.ui +161 -0
  121. data/lib/gui_designer/gui_uart_console.ui +284 -0
  122. data/lib/gui_designer/gui_uart_settings.ui +280 -0
  123. data/lib/logs/error.log +63 -0
  124. data/lib/models/bus.rb +19 -0
  125. data/lib/models/byte.rb +29 -0
  126. data/lib/models/chip.rb +41 -0
  127. data/lib/models/chip_type.rb +14 -0
  128. data/lib/models/command.rb +20 -0
  129. data/lib/models/i2c_setting.rb +41 -0
  130. data/lib/models/manufacturer.rb +14 -0
  131. data/lib/models/package.rb +26 -0
  132. data/lib/models/parallel_setting.rb +37 -0
  133. data/lib/models/pin.rb +14 -0
  134. data/lib/models/signall.rb +20 -0
  135. data/lib/models/spi_setting.rb +67 -0
  136. data/lib/models/swd_setting.rb +25 -0
  137. data/lib/models/uart_setting.rb +52 -0
  138. data/lib/models/use.rb +6 -0
  139. data/lib/startHardsploit.rb +2 -2
  140. metadata +106 -41
  141. data/lib/Firmware/FPGA/PARALLEL/NO_MUX_PARALLEL_MEMORY/HARDSPLOIT_FIRMWARE_FPGA_NO_MUX_PARALLEL_MEMORY.rpd +0 -0
  142. data/lib/HardsploitAPI/HardsploitAPI.rb +0 -133
  143. data/lib/HardsploitAPI/HardsploitAPI_CONSTANT.rb +0 -145
  144. data/lib/HardsploitAPI/HardsploitAPI_ERROR.rb +0 -38
  145. data/lib/HardsploitAPI/HardsploitAPI_FIRMWARE.rb +0 -311
  146. data/lib/HardsploitAPI/HardsploitAPI_I2C.rb +0 -360
  147. data/lib/HardsploitAPI/HardsploitAPI_SPI.rb +0 -369
  148. data/lib/HardsploitAPI/HardsploitAPI_USB_COMMUNICATION.rb +0 -148
  149. data/lib/HardsploitAPI/LICENSE.txt +0 -674
  150. data/lib/HardsploitAPI/README.md +0 -22
  151. data/lib/HardsploitAPI/SWD/HardsploitAPI_SWD.rb +0 -249
  152. data/lib/HardsploitAPI/SWD/HardsploitAPI_SWD_DEBUG.rb +0 -102
  153. data/lib/HardsploitAPI/SWD/HardsploitAPI_SWD_MEM_AP.rb +0 -78
  154. data/lib/HardsploitAPI/TRADEMARK +0 -3
  155. data/lib/class/HardsploitGUI.rb +0 -463
  156. data/lib/class/I2C/I2c_export.rb +0 -118
  157. data/lib/class/I2C/I2c_import.rb +0 -79
  158. data/lib/class/I2C/I2c_settings.rb +0 -129
  159. data/lib/class/PARALLEL/Parallel_export.rb +0 -146
  160. data/lib/class/PARALLEL/Parallel_import.rb +0 -88
  161. data/lib/class/PARALLEL/Parallel_settings.rb +0 -102
  162. data/lib/class/SPI/Spi_export.rb +0 -138
  163. data/lib/class/SPI/Spi_import.rb +0 -113
  164. data/lib/class/SPI/Spi_settings.rb +0 -134
  165. data/lib/db/hs.db +0 -0
  166. data/lib/hardsploit.rb +0 -131
@@ -0,0 +1,20 @@
1
+ class Command < ActiveRecord::Base
2
+ # Validations
3
+ validates :name,
4
+ length: {
5
+ in: 2..25,
6
+ wrong_length: "Name needs to be between 2 and 25 characters"
7
+ },
8
+ presence: true
9
+ validates :description,
10
+ length: {
11
+ maximum: 140,
12
+ too_long: "%{count} characters maximum for the description"
13
+ }
14
+
15
+ # Associations
16
+ has_many :bytes,
17
+ dependent: :destroy
18
+ belongs_to :chip
19
+ belongs_to :bus
20
+ end
@@ -0,0 +1,41 @@
1
+ class I2cSetting < ActiveRecord::Base
2
+ # Validations
3
+ validates :address_w,
4
+ format: {
5
+ with: /[A-Fa-f0-9]{2}/,
6
+ message: "Write address only allow hexadecimal values"
7
+ }
8
+ validates :address_r,
9
+ format: {
10
+ with: /[A-Fa-f0-9]{2}/,
11
+ message: "Read address only allow hexadecimal values"
12
+ }
13
+ validates :frequency,
14
+ numericality: {
15
+ only_integer: true,
16
+ greater_than_or_equal_to: 100,
17
+ less_than_or_equal_to: 1000,
18
+ allow_nil: true
19
+ }
20
+ validates :write_page_latency,
21
+ numericality: {
22
+ only_integer: true,
23
+ greater_than_or_equal_to: 0,
24
+ allow_nil: true
25
+ }
26
+ validates :page_size,
27
+ numericality: {
28
+ only_integer: true,
29
+ greater_than_or_equal_to: 0,
30
+ allow_nil: true
31
+ }
32
+ validates :total_size,
33
+ numericality: {
34
+ only_integer: true,
35
+ greater_than_or_equal_to: 0,
36
+ allow_nil: true
37
+ }
38
+
39
+ # Associations
40
+ belongs_to :chip
41
+ end
@@ -0,0 +1,14 @@
1
+ class Manufacturer < ActiveRecord::Base
2
+ #Validations
3
+ validates :name,
4
+ length: {
5
+ in: 2..25,
6
+ message: "must be between 2 and 25 characters (manufacturer)"
7
+ },
8
+ presence: true,
9
+ uniqueness: true
10
+
11
+ # Associations
12
+ has_many :chips,
13
+ dependent: :destroy
14
+ end
@@ -0,0 +1,26 @@
1
+ class Package < ActiveRecord::Base
2
+ # Validations
3
+ validates :name,
4
+ length: {
5
+ in: 2..25,
6
+ message: "must be between 2 and 25 characters (package)"
7
+ },
8
+ presence: true
9
+ validates :pin_number,
10
+ numericality: {
11
+ only_integer: true,
12
+ greater_than_or_equal_to: 4
13
+ },
14
+ presence: true
15
+ validates :shape,
16
+ numericality: {
17
+ only_integer: true,
18
+ greater_than_or_equal_to: 0,
19
+ less_than_or_equal_to: 1
20
+ },
21
+ presence: true
22
+
23
+ # Associations
24
+ has_many :chips,
25
+ dependent: :destroy
26
+ end
@@ -0,0 +1,37 @@
1
+ class ParallelSetting < ActiveRecord::Base
2
+ # Validations
3
+ validates :total_size,
4
+ numericality: {
5
+ only_integer: true,
6
+ greater_than_or_equal_to: 0,
7
+ allow_nil: true
8
+ }
9
+ validates :page_size,
10
+ numericality: {
11
+ only_integer: true,
12
+ greater_than_or_equal_to: 0,
13
+ allow_nil: true
14
+ }
15
+ validates :word_size,
16
+ numericality: {
17
+ only_integer: true,
18
+ greater_than_or_equal_to: 0,
19
+ allow_nil: true
20
+ }
21
+ validates :read_latency,
22
+ numericality: {
23
+ only_integer: true,
24
+ greater_than_or_equal_to: 0,
25
+ less_than_or_equal_to: 1600,
26
+ allow_nil: true
27
+ }
28
+ validates :write_latency,
29
+ numericality: {
30
+ only_integer: true,
31
+ greater_than_or_equal_to: 0,
32
+ allow_nil: true
33
+ }
34
+
35
+ # Associations
36
+ belongs_to :chip
37
+ end
data/lib/models/pin.rb ADDED
@@ -0,0 +1,14 @@
1
+ class Pin < ActiveRecord::Base
2
+ # Validations
3
+ validates :number,
4
+ numericality: {
5
+ only_integer: true,
6
+ greater_than_or_equal_to: 1,
7
+ },
8
+ presence: true
9
+
10
+ # Associations
11
+ belongs_to :chip
12
+ belongs_to :signall,
13
+ foreign_key: "signal_id"
14
+ end
@@ -0,0 +1,20 @@
1
+ class Signall < ActiveRecord::Base
2
+ self.table_name = "signals"
3
+
4
+ # Validations
5
+ validates :name,
6
+ length: {
7
+ in: 1..10,
8
+ wrong_length: "Signal name needs to be between 1 and 10 characters"
9
+ },
10
+ presence: true,
11
+ uniqueness: true
12
+
13
+ # Associations
14
+ has_many :uses,
15
+ foreign_key: "signal_id"
16
+ has_many :buses,
17
+ through: :uses,
18
+ foreign_key: "signal_id"
19
+ has_many :pins
20
+ end
@@ -0,0 +1,67 @@
1
+ class SpiSetting < ActiveRecord::Base
2
+ # Validations
3
+ validates :mode,
4
+ numericality: {
5
+ only_integer: true,
6
+ greater_than_or_equal_to: 0,
7
+ less_than_or_equal_to: 3,
8
+ allow_nil: true
9
+ }
10
+ validates :write_page_latency,
11
+ numericality: {
12
+ only_integer: true,
13
+ greater_than_or_equal_to: 0,
14
+ allow_nil: true
15
+ }
16
+ validates :command_read,
17
+ numericality: {
18
+ only_integer: true,
19
+ greater_than_or_equal_to: 0,
20
+ allow_nil: true
21
+ }
22
+ validates :command_write,
23
+ numericality: {
24
+ only_integer: true,
25
+ greater_than_or_equal_to: 0,
26
+ allow_nil: true
27
+ }
28
+ validates :command_write_enable,
29
+ numericality: {
30
+ only_integer: true,
31
+ greater_than_or_equal_to: 0,
32
+ allow_nil: true
33
+ }
34
+ validates :command_erase,
35
+ numericality: {
36
+ only_integer: true,
37
+ greater_than_or_equal_to: 0,
38
+ allow_nil: true
39
+ }
40
+ validates :erase_time,
41
+ numericality: {
42
+ only_integer: true,
43
+ greater_than_or_equal_to: 0,
44
+ allow_nil: true
45
+ }
46
+ validates :page_size,
47
+ numericality: {
48
+ only_integer: true,
49
+ greater_than_or_equal_to: 0,
50
+ allow_nil: true
51
+ }
52
+ validates :total_size,
53
+ numericality: {
54
+ only_integer: true,
55
+ greater_than_or_equal_to: 0,
56
+ allow_nil: true
57
+ }
58
+ validates :is_flash,
59
+ numericality: {
60
+ only_integer: true,
61
+ greater_than_or_equal_to: 0,
62
+ less_than_or_equal_to: 1,
63
+ allow_nil: true
64
+ }
65
+ # Associations
66
+ belongs_to :chip
67
+ end
@@ -0,0 +1,25 @@
1
+ class SwdSetting < ActiveRecord::Base
2
+ # Validations
3
+ validates :cpu_id_address,
4
+ length: {
5
+ is: 8,
6
+ wrong_length: "CPU ID address length must be equal to 8"
7
+ }
8
+ validates :device_id_address,
9
+ length: {
10
+ is: 8,
11
+ wrong_length: "Device ID address length must be equal to 8"
12
+ }
13
+ validates :memory_size_address,
14
+ length: {
15
+ is: 8,
16
+ wrong_length: "Memory size address length must be equal to 8"
17
+ }
18
+ validates :memory_start_address,
19
+ length: {
20
+ is: 8,
21
+ wrong_length: "Memory start address length must be equal to 8"
22
+ }
23
+ # Associations
24
+ belongs_to :chip
25
+ end
@@ -0,0 +1,52 @@
1
+ class UartSetting < ActiveRecord::Base
2
+ # Validations
3
+ validates :baud_rate,
4
+ numericality: {
5
+ only_integer: true,
6
+ allow_nil: true
7
+ }
8
+ validates :idle_line,
9
+ numericality: {
10
+ only_integer: true,
11
+ less_than_or_equal_to: 8,
12
+ message: "Idle line length must be equal to 8",
13
+ allow_nil: true
14
+ }
15
+ validates :parity_bit,
16
+ numericality: {
17
+ only_integer: true,
18
+ less_than_or_equal_to: 8,
19
+ message: "Parity bit length must be equal to 8",
20
+ allow_nil: true
21
+ }
22
+ validates :parity_type,
23
+ numericality: {
24
+ only_integer: true,
25
+ less_than_or_equal_to: 8,
26
+ message: "Parity type length must be equal to 8",
27
+ allow_nil: true
28
+ }
29
+ validates :stop_bits_nbr,
30
+ numericality: {
31
+ only_integer: true,
32
+ less_than_or_equal_to: 8,
33
+ message: "Stop bits number length must be equal to 8",
34
+ allow_nil: true
35
+ }
36
+ validates :word_size,
37
+ numericality: {
38
+ only_integer: true,
39
+ less_than_or_equal_to: 8,
40
+ message: "Word size length must be equal to 8",
41
+ allow_nil: true
42
+ }
43
+ validates :return_type,
44
+ numericality: {
45
+ only_integer: true,
46
+ less_than_or_equal_to: 2,
47
+ message: "Word size CR / LF type",
48
+ allow_nil: true
49
+ }
50
+ # Associations
51
+ belongs_to :chip
52
+ end
data/lib/models/use.rb ADDED
@@ -0,0 +1,6 @@
1
+ class Use < ActiveRecord::Base
2
+ # Associations
3
+ belongs_to :signall,
4
+ foreign_key: "signal_id"
5
+ belongs_to :bus
6
+ end
@@ -6,5 +6,5 @@
6
6
  #===================================================
7
7
 
8
8
  #!/usr/bin/ruby
9
- require_relative 'hardsploit.rb'
10
- Hardsploit_GUI.new
9
+ require_relative 'Hardsploit_gui.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.2'
4
+ version: '2.3'
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-04-24 00:00:00.000000000 Z
11
+ date: 2016-08-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sqlite3
@@ -130,92 +130,157 @@ files:
130
130
  - README.md
131
131
  - Rakefile
132
132
  - bin/hardsploit_gui
133
- - lib/Firmware/FPGA/I2C/I2C_INTERACT/HARDSPLOIT_FIRMWARE_FPGA_I2C_INTERACT.rpd
134
- - lib/Firmware/FPGA/PARALLEL/NO_MUX_PARALLEL_MEMORY/HARDSPLOIT_FIRMWARE_FPGA_NO_MUX_PARALLEL_MEMORY.rpd
135
- - lib/Firmware/FPGA/SPI/SPI_INTERACT/HARDSPLOIT_FIRMWARE_FPGA_SPI_INTERACT.rpd
136
- - lib/Firmware/FPGA/SWD/SWD_INTERACT/HARDSPLOIT_FIRMWARE_FPGA_SWD_INTERACT.rpd
137
- - lib/Firmware/FPGA/TEST/TEST_INTERACT/HARDSPLOIT_FIRMWARE_FPGA_TEST_INTERACT.rpd
138
- - lib/Firmware/FPGA/VersionFPGA.rb
139
- - lib/Firmware/UC/HARDSPLOIT_FIRMWARE_UC.bin
140
- - lib/Firmware/UC/VersionUC.rb
141
- - lib/HardsploitAPI/HardsploitAPI.rb
142
- - lib/HardsploitAPI/HardsploitAPI_CONSTANT.rb
143
- - lib/HardsploitAPI/HardsploitAPI_ERROR.rb
144
- - lib/HardsploitAPI/HardsploitAPI_FIRMWARE.rb
145
- - lib/HardsploitAPI/HardsploitAPI_I2C.rb
146
- - lib/HardsploitAPI/HardsploitAPI_NO_MUX_PARALLELE_MEMORY.rb
147
- - lib/HardsploitAPI/HardsploitAPI_PROGRESS.rb
148
- - lib/HardsploitAPI/HardsploitAPI_SPI.rb
149
- - lib/HardsploitAPI/HardsploitAPI_TEST_INTERACT.rb
150
- - lib/HardsploitAPI/HardsploitAPI_USB_COMMUNICATION.rb
151
- - lib/HardsploitAPI/LICENSE.txt
152
- - lib/HardsploitAPI/README.md
153
- - lib/HardsploitAPI/SWD/HardsploitAPI_SWD.rb
154
- - lib/HardsploitAPI/SWD/HardsploitAPI_SWD_DEBUG.rb
155
- - lib/HardsploitAPI/SWD/HardsploitAPI_SWD_MEM_AP.rb
156
- - lib/HardsploitAPI/SWD/HardsploitAPI_SWD_STM32.rb
157
- - lib/HardsploitAPI/TRADEMARK
133
+ - lib/Firmwares/FPGA/I2C/I2C_INTERACT/HARDSPLOIT_FIRMWARE_FPGA_I2C_INTERACT.rpd
134
+ - lib/Firmwares/FPGA/PARALLEL/NO_MUX_PARALLEL_MEMORY/HARDSPLOIT_FIRMWARE_FPGA_NO_MUX_PARALLEL_MEMORY.rpd
135
+ - lib/Firmwares/FPGA/SPI/SPI_INTERACT/HARDSPLOIT_FIRMWARE_FPGA_SPI_INTERACT.rpd
136
+ - lib/Firmwares/FPGA/SPI/SPI_SNIFFER/HARDSPLOIT_FIRMWARE_FPGA_SPI_SNIFFER.rpd
137
+ - lib/Firmwares/FPGA/SWD/SWD_INTERACT/HARDSPLOIT_FIRMWARE_FPGA_SWD_INTERACT.rpd
138
+ - lib/Firmwares/FPGA/TEST/TEST_INTERACT/HARDSPLOIT_FIRMWARE_FPGA_TEST_INTERACT.rpd
139
+ - lib/Firmwares/FPGA/UART/UART_INTERACT/HARDSPLOIT_FIRMWARE_FPGA_UART_INTERACT.rpd
140
+ - lib/Firmwares/FPGA/VersionFPGA.rb
141
+ - lib/Firmwares/UC/HARDSPLOIT_FIRMWARE_UC.bin
142
+ - lib/Firmwares/UC/VersionUC.rb
143
+ - lib/HardsploitAPI/Core/HardsploitAPI.rb
144
+ - lib/HardsploitAPI/Core/HardsploitAPI_CONSTANT.rb
145
+ - lib/HardsploitAPI/Core/HardsploitAPI_ERROR.rb
146
+ - lib/HardsploitAPI/Core/HardsploitAPI_FIRMWARE.rb
147
+ - lib/HardsploitAPI/Core/HardsploitAPI_PROGRESS.rb
148
+ - lib/HardsploitAPI/Core/HardsploitAPI_USB_COMMUNICATION.rb
149
+ - lib/HardsploitAPI/Modules/I2C/HardsploitAPI_I2C.rb
150
+ - lib/HardsploitAPI/Modules/NO_MUX_PARALLEL_MEMORY/HardsploitAPI_NO_MUX_PARALLEL_MEMORY.rb
151
+ - lib/HardsploitAPI/Modules/NRF24L01/HardsploitAPI_NRF24L01.rb
152
+ - lib/HardsploitAPI/Modules/SPI/HardsploitAPI_SPI.rb
153
+ - lib/HardsploitAPI/Modules/SPI_SNIFFER/HardsploitAPI_SPI_SNIFFER.rb
154
+ - lib/HardsploitAPI/Modules/SWD/HardsploitAPI_SWD.rb
155
+ - lib/HardsploitAPI/Modules/SWD/HardsploitAPI_SWD_DEBUG.rb
156
+ - lib/HardsploitAPI/Modules/SWD/HardsploitAPI_SWD_MEM_AP.rb
157
+ - lib/HardsploitAPI/Modules/SWD/HardsploitAPI_SWD_STM32.rb
158
+ - lib/HardsploitAPI/Modules/TEST/HardsploitAPI_TEST_INTERACT.rb
159
+ - lib/HardsploitAPI/Modules/UART/HardsploitAPI_UART.rb
160
+ - lib/Hardsploit_gui.rb
158
161
  - lib/LICENSE.txt
159
162
  - lib/README.md
160
163
  - lib/TRADEMARK
161
164
  - lib/class/Chip_editor.rb
165
+ - lib/class/Chip_management.rb
162
166
  - lib/class/Command_editor.rb
163
167
  - lib/class/Command_table.rb
164
168
  - lib/class/Console.rb
169
+ - lib/class/ErrorMsg.rb
170
+ - lib/class/Export.rb
165
171
  - lib/class/Export_manager.rb
166
172
  - lib/class/Firmware.rb
167
173
  - lib/class/Generic_commands.rb
168
- - lib/class/HardsploitGUI.rb
169
- - lib/class/I2C/I2c_command.rb
170
- - lib/class/I2C/I2c_export.rb
171
- - lib/class/I2C/I2c_import.rb
172
- - lib/class/I2C/I2c_settings.rb
173
- - lib/class/PARALLEL/Parallel_export.rb
174
- - lib/class/PARALLEL/Parallel_import.rb
175
- - lib/class/PARALLEL/Parallel_settings.rb
174
+ - lib/class/Import.rb
176
175
  - lib/class/Progress_bar.rb
177
- - lib/class/SPI/Spi_export.rb
178
- - lib/class/SPI/Spi_import.rb
179
- - lib/class/SPI/Spi_settings.rb
176
+ - lib/class/Signal_mapper.rb
180
177
  - lib/class/Wire_helper.rb
178
+ - lib/class/i2c/I2c_command.rb
179
+ - lib/class/i2c/I2c_export.rb
180
+ - lib/class/i2c/I2c_import.rb
181
+ - lib/class/i2c/I2c_scanner.rb
182
+ - lib/class/i2c/I2c_settings.rb
183
+ - lib/class/parallel/Parallel_export.rb
184
+ - lib/class/parallel/Parallel_import.rb
185
+ - lib/class/parallel/Parallel_settings.rb
186
+ - lib/class/spi/Spi_export.rb
187
+ - lib/class/spi/Spi_import.rb
188
+ - lib/class/spi/Spi_settings.rb
189
+ - lib/class/spi/Spi_sniffer.rb
190
+ - lib/class/swd/Swd.rb
191
+ - lib/class/swd/Swd_scanner.rb
192
+ - lib/class/swd/Swd_settings.rb
193
+ - lib/class/uart/Uart_baudrate.rb
194
+ - lib/class/uart/Uart_console.rb
195
+ - lib/class/uart/Uart_settings.rb
181
196
  - lib/db/associations.rb
182
- - lib/db/hs.db
197
+ - lib/db/database.rb
198
+ - lib/db/development.sqlite3
199
+ - lib/db/migrate/004_create_manufacturers.rb
200
+ - lib/db/migrate/005_create_packages.rb
201
+ - lib/db/migrate/006_create_chip_types.rb
202
+ - lib/db/migrate/007_create_buses.rb
203
+ - lib/db/migrate/008_create_signals.rb
204
+ - lib/db/migrate/009_create_chips.rb
205
+ - lib/db/migrate/010_create_commands.rb
206
+ - lib/db/migrate/011_create_bytes.rb
207
+ - lib/db/migrate/012_create_i2c_settings.rb
208
+ - lib/db/migrate/013_create_spi_settings.rb
209
+ - lib/db/migrate/014_create_parallel_settings.rb
210
+ - lib/db/migrate/015_create_pins.rb
211
+ - lib/db/migrate/016_create_uses.rb
212
+ - lib/db/migrate/017_create_swd_settings.rb
213
+ - lib/db/migrate/018_create_uart_settings.rb
214
+ - lib/db/schema.rb
215
+ - lib/db/seeds.rb
183
216
  - lib/gui/gui_chip_editor.rb
184
217
  - lib/gui/gui_chip_management.rb
185
218
  - lib/gui/gui_command_editor.rb
219
+ - lib/gui/gui_export.rb
186
220
  - lib/gui/gui_export_manager.rb
187
221
  - lib/gui/gui_generic_commands.rb
188
222
  - lib/gui/gui_generic_export.rb
189
223
  - lib/gui/gui_generic_import.rb
190
224
  - lib/gui/gui_i2c_command.rb
191
225
  - lib/gui/gui_i2c_settings.rb
226
+ - lib/gui/gui_import.rb
192
227
  - lib/gui/gui_parallel_settings.rb
193
228
  - lib/gui/gui_progress_bar.rb
229
+ - lib/gui/gui_signal_mapper.rb
230
+ - lib/gui/gui_signal_scanner.rb
194
231
  - lib/gui/gui_spi_import.rb
195
232
  - lib/gui/gui_spi_settings.rb
233
+ - lib/gui/gui_spi_sniffer.rb
234
+ - lib/gui/gui_swd_settings.rb
235
+ - lib/gui/gui_uart_baudrate.rb
236
+ - lib/gui/gui_uart_console.rb
237
+ - lib/gui/gui_uart_settings.rb
196
238
  - lib/gui/gui_wire_helper.rb
197
239
  - lib/gui_designer/gui_chip_editor.ui
198
240
  - lib/gui_designer/gui_chip_management.ui
199
241
  - lib/gui_designer/gui_command_editor.ui
242
+ - lib/gui_designer/gui_export.ui
200
243
  - lib/gui_designer/gui_export_manager.ui
201
244
  - lib/gui_designer/gui_generic_commands.ui
202
245
  - lib/gui_designer/gui_generic_export.ui
203
246
  - lib/gui_designer/gui_generic_import.ui
204
247
  - lib/gui_designer/gui_i2c_command.ui
205
248
  - lib/gui_designer/gui_i2c_settings.ui
249
+ - lib/gui_designer/gui_import.ui
206
250
  - lib/gui_designer/gui_parallel_settings.ui
207
251
  - lib/gui_designer/gui_progress_bar.ui
252
+ - lib/gui_designer/gui_signal_mapper.ui
253
+ - lib/gui_designer/gui_signal_scanner.ui
208
254
  - lib/gui_designer/gui_spi_settings.ui
255
+ - lib/gui_designer/gui_spi_sniffer.ui
256
+ - lib/gui_designer/gui_swd_settings.ui
257
+ - lib/gui_designer/gui_uart_baudrate.ui
258
+ - lib/gui_designer/gui_uart_console.ui
259
+ - lib/gui_designer/gui_uart_settings.ui
209
260
  - lib/gui_designer/gui_wire_helper.ui
210
- - lib/hardsploit.rb
211
261
  - lib/images/search.png
212
262
  - lib/logs/error.log
263
+ - lib/models/bus.rb
264
+ - lib/models/byte.rb
265
+ - lib/models/chip.rb
266
+ - lib/models/chip_type.rb
267
+ - lib/models/command.rb
268
+ - lib/models/i2c_setting.rb
269
+ - lib/models/manufacturer.rb
270
+ - lib/models/package.rb
271
+ - lib/models/parallel_setting.rb
272
+ - lib/models/pin.rb
273
+ - lib/models/signall.rb
274
+ - lib/models/spi_setting.rb
275
+ - lib/models/swd_setting.rb
276
+ - lib/models/uart_setting.rb
277
+ - lib/models/use.rb
213
278
  - lib/startHardsploit.rb
214
279
  homepage: http://www.hardsploit.io
215
280
  licenses: []
216
281
  metadata: {}
217
282
  post_install_message: Thanks for installing! Please contact us at support@hardsploit.io
218
- for any questions or training
283
+ for any questions or training sessions
219
284
  rdoc_options: []
220
285
  require_paths:
221
286
  - lib