summaryrefslogtreecommitdiff
path: root/python/basedetection.py
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/basedetection.py
parent8448712128513874239391795347706281282481 (diff)
Fixed typing bug in base detection API
Also updated example script to use full analysis by default
Diffstat (limited to 'python/basedetection.py')
-rw-r--r--python/basedetection.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/basedetection.py b/python/basedetection.py
index 655f017b..f3cc3eb9 100644
--- a/python/basedetection.py
+++ b/python/basedetection.py
@@ -161,7 +161,7 @@ class BaseAddressDetection:
def detect_base_address(
self,
arch: Optional[str] = "",
- analysis: Optional[str] = Literal["basic", "controlFlow", "full"],
+ analysis: Optional[Literal["basic", "controlFlow", "full"]] = "full",
min_strlen: Optional[int] = 10,
alignment: Optional[int] = 1024,
low_boundary: Optional[int] = 0,