Symbols

Symbol

class revenge.symbols.Symbol(process, name=None, address=None)[source]

Bases: object

Represents a binary symbol.

Parameters
  • process – Process object

  • name (str, optional) – Name of this symbol

  • address (int, optional) – Address of this symbol

property address

Address of this Symbol.

Type

int

property memory

Convenience property to grab a memory object for this symbol.

Type

revenge.memory.MemoryBytes

property name

Name of this symbol.

Type

str

startswith(x)[source]

Passthrough to check if the symbol name starts with some string.

Returns

bool