diff options
Diffstat (limited to 'miasm/analysis')
| -rw-r--r-- | miasm/analysis/debugging.py | 2 | ||||
| -rw-r--r-- | miasm/analysis/dse.py | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/miasm/analysis/debugging.py b/miasm/analysis/debugging.py index f114d901..d5f59d49 100644 --- a/miasm/analysis/debugging.py +++ b/miasm/analysis/debugging.py @@ -377,7 +377,7 @@ class DebugCmd(cmd.Cmd, object): args = arg.split(" ") if args[-1].lower() not in ["on", "off"]: - self.print_warning("/!\ %s not in 'on' / 'off'" % args[-1]) + self.print_warning("[!] %s not in 'on' / 'off'" % args[-1]) return mode = args[-1].lower() == "on" d = {} diff --git a/miasm/analysis/dse.py b/miasm/analysis/dse.py index 5e6c4e8d..11674734 100644 --- a/miasm/analysis/dse.py +++ b/miasm/analysis/dse.py @@ -234,7 +234,7 @@ class DSEEngine(object): def handle(self, cur_addr): r"""Handle destination @cur_addr: Expr of the next address in concrete execution - /!\ cur_addr may be a loc_key + [!] cur_addr may be a loc_key In this method, self.symb is in the "just before branching" state """ @@ -475,7 +475,7 @@ class DSEEngine(object): @cpu: (optional) if set, update registers' value @mem: (optional) if set, update memory value - /!\ all current states will be loss. + [!] all current states will be loss. This function is usually called when states are no more synchronized (at the beginning, returning from an unstubbed syscall, ...) """ |