コード例 #1
0
ファイル: mask.py プロジェクト: Baphomet1105/Oopa
    def report(self):
        """
        Reports mask frequency
        """
        table = FrequencyTable("Hashcat Mask")

        table.add_counts(self.word_count, self.mask_counts)

        return table
コード例 #2
0
ファイル: length.py プロジェクト: p01ice/Oopa
    def report(self):
        """
        Reports occurences of length
        """
        table = FrequencyTable("Length", sortby="Length")

        table.add_counts(self.word_count, self.length_counts)

        return table
コード例 #3
0
ファイル: charset.py プロジェクト: p01ice/Oopa
    def report(self):
        table = FrequencyTable("Charset", end=len(self.charset_counts))

        table.add_counts(self.word_count, self.charset_counts)

        return table
コード例 #4
0
ファイル: charset.py プロジェクト: Baphomet1105/Oopa
    def report(self):
        table = FrequencyTable("Charset", end=len(self.charset_counts))

        table.add_counts(self.word_count, self.charset_counts)

        return table