(addr)
| 70 | |
| 71 | |
| 72 | def getMemoryString(addr): |
| 73 | s = str() |
| 74 | index = 0 |
| 75 | |
| 76 | while Triton.getConcreteMemoryValue(addr+index): |
| 77 | c = chr(Triton.getConcreteMemoryValue(addr+index)) |
| 78 | if c not in string.printable: c = "" |
| 79 | s += c |
| 80 | index += 1 |
| 81 | |
| 82 | return s |
| 83 | |
| 84 | |
| 85 | def getFormatString(addr): |
no test coverage detected