MCPcopy Create free account
hub / github.com/echQoQ/RustSL / _create_bin_group

Method _create_bin_group

gui/main_window.py:73–84  ·  view source on GitHub ↗
(self, folder_icon)

Source from the content-addressed store, hash-verified

71 self._on_load_payload_changed()
72
73 def _create_bin_group(self, folder_icon):
74 bin_group = QGroupBox('Shellcode')
75 bin_layout = QHBoxLayout()
76 self.bin_box = BinComboBox()
77 bin_btn = QPushButton(folder_icon, '')
78 bin_btn.setToolTip('Select shellcode file')
79 bin_btn.setFixedWidth(32)
80 bin_btn.clicked.connect(lambda: self.bin_box.choose_file(self))
81 bin_layout.addWidget(self.bin_box)
82 bin_layout.addWidget(bin_btn)
83 bin_group.setLayout(bin_layout)
84 return bin_group
85
86 def _create_bin_and_payload_group(self, folder_icon):
87 widget = QWidget()

Callers

nothing calls this directly

Calls 2

BinComboBoxClass · 0.85
choose_fileMethod · 0.45

Tested by

no test coverage detected