MCPcopy Create free account
hub / github.com/qilingframework/qiling / read_string

Method read_string

qiling/debugger/qdb/context.py:122–126  ·  view source on GitHub ↗

Read string from memory.

(self, address: int)

Source from the content-addressed store, hash-verified

120 return value
121
122 def read_string(self, address: int) -> Optional[str]:
123 """Read string from memory.
124 """
125
126 return self.ql.mem.string(address)
127
128 def try_read_string(self, address: int) -> Optional[str]:
129 """Attempt to read a string from memory.

Callers 1

try_read_stringMethod · 0.95

Calls 1

stringMethod · 0.80

Tested by

no test coverage detected