Beispiel #1
0
    def report(self):
        """
        Reports mask frequency
        """
        table = FrequencyTable("Hashcat Mask")

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

        return table
Beispiel #2
0
    def report(self):
        """
        Reports occurences of length
        """
        table = FrequencyTable("Length", sortby="Length")

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

        return table
Beispiel #3
0
    def report(self):
        table = FrequencyTable("Charset", end=len(self.charset_counts))

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

        return table
Beispiel #4
0
    def report(self):
        table = FrequencyTable("Charset", end=len(self.charset_counts))

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

        return table