Esempio n. 1
0
    def __init__(self, parent = None):
        '''
        Constructor
        '''
        CustomWidget.__init__(self)
        self.name = "Import / Export"
        self.parent = parent
        self.config = self.parent.config
        self.icon = QIcon(self.iconp + 'import_export.png')

        # Functionality associated with this widget
        self.ie = parent.import_export

        self._createGui()
Esempio n. 2
0
    def __init__(self, parent=None):
        '''
        Constructor
        '''
        CustomWidget.__init__(self)
        self.name = "Import / Export"
        self.parent = parent
        self.config = self.parent.config
        self.icon = QIcon(self.iconp + 'import_export.png')

        # Functionality associated with this widget
        self.ie = parent.import_export

        self._createGui()
Esempio n. 3
0
    def __init__(self, parent = None):
        """
        Constructor
        """
        CustomWidget.__init__(self)
        self.name = "Bug Hunting"
        self.parent = parent
        self.config = self.parent.config
        self.icon = QIcon(self.iconp + 'vuln_detection.png')

        # Functionality associated with this widget
        self.vd = parent.vuln_detection
        self.ii = self.vd.ii

        self._createGui()
Esempio n. 4
0
    def __init__(self, parent=None):
        """
        Constructor
        """
        CustomWidget.__init__(self)
        self.name = "Firmware"
        self.parent = parent
        self.config = self.parent.config
        self.icon = QIcon(self.iconp + 'vuln_detection.png')
        self.img_data = None

        # Functionality associated with this widget
        self.binary_entropy = BE.BinaryEntropy()

        self._createGui()
Esempio n. 5
0
    def __init__(self, parent = None):
        """
        Constructor
        """
        CustomWidget.__init__(self)
        self.name = "Bug Hunting"
        self.parent = parent
        self.config = self.parent.config
        self.icon = QIcon(self.iconp + 'vuln_detection.png')

        # Functionality associated with this widget
        self.vd = parent.vuln_detection
        self.ii = self.vd.ii

        self._createGui()
Esempio n. 6
0
    def __init__(self, parent = None):
        """
        Constructor
        """
        CustomWidget.__init__(self)
        self.name = "Firmware"
        self.parent = parent
        self.config = self.parent.config
        self.icon = QIcon(self.iconp + 'vuln_detection.png')
        self.img_data = None

        # Functionality associated with this widget
        self.binary_entropy = BE.BinaryEntropy()

        self._createGui()