summaryrefslogtreecommitdiff
path: root/python/examples
diff options
context:
space:
mode:
authorBrandon Miller <brandon@vector35.com>2024-05-03 08:26:35 -0400
committerBrandon Miller <brandon@vector35.com>2024-05-03 08:26:35 -0400
commit92a468d7566de31e6867a77c5cf1c64e33792109 (patch)
tree7c5183df4b4871e2200c1b9ec83e344a610bab05 /python/examples
parent8448712128513874239391795347706281282481 (diff)
Fixed typing bug in base detection API
Also updated example script to use full analysis by default
Diffstat (limited to 'python/examples')
-rw-r--r--python/examples/raw_binary_base_detection.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/examples/raw_binary_base_detection.py b/python/examples/raw_binary_base_detection.py
index 76268fbe..b584903c 100644
--- a/python/examples/raw_binary_base_detection.py
+++ b/python/examples/raw_binary_base_detection.py
@@ -47,7 +47,7 @@ def _parse_args() -> argparse.Namespace:
parser.add_argument("path", help="path to the position-dependent raw firmware binary or directory")
parser.add_argument("--debug", action="store_true", help="enable debug logging")
parser.add_argument("--reasons", action="store_true", help="show reasons for base address selection")
- parser.add_argument("--analysis", type=str, help="analysis level", default="basic")
+ parser.add_argument("--analysis", type=str, help="analysis level", default="full")
parser.add_argument("--arch", type=str, default="", help="architecture of the binary")
return parser.parse_args()