katana.units.raw.base32 — Decode Base32

Decode Base32 encoded text

This is done by the Python3 base64 module which has the b32decode function.

class katana.units.raw.base32.Unit(*args, **kwargs)

Bases: katana.unit.Unit

GROUPS = ['raw', 'decode', 'base32']

These are “tags” for a unit. Considering it is a Raw unit, “raw” is included, as well as the tag “decode”, and the unit name “base32”.

PRIORITY = 60

Priority works with 0 being the highest priority, and 100 being the lowest priority. 50 is the default priorty. This unit has a low priority.

evaluate(case)

Evaluate the target. Run base64.b32ecode on the target and recurse on any new found information.

Parameters:case – A case returned by enumerate. For this unit, the enumerate function is not used.
Returns:None. This function should not return any data.