Path: blob/master/tutorials-and-examples/feature-tutorials/Base64Unpack.ipynb
3253 views
Title: msticpy - Base64 Decoder
Description:
This module allows you to extract base64 encoded content from a string or columns of a Pandas DataFrame. The library returns the following information:
decoded string (if decodable to utf-8 or utf-16)
hashes of the decoded segment (MD5, SHA1, SHA256)
string of printable byte values (e.g. for submission to a disassembler)
the detected decoded file type (limited)
If the results of the decoding contain further encoded strings these will be decoded recursively. If the encoded string appears to be a zip, gzip or tar archive, the contents will be decompressed after decoding. In the case of zip and tar, the contents of the archive will also be checked for base64 encoded content and decoded/decompressed if possible.
You must have msticpy installed to run this notebook: