volatility3.framework.objects.utility module

array_of_pointers(array, count, subtype, context)[source]

Takes an object, and recasts it as an array of pointers to subtype.

Return type:

ObjectInterface

array_to_string(array, count=None, errors='replace')[source]

Takes a volatility Array of characters and returns a string.

Return type:

ObjectInterface

bswap_32(value)[source]
Return type:

int

bswap_64(value)[source]
Return type:

int

pointer_to_string(pointer, count, errors='replace')[source]

Takes a volatility Pointer to characters and returns a string.

rol(value, count, max_bits=64)[source]

A rotate-left instruction in Python

Return type:

int