diff options
| author | Jordan Wiens <jordan@psifertex.com> | 2024-04-30 12:39:31 -0400 |
|---|---|---|
| committer | Jordan Wiens <jordan@psifertex.com> | 2024-04-30 12:39:31 -0400 |
| commit | 62ce7de2bc288bb2716177b3fa86470f1e19d383 (patch) | |
| tree | 7324fc1f1aaaa38267dd23e91ce9ec0a22b27e55 /python | |
| parent | 6b3165fba7c05a8b200215385ec4478609eb38d3 (diff) | |
link up methods and properties in base address API docs
Diffstat (limited to 'python')
| -rw-r--r-- | python/basedetection.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/python/basedetection.py b/python/basedetection.py index b682705b..655f017b 100644 --- a/python/basedetection.py +++ b/python/basedetection.py @@ -119,7 +119,7 @@ class BaseAddressDetection: ``last_tested_base_address`` returns the last candidate base address that was tested .. note:: This is useful for situations where the user aborts the analysis and wants to restart from the last \ - tested base address by setting the ``low_boundary`` parameter in ``BaseAddressDetection.detect_base_address`` + tested base address by setting the ``low_boundary`` parameter in :py:func:`BaseAddressDetection.detect_base_address` :return: last candidate base address tested :rtype: int @@ -133,9 +133,9 @@ class BaseAddressDetection: ``preferred_base_address`` returns the candidate base address which contains the most amount of pointers that align with discovered points-of-interest in the binary - .. note:: ``BaseAddressDetection.confidence`` reports a confidence level that the preferred base is correct + .. note:: :py:attr:`BaseAddressDetection.confidence` reports a confidence level that the preferred base is correct - .. note:: ``BaseAddressDetection.scores`` returns a list of the top 10 candidate base addresses and their \ + .. note:: :py:attr:`BaseAddressDetection.scores` returns a list of the top 10 candidate base addresses and their \ scores and can be used to discover other potential candidates :return: preferred candidate base address |
